/*
 Theme Name:   Astra Child
 Description:  Astra Child Theme
 Author:       Decocru Team
 Template:     astra
 Version:      1.0.0
*/

/* Premium Top Promotional Banner */
.top-promo-banner {
    background: #1a1a1a;
    color: #ffffff;
    font-size: 11px;
    font-family: inherit;
    padding: 8px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 10001;
}

.top-promo-banner .promo-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-promo-banner strong {
    color: #e6b771;
    /* Luxury gold accent */
    font-weight: 700;
}

.top-promo-banner .divider {
    color: #555;
    font-weight: 300;
}

.top-promo-banner .promo-links a {
    color: #cccccc;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.top-promo-banner .promo-links a:hover {
    color: #e6b771;
}

@media (max-width: 768px) {
    .top-promo-banner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 10px;
    }

    .top-promo-banner .promo-links {
        display: none;
        /* Hide secondary links on mobile to save space */
    }
}

/* Global Professional Header (FNP Style) */
/* Global Professional Header (FNP Style) */
.luxury-global-header {
    background: #fff;
    padding: 10px 0;
    border-bottom: 2px solid #f9f9f9;
    position: sticky;
    top: 0;
    z-index: 10000;
    font-family: 'Montserrat', sans-serif;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styling */
.logo-box .site-logo {
    height: 60px;
    /* Professional sizing */
    width: auto;
    display: block;
}

/* Professional Search Section */
.search-section {
    flex-grow: 1;
    display: flex;
    align-items: center;
    max-width: 650px;
    margin: 0 50px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    /* Pill shape for premium feel */
    padding: 3px;
    /* Creates inner space for the button */
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.search-section:focus-within {
    border-color: #e6b771;
    box-shadow: 0 4px 15px rgba(230, 183, 113, 0.15);
    /* Soft gold glow on focus */
}

.product-search-form {
    flex-grow: 1;
    display: flex;
    align-items: stretch;
    border-radius: 50px;
}

.product-search-form input {
    width: 100%;
    background: transparent;
    border: none !important;
    padding: 13px 22px;
    font-size: 14px;
    color: #222;
    outline: none;
}

.product-search-form input::placeholder {
    color: #a0a0a0;
    font-weight: 300;
}

.search-submit-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50px;
    /* Perfectly round pill button inside */
}

.search-submit-btn:hover {
    background: #e6b771;
    transform: scale(0.98);
}

/* Utility Icons */
.header-utility {
    display: flex;
    gap: 35px;
}

.u-box {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease;
}

.u-box .ico {
    font-size: 22px;
    margin-bottom: 4px;
    transition: transform 0.2s ease;
}

.u-box:hover .ico {
    transform: translateY(-3px);
}

.u-box:hover {
    color: #e6b771;
}

.cart-trigger {
    position: relative;
}

.cart-trigger .badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #e62e2e;
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Professional Navbar */
.premium-navbar {
    background: #fff;
    border-top: 1px solid #f1f1f1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 30px;
}

.premium-navbar::-webkit-scrollbar {
    display: none;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    width: max-content;
    min-width: 100%;
}

.nav-links li {
    flex-shrink: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 13px 0;
    display: block;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e6b771;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #e6b771;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Header Responsiveness */
.mobile-menu-trigger {
    display: none;
}

#menuToggle {
    background: transparent !important;
    border: none !important;
    font-size: 24px !important;
    color: #1a1a1a !important;
    cursor: pointer;
    padding: 10px !important;
    transition: color 0.3s;
    box-shadow: none !important;
    border-radius: 0 !important;
}

#menuToggle:hover {
    color: #e6b771 !important;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    z-index: 100001;
    /* Higher than any header */
    box-shadow: 15px 0 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    padding: 60px 25px 40px;
    overflow-y: auto;
}

.mobile-nav-overlay.active {
    left: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px !important;
    background: transparent !important;
    border: none !important;
    color: #1a1a1a !important;
    padding: 5px !important;
    cursor: pointer;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.mobile-nav-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 40px 0 0 !important;
}

.mobile-nav-links li {
    margin-bottom: 0 !important;
    border-bottom: 1px solid #f5f5f5 !important;
    list-style: none !important;
}

.mobile-nav-links a {
    text-decoration: none !important;
    color: #1a1a1a !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    display: block !important;
    padding: 18px 0 !important;
    letter-spacing: 1px !important;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: #e6b771 !important;
    padding-left: 5px !important;
}

/* Blur Background when Menu is Open */
.menu-open-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100000;
    display: none;
    backdrop-filter: blur(4px);
}

.menu-open-blur.active {
    display: block;
}

@media (max-width: 900px) {
    .top-promo-banner {
        flex-direction: column;
        padding: 12px 15px;
        font-size: 10px;
    }

    .top-promo-banner .promo-text {
        flex-direction: column;
        gap: 5px;
    }

    .top-promo-banner .divider {
        display: none;
    }

    .luxury-global-header {
        padding: 12px 0;
    }

    .header-inner {
        padding: 0 15px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-menu-trigger {
        display: block !important;
        flex: 0 0 45px;
        order: 1;
    }

    .logo-box {
        flex: 1;
        display: flex;
        justify-content: center;
        order: 2;
        padding: 0 5px;
    }

    .logo-box .site-logo {
        height: 32px !important;
        max-width: 130px;
        width: auto !important;
    }

    .header-utility {
        flex: 0 0 auto;
        order: 3;
        gap: 15px !important;
    }

    .u-box .ico {
        font-size: 22px !important;
        margin-bottom: 0;
        color: #1a1a1a !important;
    }

    .u-box span {
        display: none !important;
    }

    .search-section {
        order: 4;
        width: 100% !important;
        max-width: 100% !important;
        margin: 12px 0 0 !important;
        flex: 0 0 100%;
    }

    .product-search-form input {
        padding: 10px 18px !important;
        font-size: 13px !important;
        height: 42px !important;
    }

    .search-submit-btn {
        padding: 0 20px !important;
        height: 42px !important;
        background: #111 !important;
    }

    .premium-navbar {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .logo-box .site-logo {
        height: 38px;
    }

    .search-submit-btn {
        padding: 0 20px;
    }
}

/* Premium E-commerce Navbar Badges */
.nav-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 5px;
    vertical-align: super;
    /* Lifts it up nicely */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.nav-links a:hover .nav-badge {
    transform: scale(1.05);
    /* Fun tiny pop effect */
}

/* Specific Badge Types */
.nav-badge.hot {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: #fff;
    animation: hot-pulse 2s infinite;
}

.nav-badge.premium {
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    color: #e6b771;
    border: 1px solid #e6b771;
}

@keyframes hot-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 65, 108, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(255, 65, 108, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 65, 108, 0);
    }
}

/* Highlight specific link text */
.highlight-link {
    color: #e6b771 !important;
    /* Gold text for core feature */
}

/* Global Product & Shop Cleanup */
.woocommerce button.button.alt,
.woocommerce .button {
    background-color: #1a1a1a !important;
    border-radius: 50px !important;
    /* Match pill shapes globally */
    font-weight: 600;
}

.woocommerce button.button.alt:hover,
.woocommerce .button:hover {
    background-color: #e6b771 !important;
}

/* Header Override for Astra */
.site-header {
    display: none !important;
}

/* ==========================================================================
   SINGLE PRODUCT: ELITE BOUTIQUE REDESIGN (FORCED OVERRIDES)
   ========================================================================== */

body.single-product {
    background-color: #f8fbff !important;
    /* Alice Blue Base for that clean designer look */
}

/* Breadcrumbs Polish */
body.single-product .woocommerce-breadcrumb {
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    font-weight: 700 !important;
    color: #7a8a9a !important;
    margin-bottom: 30px !important;
}

body.single-product .woocommerce-breadcrumb a {
    color: #bfa066 !important;
    text-decoration: none !important;
}

/* ==========================================================================
   SINGLE PRODUCT V2: ELITE LUXURY OVERHAUL (MUSEUM AESTHETIC)
   ========================================================================== */

body.single-product {
    background-color: #f8fbff !important;
    /* Alice Blue Base */
    color: #444 !important;
}

/* Absolute Top Space Removal - Intensive */
body.single-product .site-content,
body.single-product .ast-article-single,
body.single-product .primary,
body.single-product #primary,
body.single-product .main-header-bar,
body.single-product .site-header {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
}

body.single-product .woocommerce-notices-wrapper:empty {
    display: none !important;
}

body.single-product #content.site-content {
    padding-top: 0px !important;
    margin-top: -30px !important;
    /* Pull content up if Astra has hidden gaps */
}

/* Hide All Product Meta/Tags/Breadcrumbs */
body.single-product .woocommerce-breadcrumb,
body.single-product .product_meta,
body.single-product .ast-single-product-category,
body.single-product .posted_in,
body.single-product .tagged_as {
    display: none !important;
}

/* Alignment Fix */
body.single-product .summary.entry-summary {
    padding-left: 0 !important;
}

.decocru-personalization-fields-wrapper,
.decocru-personalization-field,
.decocru-image-uploads {
    margin-left: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Tighten Summary Spacing */
body.single-product .summary.entry-summary {
    padding-top: 5px !important;
}

body.single-product h1.product_title {
    margin-bottom: 8px !important;
}

body.single-product .price {
    margin-bottom: 12px !important;
    display: block !important;
}

body.single-product .woocommerce-product-details__short-description {
    margin-bottom: 10px !important;
}

/* Breadcrumbs: Elite Styling */
body.single-product .woocommerce-breadcrumb {
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 2.5px !important;
    font-weight: 700 !important;
    color: #a0a0a0 !important;
    margin-bottom: 45px !important;
}

body.single-product .woocommerce-breadcrumb a {
    color: #bfa066 !important;
    text-decoration: none !important;
    transition: color 0.3s;
}

body.single-product .woocommerce-breadcrumb a:hover {
    color: #001a33;
}

/* 1. GALLERY: VERTICAL FASHION LAYOUT */
body.single-product .woocommerce-product-gallery {
    margin-bottom: 50px !important;
    width: 38% !important;
    /* Smaller image as requested */
    float: left !important;
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs {
    margin-top: 20px !important;
    display: flex !important;
    gap: 15px !important;
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs li {
    width: 80px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 1px solid #eee !important;
    transition: all 0.3s;
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs li img {
    opacity: 0.6;
    transition: opacity 0.3s;
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
    opacity: 1;
    border: 2px solid #bfa066 !important;
}

/* 2. SUMMARY: THE ELITE INFO LAYOUT */
body.single-product .summary {
    padding-left: 40px !important;
    width: 58% !important;
    /* Larger content area */
    float: right !important;
}

/* Product Title: Authoritative & Elegant */
body.single-product h1.product_title {
    font-family: 'Playfair Display', serif !important;
    font-size: 32px !important;
    /* Made smaller as requested */
    font-weight: 900 !important;
    color: #111 !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.5px !important;
    line-height: 1.1 !important;
}

/* Removed Decorative Line as requested */
body.single-product h1.product_title::after {
    display: none !important;
}

/* Meta Labels */
body.single-product .product_meta .posted_in {
    margin-bottom: 30px !important;
}

body.single-product .product_meta a {
    color: #a0a0a0 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 11px !important;
    text-decoration: none !important;
}

/* 3. PREMIUM BUY CARD: GLASSMORHPIC UI */
body.single-product .entry-summary .elementor-widget-container,
body.single-product .summary .cart,
body.single-product form.cart {
    background: #fff !important;
    border: 1px solid #eee !important;
    padding: 20px !important;
    /* Restored reasonable padding */
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    margin-bottom: 30px !important;
    max-width: 100% !important;
    /* Full width within summary */
    position: relative;
    z-index: 10;
}

/* Absolute Luxury Price */
body.single-product .entry-summary p.price {
    font-family: 'Playfair Display', serif !important;
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
}

body.single-product .entry-summary p.price>span.woocommerce-Price-amount,
body.single-product .entry-summary p.price ins span.woocommerce-Price-amount {
    font-size: 30px !important;
    font-weight: 800 !important;
    color: #001a33 !important;
}

body.single-product .entry-summary .price ins {
    text-decoration: none !important;
}

body.single-product .entry-summary span.woocommerce-Price-currencySymbol {
    color: #bfa066 !important;
    font-weight: 500 !important;
    font-size: 22px !important;
    margin-right: 4px;
}

body.single-product .entry-summary .price del,
body.single-product .entry-summary .price del span.woocommerce-Price-amount,
body.single-product .entry-summary .price del span.woocommerce-Price-currencySymbol {
    font-size: 18px !important;
    opacity: 0.6 !important;
    color: #7a8a9a !important;
    font-weight: 500 !important;
    text-decoration: line-through !important;
}

body.single-product .entry-summary .price del {
    margin-right: 15px;
}

body.single-product .entry-summary .stock {
    margin-bottom: 15px !important;
    font-weight: 600;
}

/* Premium Buttons & Qty */
body.single-product .quantity input {
    height: 64px !important;
    width: 90px !important;
    border: 2px solid #eef2f6 !important;
    border-radius: 14px !important;
    font-weight: 800 !important;
    background: #fff !important;
    font-size: 18px !important;
    color: #001a33 !important;
    margin-right: 15px !important;
}

body.single-product .single_add_to_cart_button {
    background: #001a33 !important;
    height: 64px !important;
    padding: 0 50px !important;
    border-radius: 14px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    transition: all 0.4s ease !important;
    border: none !important;
}

body.single-product .single_add_to_cart_button:hover {
    background: #bfa066 !important;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(191, 160, 102, 0.3);
}


/* 4. TRUST BAR & HIGHLIGHTS (Full Width Below Product) */
.dc-premium-trust-bar {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-around !important;
    align-items: center !important;
    padding: 30px !important;
    background: #fff !important;
    border: 1px solid #eee !important;
    border-radius: 20px !important;
    margin: 30px auto 20px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03) !important;
    clear: both !important;
}

.dc-premium-trust-bar .dc-trust-item {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.dc-premium-trust-bar .ico {
    font-size: 22px !important;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.dc-premium-trust-bar strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #001a33;
    margin-bottom: 3px;
}

.dc-premium-trust-bar span {
    font-size: 11px;
    color: #7a8a9a;
    font-weight: 500;
}

/* Highlights Box */
.dc-product-highlights {
    background: rgba(230, 183, 113, 0.05);
    border-left: 4px solid #e6b771;
    padding: 30px !important;
    margin-bottom: 50px;
}

.dc-product-highlights h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;
}

.dc-product-highlights ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.dc-product-highlights li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.dc-product-highlights li span {
    color: #e6b771;
    font-weight: 900;
}

/* 5. TABS: MINIMALIST BOUTIQUE REDESIGN */
body.single-product .woocommerce-tabs {
    margin-top: 100px !important;
}

body.single-product .woocommerce-tabs ul.tabs {
    border: none !important;
    display: flex !important;
    justify-content: center !important;
    gap: 80px !important;
    margin-bottom: 60px !important;
    background: transparent !important;
}

body.single-product .woocommerce-tabs ul.tabs li {
    background: transparent !important;
    border: none !important;
    padding: 0 0 15px 0 !important;
    position: relative;
}

body.single-product .woocommerce-tabs ul.tabs li a {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    font-size: 13px !important;
    color: #a0a0a0 !important;
}

body.single-product .woocommerce-tabs ul.tabs li.active a {
    color: #001a33 !important;
}

body.single-product .woocommerce-tabs ul.tabs li.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px !important;
    background: #bfa066 !important;
    border-radius: 10px;
}

/* Responsivity Polish */
@media (max-width: 991px) {
    body.single-product .summary {
        padding-left: 0 !important;
        padding-top: 40px !important;
    }

    body.single-product h1.product_title {
        font-size: 28px !important;
    }
}

@media (max-width: 600px) {
    .dc-premium-trust-bar {
        flex-direction: column;
        gap: 30px;
    }

    body.single-product .woocommerce-tabs ul.tabs {
        gap: 30px !important;
        flex-wrap: wrap;
    }
}



/* Global Shop & Card Polish (Restored) */
.woocommerce .products .product h2.woocommerce-loop-product__title {
    font-family: 'Playfair Display', serif !important;
    font-weight: 800 !important;
    font-size: 22px !important;
    color: #001a33 !important;
    margin-top: 15px !important;
    text-decoration: none !important;
}

.woocommerce .products .product .price {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    color: #bfa066 !important;
    font-size: 16px !important;
    margin-bottom: 20px !important;
}

/* GLOBAL PRODUCT IMAGE FIX */
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img,
.astra-shop-thumbnail-wrap img {
    object-fit: contain !important;
    background: #fdfdfd !important;
    padding: 10px !important;
}


/* Single Product Gallery: No Cropping */
body.single-product .woocommerce-product-gallery__wrapper img {
    object-fit: contain !important;
    background: #f8fbff !important;
}

/* Related / Shop Grid: Minimal Brand Color Fixes (Normal Layout) */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
    font-weight: 700 !important;
    color: #001a33 !important;
}

.woocommerce ul.products li.product .price {
    color: #bfa066 !important;
    font-weight: 700 !important;
}

/* Floating "Clock Designer" Badge in Menu */
.nav-badge.hot {
    background: #e6b771 !important;
    border: 1px solid #fff;
    font-family: 'Montserrat', sans-serif !important;
    box-shadow: 0 4px 10px rgba(230, 183, 113, 0.4);
}


/* ============================================
   LUXURY CART PAGE STYLES
   ============================================ */

/* Main Cart Container */
.woocommerce-cart .woocommerce {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.woocommerce-cart h1.entry-title,
.woocommerce-cart .entry-title,
.woocommerce-checkout h1.entry-title,
.woocommerce-checkout .entry-title,
.woocommerce-checkout .ast-archive-description .entry-title,
.woocommerce-checkout .page-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 42px !important;
    font-weight: 900 !important;
    color: #001a33 !important;
    text-align: center !important;
    margin-bottom: 45px !important;
    margin-top: 20px !important;
    letter-spacing: -1px !important;
    display: block !important;
    width: 100% !important;
}

/* Cart Table Styling */
.woocommerce-cart table.shop_table {
    border: none !important;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 26, 51, 0.05) !important;
    background: #fff !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
}

.woocommerce-cart table.shop_table thead {
    background: #f8fbff !important;
}

.woocommerce-cart table.shop_table th {
    padding: 25px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: #7a8a9a !important;
    border: none !important;
}

.woocommerce-cart table.shop_table td {
    padding: 30px 25px !important;
    border-top: 1px solid #f1f5f9 !important;
    vertical-align: middle !important;
    color: #001a33 !important;
}

/* Product Image in Cart */
.woocommerce-cart .product-thumbnail img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 12px !important;
    object-fit: cover !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

.woocommerce-cart .product-name a {
    font-family: 'Playfair Display', serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #001a33 !important;
    text-decoration: none !important;
    transition: color 0.3s !important;
}

.woocommerce-cart .product-name a:hover {
    color: #bfa066 !important;
}

/* Quantity Input */
.woocommerce-cart .quantity input {
    width: 65px !important;
    height: 45px !important;
    background: #f8fbff !important;
    border: 2px solid #eef2f6 !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    color: #001a33 !important;
    text-align: center !important;
}

/* Coupon & Actions Section */
.woocommerce-cart .actions {
    padding: 30px !important;
    background: #fff !important;
}

.woocommerce-cart .coupon {
    display: flex !important;
    gap: 12px !important;
    float: left !important;
}

.woocommerce-cart .coupon input#coupon_code {
    width: 180px !important;
    height: 50px !important;
    border-radius: 12px !important;
    border: 2px solid #eef2f6 !important;
    padding: 0 20px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    margin: 0 !important;
}

.woocommerce-cart .coupon button[name="apply_coupon"] {
    background: #001a33 !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 0 25px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
    letter-spacing: 1px !important;
    height: 50px !important;
    border: none !important;
    cursor: pointer !important;
}

.woocommerce-cart button[name="update_cart"] {
    background: transparent !important;
    color: #7a8a9a !important;
    border: 2px solid #eef2f6 !important;
    border-radius: 12px !important;
    padding: 0 25px !important;
    font-weight: 700 !important;
    height: 50px !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
    transition: all 0.3s !important;
    float: right !important;
    cursor: pointer !important;
}

.woocommerce-cart button[name="update_cart"]:hover {
    background: #eef2f6 !important;
    color: #001a33 !important;
}

/* Cart Totals Section */
.cart-collaterals {
    margin-top: 50px !important;
    display: flex !important;
    justify-content: flex-end !important;
}

.cart_totals {
    width: 100% !important;
    max-width: 480px !important;
    background: #fff !important;
    padding: 45px !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 60px rgba(0, 26, 51, 0.08) !important;
    border: 1px solid #f1f5f9 !important;
    float: none !important;
}

.cart_totals h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    color: #001a33 !important;
    margin-bottom: 30px !important;
    border: none !important;
    padding: 0 !important;
    text-align: left !important;
}

.cart_totals table {
    width: 100% !important;
    margin-bottom: 30px !important;
    border-collapse: collapse !important;
}

.cart_totals table tr th,
.cart_totals table tr td {
    padding: 18px 0 !important;
    border-top: 1px solid #f1f5f9 !important;
    background: transparent !important;
}

.cart_totals table tr.order-total th,
.cart_totals table tr.order-total td {
    border-top: 2px solid #001a33 !important;
    padding-top: 25px !important;
}

.cart_totals table tr.order-total strong {
    font-size: 24px !important;
    color: #001a33 !important;
}

/* Proceed to Checkout Button */
.wc-proceed-to-checkout a.checkout-button {
    background: #bfa066 !important;
    color: #fff !important;
    padding: 22px !important;
    border-radius: 14px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(191, 160, 102, 0.3) !important;
    transition: all 0.4s ease !important;
    display: block !important;
    margin: 0 !important;
}

.wc-proceed-to-checkout a.checkout-button:hover {
    background: #001a33 !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0, 26, 51, 0.2) !important;
}

/* Responsive Cart */
@media (max-width: 900px) {
    .woocommerce-cart table.shop_table_responsive thead {
        display: none;
    }

    .woocommerce-cart table.shop_table_responsive tr td {
        display: block;
        text-align: right !important;
        padding: 15px 20px !important;
    }

    .woocommerce-cart table.shop_table_responsive tr td::before {
        content: attr(data-title) ": ";
        float: left;
        font-weight: 800;
        text-transform: uppercase;
        font-size: 10px;
        color: #7a8a9a;
    }

    .woocommerce-cart .product-thumbnail {
        text-align: center !important;
    }

    .woocommerce-cart .product-thumbnail::before {
        display: none;
    }

    .woocommerce-cart .coupon {
        flex-direction: column;
        width: 100%;
    }

    .woocommerce-cart .coupon input#coupon_code,
    .woocommerce-cart .coupon button {
        width: 100% !important;
    }

    .woocommerce-cart button[name="update_cart"] {
        width: 100%;
        margin-top: 15px;
    }

    .cart-collaterals {
        justify-content: center !important;
    }
}


/* ============================================
   LUXURY CHECKOUT PAGE STYLES (GRID LOCK FIX)
   ============================================ */

.woocommerce-checkout .woocommerce {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Perfect Grid Lock */
@media (min-width: 992px) {
    .woocommerce-checkout form.checkout {
        display: grid !important;
        grid-template-columns: 60% 36% !important;
        grid-template-rows: min-content 1fr !important;
        grid-template-areas:
            "billing heading"
            "billing review" !important;
        gap: 0 4% !important;
        align-items: start !important;
        width: 100% !important;
    }

    .woocommerce-checkout #customer_details {
        grid-area: billing !important;
        width: 100% !important;
    }

    .woocommerce-checkout #order_review_heading {
        grid-area: heading !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 10px !important;
    }

    .woocommerce-checkout #order_review {
        grid-area: review !important;
        width: 100% !important;
        margin: 0 !important;
    }
}

/* Billing Section Styling */
.woocommerce-checkout #customer_details {
    background: #fff;
    padding: 40px !important;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 26, 51, 0.05);
    border: 1px solid #f1f5f9;
}

/* Order Section Styling */
.woocommerce-checkout #order_review {
    background: #fff !important;
    padding: 35px !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 26, 51, 0.1) !important;
    border: 1px solid #f1f5f9 !important;
}

/* Headings */
.woocommerce-checkout h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #001a33 !important;
    letter-spacing: -0.5px;
}

/* Form Fields */
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    background: #f8fbff !important;
    border: 2px solid #eef2f6 !important;
    border-radius: 10px !important;
    padding: 15px 20px !important;
    font-size: 14px !important;
    width: 100% !important;
}

/* Table Polish */
.woocommerce-checkout-review-order-table {
    width: 100% !important;
    border: none !important;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 15px 0 !important;
    border-top: 1px solid #f1f5f9 !important;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .woocommerce-checkout form.checkout {
        display: block !important;
    }

    .woocommerce-checkout #customer_details,
    .woocommerce-checkout #order_review,
    .woocommerce-checkout #order_review_heading {
        width: 100% !important;
        margin-bottom: 30px !important;
    }
}

/* Remove excessive space above Product Details */
.woocommerce-tabs.wc-tabs-wrapper {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.woocommerce-tabs ul.tabs {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

#tab-description {
    padding-top: 0 !important;
}