/* ==========================================================================
   Dubai Damas - WooCommerce Luxury Overrides
   ========================================================================== */

/* Notices */
.woocommerce-notice,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: #18181c !important;
    border: 1px solid rgba(201, 162, 77, 0.4) !important;
    border-left: 4px solid #c9a24d !important;
    color: #f3f3f3 !important;
    border-radius: 8px !important;
    padding: 14px 20px !important;
    margin-bottom: 25px !important;
    font-size: 0.92rem !important;
}
.woocommerce-error {
    border-left-color: #ef4444 !important;
}
.woocommerce-message a.button,
.woocommerce-info a.button {
    background: #c9a24d !important;
    color: #0c0c0e !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    padding: 6px 14px !important;
    text-transform: uppercase !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.05em !important;
}

/* Shop Layout Container */
.dubai-damas-wc-site-content {
    min-height: 70vh;
}

/* Product Card Quick Links & Buttons */
.product-card .add_to_cart_button,
.product-card .ajax_add_to_cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #c9a24d;
    color: #0c0c0e;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
    margin-top: 10px;
}
.product-card .add_to_cart_button:hover {
    background: #e6ca65;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(201, 162, 77, 0.3);
}

/* Cart Drawer WooCommerce Mini-cart */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -460px;
    width: 100%;
    max-width: 440px;
    height: 100vh;
    background: #111114;
    border-left: 1px solid rgba(201, 162, 77, 0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.7);
}
.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-drawer-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-drawer-close {
    background: transparent;
    border: none;
    color: #a0a0a8;
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.2s ease;
}
.cart-drawer-close:hover {
    color: #c9a24d;
}

.cart-drawer-shipping-bar {
    background: #17171c;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cart-drawer-shipping-text {
    font-size: 0.8rem;
    color: #d1d1d8;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}
.cart-drawer-shipping-text strong {
    color: #c9a24d;
}
.shipping-progress-track {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    overflow: hidden;
}
.shipping-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c9a24d, #f5d77f);
    transition: width 0.3s ease;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}
.cart-drawer-mini-cart-content ul.woocommerce-mini-cart {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cart-drawer-mini-cart-content li.woocommerce-mini-cart-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}
.cart-drawer-mini-cart-content li.woocommerce-mini-cart-item img {
    width: 60px;
    height: 75px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.cart-drawer-mini-cart-content .mini-cart-item-details {
    flex: 1;
}
.cart-drawer-mini-cart-content .mini-cart-item-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    line-height: 1.3;
    margin-bottom: 4px;
}
.cart-drawer-mini-cart-content .mini-cart-item-price {
    color: #c9a24d;
    font-size: 0.88rem;
    font-weight: 600;
}
.cart-drawer-mini-cart-content a.remove_from_cart_button {
    color: #71717a !important;
    transition: color 0.2s ease;
    font-size: 1.1rem;
    background: none !important;
}
.cart-drawer-mini-cart-content a.remove_from_cart_button:hover {
    color: #ef4444 !important;
}

.cart-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #141418;
}
.cart-drawer-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #e4e4e7;
}
.cart-drawer-subtotal-row strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #c9a24d;
}
.cart-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cart-drawer-actions .button.checkout {
    background: #c9a24d;
    color: #0c0c0e;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    padding: 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}
.cart-drawer-actions .button.checkout:hover {
    background: #e6ca65;
}
.cart-drawer-actions .button.view-cart {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #d1d1d8;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    display: block;
}
.cart-drawer-actions .button.view-cart:hover {
    border-color: #c9a24d;
    color: #c9a24d;
}

/* Variable Products Pills */
.dubai-damas-size-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 12px 0 20px;
}
.dubai-damas-size-pill {
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #18181c;
    color: #e4e4e7;
    border-radius: 4px;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}
.dubai-damas-size-pill:hover {
    border-color: #c9a24d;
    color: #fff;
}
.dubai-damas-size-pill.active {
    border-color: #c9a24d;
    background: rgba(201, 162, 77, 0.15);
    color: #c9a24d;
    font-weight: 600;
}

/* ==========================================================================
   SCENT FINDER LUXURY MODAL STYLING
   ========================================================================== */

.scent-finder-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 6, 8, 0.85);
    backdrop-filter: blur(8px);
    z-index: 99990;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}
.scent-finder-overlay.active {
    opacity: 1;
    visibility: visible;
}

.scent-finder-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%) scale(0.96);
    width: 92%;
    max-width: 820px;
    max-height: 90vh;
    background: #111115;
    border: 1px solid rgba(201, 162, 77, 0.3);
    border-radius: 12px;
    z-index: 99995;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(201, 162, 77, 0.15);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}
.scent-finder-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.scent-finder-header {
    padding: 24px 30px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.scent-finder-gold-kicker {
    font-size: 0.72rem;
    color: #c9a24d;
    letter-spacing: 0.15em;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.scent-finder-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.02em;
}
.scent-finder-close-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #a0a0a8;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.25s ease;
}
.scent-finder-close-btn:hover {
    border-color: #c9a24d;
    color: #c9a24d;
    transform: rotate(90deg);
}

/* Progress bar */
.scent-finder-progress-container {
    padding: 14px 30px;
    background: #15151b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.scent-finder-progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: #a0a0a8;
    margin-bottom: 8px;
}
#scentFinderStepCounter {
    color: #c9a24d;
    font-weight: 600;
}
.scent-finder-progress-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 99px;
    overflow: hidden;
}
.scent-finder-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #c9a24d, #f5d77f);
    transition: width 0.35s ease;
}

/* Body & Steps */
.scent-finder-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}
.scent-step {
    display: none;
    animation: scentFadeIn 0.35s ease forwards;
}
.scent-step.active {
    display: block;
}
@keyframes scentFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.scent-step-question {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #ffffff;
    margin: 0 0 6px;
    text-align: center;
}
.scent-step-subtitle {
    font-size: 0.88rem;
    color: #9ca3af;
    text-align: center;
    margin: 0 0 25px;
}

/* Option Cards Grid */
.scent-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.scent-options-grid-5 {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.scent-option-card {
    background: #17171d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 24px 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: inherit;
    outline: none;
}
.scent-option-card:hover {
    border-color: rgba(201, 162, 77, 0.6);
    background: #1d1d24;
    transform: translateY(-3px);
}
.scent-option-card.selected {
    border-color: #c9a24d;
    background: rgba(201, 162, 77, 0.12);
    box-shadow: 0 0 20px rgba(201, 162, 77, 0.2);
}
.scent-option-card:focus-visible {
    outline: 2px solid #c9a24d;
    outline-offset: 2px;
}
.scent-option-icon {
    font-size: 1.8rem;
    color: #c9a24d;
    margin-bottom: 14px;
    transition: transform 0.25s ease;
}
.scent-option-card:hover .scent-option-icon,
.scent-option-card.selected .scent-option-icon {
    transform: scale(1.15);
}
.scent-option-card h4 {
    font-size: 1.05rem;
    color: #ffffff;
    margin: 0 0 8px;
    font-weight: 600;
}
.scent-option-card p {
    font-size: 0.78rem;
    color: #9ca3af;
    line-height: 1.45;
    margin: 0;
}

/* Loading State */
.scent-finder-loading-box {
    text-align: center;
    padding: 50px 20px;
}
.scent-finder-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(201, 162, 77, 0.2);
    border-top-color: #c9a24d;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: scentSpin 0.9s linear infinite;
}
@keyframes scentSpin {
    to { transform: rotate(360deg); }
}
.scent-finder-loading-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 8px;
}
.scent-finder-loading-box p {
    color: #9ca3af;
    font-size: 0.85rem;
}

/* Results State */
.scent-finder-results-header {
    text-align: center;
    margin-bottom: 24px;
}
.scent-finder-results-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    color: #ffffff;
    margin: 0 0 10px;
}
.scent-finder-fallback-note {
    background: rgba(201, 162, 77, 0.1);
    border: 1px solid rgba(201, 162, 77, 0.35);
    border-radius: 6px;
    padding: 10px 16px;
    color: #f5d77f;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    margin-top: 8px;
}

/* Scent Finder Result Cards - Luxury Compact Layout */
.scent-finder-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 25px;
}

.scent-finder-results-grid .product-card {
    background: #17171e !important;
    border: 1px solid rgba(201, 162, 77, 0.3) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
    height: 100% !important;
    position: relative !important;
}

.scent-finder-results-grid .product-card:hover {
    border-color: #c9a24d !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7), 0 0 15px rgba(201, 162, 77, 0.2) !important;
}

.scent-finder-results-grid .product-image-box,
.scent-finder-results-grid .product-image {
    height: 145px !important;
    min-height: 145px !important;
    max-height: 145px !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    background: radial-gradient(circle at center, #262734 0%, #16171f 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.scent-finder-results-grid .product-image-box a,
.scent-finder-results-grid .product-image a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.scent-finder-results-grid .product-image-box img,
.scent-finder-results-grid .product-image img,
.scent-finder-results-grid img.product-img-main {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.5s ease !important;
    display: block !important;
}

.scent-finder-results-grid .product-card:hover img {
    transform: scale(1.06) !important;
}

.scent-finder-results-grid .badge-best-seller {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    z-index: 3 !important;
    background: rgba(12, 12, 16, 0.85) !important;
    color: #e6ca65 !important;
    border: 1px solid rgba(201, 162, 77, 0.5) !important;
    backdrop-filter: blur(4px) !important;
    padding: 3px 8px !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    border-radius: 3px !important;
    text-transform: uppercase !important;
}

.scent-finder-results-grid .product-info {
    padding: 14px 12px 12px !important;
    background: #17171e !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    text-align: left !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.scent-finder-results-grid .product-category {
    font-size: 0.7rem !important;
    color: #c9a24d !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    font-weight: 600 !important;
}

.scent-finder-results-grid .product-rating {
    font-size: 0.7rem !important;
    color: #f5d77f !important;
}

.scent-finder-results-grid .product-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    margin: 4px 0 6px !important;
}

.scent-finder-results-grid .product-title a {
    color: #ffffff !important;
    text-decoration: none !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    transition: color 0.2s ease !important;
}

.scent-finder-results-grid .product-title a:hover {
    color: #c9a24d !important;
}

.scent-finder-results-grid .product-price-box {
    margin-bottom: 12px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #c9a24d !important;
}

.scent-finder-results-grid .product-price-box del {
    color: #71717a !important;
    font-size: 0.78rem !important;
    margin-right: 6px !important;
}

.scent-finder-results-grid .product-price-box ins {
    text-decoration: none !important;
}

.scent-finder-results-grid .product-card-actions {
    display: flex !important;
    gap: 8px !important;
    margin-top: auto !important;
}

.scent-finder-results-grid .gold-button-outline {
    background: transparent !important;
    border: 1px solid rgba(201, 162, 77, 0.4) !important;
    color: #e4e4e7 !important;
    text-align: center !important;
    padding: 7px 10px !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.scent-finder-results-grid .gold-button-outline:hover {
    border-color: #c9a24d !important;
    color: #c9a24d !important;
    background: rgba(201, 162, 77, 0.1) !important;
}

.scent-finder-results-grid .scent-finder-add-to-cart {
    background: #c9a24d !important;
    color: #0c0c0e !important;
    border: none !important;
    padding: 7px 12px !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
}

.scent-finder-results-grid .scent-finder-add-to-cart:hover {
    background: #e6ca65 !important;
    box-shadow: 0 4px 12px rgba(201, 162, 77, 0.3) !important;
    transform: translateY(-1px) !important;
}

/* Custom Sleek Dark Scrollbar for Scent Finder Body */
.scent-finder-body {
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 162, 77, 0.4) #111115;
}
.scent-finder-body::-webkit-scrollbar {
    width: 6px;
}
.scent-finder-body::-webkit-scrollbar-track {
    background: #111115;
}
.scent-finder-body::-webkit-scrollbar-thumb {
    background: rgba(201, 162, 77, 0.35);
    border-radius: 99px;
}
.scent-finder-body::-webkit-scrollbar-thumb:hover {
    background: #c9a24d;
}

.scent-finder-results-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Modal Footer Navigation */
.scent-finder-footer {
    padding: 18px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #141419;
    border-radius: 0 0 12px 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .scent-finder-modal {
        width: 96%;
        max-height: 94vh;
    }
    .scent-finder-header {
        padding: 16px 20px;
    }
    .scent-finder-header h2 {
        font-size: 1.4rem;
    }
    .scent-finder-body {
        padding: 20px 16px;
    }
    .scent-options-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .scent-option-card {
        padding: 16px 14px;
        flex-direction: row;
        text-align: left;
        gap: 14px;
    }
    .scent-option-icon {
        margin-bottom: 0;
        font-size: 1.4rem;
    }
    .scent-finder-results-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .scent-finder-results-grid .product-image-box,
    .scent-finder-results-grid .product-image {
        height: 180px !important;
        min-height: 180px !important;
        max-height: 180px !important;
    }
    .scent-finder-footer {
        padding: 14px 20px;
    }
}

/* ==========================================================================
   7. WOOCOMMERCE DEDICATED CART & CHECKOUT PAGES (DARK LUXURY)
   ========================================================================== */

/* Cart Page */
.woocommerce-cart .woocommerce {
    max-width: 1200px;
    margin: 40px auto 60px;
    padding: 0 20px;
}
.woocommerce-cart table.shop_table {
    background: #171822;
    border: 1px solid rgba(201, 162, 77, 0.25);
    border-radius: 10px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    color: #e4e4e7;
    margin-bottom: 30px;
    width: 100%;
}
.woocommerce-cart table.shop_table th {
    background: #141419;
    color: #c9a24d;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    padding: 16px 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(201, 162, 77, 0.2);
}
.woocommerce-cart table.shop_table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: middle;
}
.woocommerce-cart table.shop_table td.product-thumbnail img {
    width: 70px;
    height: 85px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(201, 162, 77, 0.3);
}
.woocommerce-cart table.shop_table td.product-name a {
    color: #ffffff;
    font-size: 1.05rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.woocommerce-cart table.shop_table td.product-name a:hover {
    color: #c9a24d;
}
.woocommerce-cart table.shop_table td.product-price,
.woocommerce-cart table.shop_table td.product-subtotal {
    color: #c9a24d;
    font-weight: 700;
    font-size: 1.05rem;
}
.woocommerce-cart table.shop_table td.product-remove a.remove {
    color: #a0a0a8 !important;
    background: rgba(255, 255, 255, 0.05);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}
.woocommerce-cart table.shop_table td.product-remove a.remove:hover {
    background: #ef4444 !important;
    color: #ffffff !important;
}
.woocommerce-cart td.actions {
    background: #141419;
    padding: 20px !important;
}
.woocommerce-cart td.actions .coupon {
    display: flex;
    gap: 10px;
    align-items: center;
}
.woocommerce-cart td.actions .coupon input.input-text {
    padding: 12px 16px;
    background: #111116;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: #ffffff;
    min-width: 180px;
}
.woocommerce-cart td.actions .coupon button.button,
.woocommerce-cart td.actions button.button {
    background: transparent;
    border: 1px solid rgba(201, 162, 77, 0.5);
    color: #c9a24d;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
}
.woocommerce-cart td.actions button.button:hover {
    background: #c9a24d;
    color: #0c0c0e;
}
.woocommerce-cart .cart-collaterals {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}
.woocommerce-cart .cart_totals {
    width: 100%;
    max-width: 480px;
    background: #171822;
    border: 1px solid rgba(201, 162, 77, 0.3);
    border-radius: 10px;
    padding: 28px;
}
.woocommerce-cart .cart_totals h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
}
.woocommerce-cart .cart_totals table.shop_table {
    border: none;
    background: transparent;
    margin-bottom: 20px;
}
.woocommerce-cart .cart_totals table.shop_table th {
    background: transparent;
    border: none;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #a0a0a8;
}
.woocommerce-cart .cart_totals table.shop_table td {
    border: none;
    padding: 10px 0;
    text-align: right;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background: #c9a24d !important;
    color: #0c0c0e !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    display: block !important;
    text-align: center !important;
    padding: 16px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background: #e6ca65 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 77, 0.35);
}

/* Checkout Page */
.woocommerce-checkout .woocommerce {
    max-width: 1200px;
    margin: 40px auto 60px;
    padding: 0 20px;
}
.woocommerce-checkout form.checkout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 900px) {
    .woocommerce-checkout form.checkout {
        grid-template-columns: 1fr;
    }
}
.woocommerce-checkout #customer_details {
    background: #171822;
    border: 1px solid rgba(201, 162, 77, 0.25);
    border-radius: 10px;
    padding: 30px;
}
.woocommerce-checkout #customer_details h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
}
.woocommerce-checkout .form-row label {
    display: block;
    color: #e4e4e7;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
}
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    padding: 12px 14px;
    background: #111116;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: #ffffff;
    font-size: 0.95rem;
}
.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
    border-color: #c9a24d;
    outline: none;
}
.woocommerce-checkout #order_review_heading {
    display: none;
}
.woocommerce-checkout #order_review {
    background: #171822;
    border: 1px solid rgba(201, 162, 77, 0.3);
    border-radius: 10px;
    padding: 30px;
}
.woocommerce-checkout #order_review table.shop_table {
    border: none;
    background: transparent;
    width: 100%;
    color: #e4e4e7;
}
.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.woocommerce-checkout #order_review table.shop_table .product-total,
.woocommerce-checkout #order_review table.shop_table .order-total {
    text-align: right;
    color: #c9a24d;
    font-weight: 700;
}
.woocommerce-checkout #order_review #payment {
    background: #141419;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 20px;
    margin-top: 25px;
}
.woocommerce-checkout #order_review #payment ul.payment_methods {
    list-style: none;
    padding: 0;
    margin: 0;
}
.woocommerce-checkout #order_review #payment ul.payment_methods li {
    padding: 10px 0;
    color: #e4e4e7;
}
.woocommerce-checkout #order_review #payment div.payment_box {
    background: #111116;
    border: 1px solid rgba(201, 162, 77, 0.3);
    padding: 14px;
    border-radius: 6px;
    color: #a0a0a8;
    font-size: 0.88rem;
    margin: 10px 0;
}
.woocommerce-checkout #place_order {
    background: #c9a24d !important;
    color: #0c0c0e !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    padding: 16px 24px !important;
    border-radius: 4px !important;
    width: 100% !important;
    cursor: pointer !important;
    border: none !important;
    font-size: 1rem !important;
    transition: all 0.25s ease !important;
    margin-top: 15px !important;
}
.woocommerce-checkout #place_order:hover {
    background: #e6ca65 !important;
    box-shadow: 0 6px 20px rgba(201, 162, 77, 0.35);
    transform: translateY(-2px);
}


