/* =========================================
   MISTWHIP THEME — PREMIUM STYLES
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;1,600&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --gold:       #c9a227;
    --gold-dark:  #a8831a;
    --cream:      #f7f4ef;
    --cream-dark: #ede9e1;
    --charcoal:   #1a1a1a;
    --mid:        #555;
    --border:     #e5e0d5;
    --white:      #ffffff;
    --radius:     12px;
    --shadow:     0 4px 24px rgba(0,0,0,0.07);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    font-size: 15px;
    line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    width: 90%;
    max-width: 1260px;
    margin: 0 auto;
}

/* =========================================
   ANNOUNCEMENT BAR
   ========================================= */
.announcement-bar {
    background: var(--gold);
    color: var(--white);
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    letter-spacing: 0.03em;
}

/* =========================================
   HEADER / NAV
   ========================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

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

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
}
.main-logo {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.main-logo:hover {
    transform: scale(1.05);
}

/* Nav links */
.main-nav ul {
    display: flex;
    gap: 32px;
}
.main-nav a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--charcoal);
    transition: color 0.2s;
    position: relative;
    padding-bottom: 4px;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}
.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gold);
}

/* Dropdown styling */
.main-nav li {
    position: relative;
    padding: 10px 0; /* Creates hover bridge */
}
.main-nav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.main-nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-nav .dropdown a {
    padding: 10px 20px;
    display: block;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--mid);
    border-bottom: 1px solid transparent;
}
.main-nav .dropdown a::after { display: none; }
.main-nav .dropdown a:hover {
    color: var(--gold);
    background: var(--cream);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}
.header-actions button,
.header-actions a {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--charcoal);
    font-size: 18px;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.2s;
}
.header-actions button:hover,
.header-actions a:hover { color: var(--gold); }

.header-phone {
    display: flex !important;
    align-items: center;
    gap: 12px;
    color: var(--gold) !important;
    font-weight: 700;
}
.header-phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.phone-number {
    font-size: 16px;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #c9a227 0%, #ecc440 50%, #c9a227 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 2.5s linear infinite;
    display: inline-block;
    font-weight: 700;
}

@keyframes goldShimmer {
    to {
        background-position: 200% center;
    }
}
.phone-tagline {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

@media (max-width: 600px) {
    .phone-tagline { display: none; }
}

.cart-count {
    position: absolute;
    top: -6px; right: -8px;
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 17px; height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   MINI CART DRAWER
   ========================================= */
.mini-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mini-cart-overlay.open { opacity: 1; pointer-events: all; }.mini-cart {
    position: fixed;
    right: -420px;
    top: 0;
    width: 400px;
    height: 100%;
    background: var(--white);
    z-index: 1999;
    transition: right 0.4s cubic-bezier(.165, .84, .44, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}
.mini-cart.open { right: 0; }

.mini-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 2px solid var(--cream);
}
.mini-cart-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: var(--charcoal);
}
.mini-cart-close {
    width: 32px; height: 32px;
    background: var(--cream);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: var(--mid);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.mini-cart-close:hover { background: var(--charcoal); color: var(--white); }

.mini-cart-body { 
    padding: 0 24px; 
    flex: 1; 
    overflow-y: auto;
}

/* Free Shipping Progress */
.cart-progress {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}
.progress-txt {
    font-size: 13px;
    color: var(--mid);
    margin-bottom: 10px;
    text-align: center;
}
.progress-bar {
    height: 6px;
    background: var(--cream);
    border-radius: 3px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: var(--gold);
    transition: width 0.6s ease;
}
.cart-progress.success .progress-fill { background: #2e7d32; }

/* Cart Item */
.cart-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px dashed var(--border);
    position: relative;
}
.cart-item-img {
    width: 70px; height: 70px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--cream);
    border: 1px solid var(--border);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { 
    font-weight: 700; 
    font-size: 14px; 
    color: var(--charcoal);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-item-addons {
    font-size: 10px;
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
}
.cart-item-meta { 
    font-size: 13px; 
    color: var(--mid); 
    display: flex;
    align-items: center;
    gap: 4px;
}
.cart-item-price { 
    font-weight: 800; 
    color: var(--charcoal); 
    font-size: 16px; /* High visibility */
    letter-spacing: -0.02em;
}
.cart-item-remove {
    position: absolute;
    top: 18px; right: 0;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #ccc;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}
.cart-item-remove:hover { color: #f44336; }

/* Suggestions */
.cart-suggestions {
    margin: 30px 0 20px;
    padding: 20px;
    background: var(--cream);
    border-radius: 12px;
}
.suggestion-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mid);
    margin-bottom: 16px;
}
.suggest-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.suggest-item:last-child { margin-bottom: 0; }

/* Plugin addon suggestion row in mini-cart */
.mwa-cart-addon-row {
    background: #fffdf5;
    border: 1px solid #e8d8a0;
    border-radius: 8px;
    padding: 10px 12px;
    gap: 10px;
}
.suggest-desc {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
    line-height: 1.4;
}
.mwa-addon-tag {
    flex-shrink: 0;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b38b1a;
    background: #fdf6e3;
    border: 1px solid #e8d8a0;
    border-radius: 20px;
    padding: 3px 8px;
    white-space: nowrap;
}
.suggest-img { widht: 40px; height: 40px; border-radius: 4px; overflow: hidden; background: #fff; }
.suggest-img img { width: 100%; height: 100%; object-fit: cover; }
.suggest-info { flex: 1; }
.suggest-name { font-size: 12px; font-weight: 700; color: var(--charcoal); }
.suggest-price { font-size: 12px; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.suggest-variation-select {
    width: 100%;
    padding: 6px 8px;
    font-size: 11px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: #fff;
    color: var(--mid);
    cursor: pointer;
    outline: none;
}
.suggest-add,
.suggest-options {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: none;
    color: var(--gold);
    font-weight: 700;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
}
.suggest-add:hover,
.suggest-options:hover { 
    background: var(--gold); 
    color: #fff; 
}

/* Empty States */
.mini-cart-empty-state {
    padding: 60px 24px;
    text-align: center;
}
.empty-icon { font-size: 50px; margin-bottom: 20px; opacity: 0.3; }
.mini-cart-empty-state h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 10px; }
.mini-cart-empty-state p { font-size: 14px; color: var(--mid); margin-bottom: 24px; }

/* Footer */
.mini-cart-footer {
    padding: 24px;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}
.mini-cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--charcoal);
}
.mini-cart-note {
    font-size: 12px;
    color: var(--mid);
    text-align: center;
    margin-bottom: 16px;
}
.announcement-bar {
    background: var(--charcoal);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    z-index: 9999; /* Ultimate High - Stay above all blurs */
}
.btn-checkout {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--gold);
    color: var(--white);
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(201,162,39,0.3);
}
.btn-checkout:hover { 
    background: var(--gold-dark); 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,162,39,0.4);
}
 }

/* =========================================
   CINEMA HERO SECTION
   ========================================= */
.cinema-hero {
    position: relative;
    width: 100%;
    min-height: 700px;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
    background-color: #fdfcf9;
    overflow: hidden;
    z-index: 5; /* Lower than header */
}

.hero-shade {
    display: block;
    position: absolute;
    top: 0; left: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(253, 252, 249, 1) 0%, 
        rgba(253, 252, 249, 0.95) 20%,
        rgba(253, 252, 249, 0.7) 50%, 
        rgba(253, 252, 249, 0) 100%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    -webkit-mask-image: linear-gradient(to right, black 30%, rgba(0,0,0,0.5) 60%, transparent 100%);
    mask-image: linear-gradient(to right, black 30%, rgba(0,0,0,0.5) 60%, transparent 100%);
    z-index: 2;
    pointer-events: none;
    transform: translateZ(0); /* Force layer isolation to prevent bleed */
}

.cinema-hero .hero-inner {
    position: relative;
    z-index: 10;
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 0 80px;
}

.hero-text-box {
    max-width: 650px;
    color: #1a1a1a !important; /* Force Obsidian */
    padding-left: 20px;
    margin-top: -30px;
}

.hero-label {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: #b38b1a !important;
    margin-bottom: 25px;
    font-weight: 900 !important;
}

.hero-text-box h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a !important;
    text-shadow: none !important;
}

.gold-text {
    color: #b38b1a !important;
}

.hero-text-box p {
    font-size: 19px; /* Slightly larger */
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 540px;
    color: #111 !important; /* Solid Black */
    font-weight: 600 !important; /* Bolder for visibility */
}

/* CTA Buttons */
.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 55px;
}

.btn-gold-fill {
    background: #ceaa3f !important;
    color: #ffffff !important; /* White on Gold is good */
    padding: 18px 45px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: none;
}

.btn-outline-white {
    background: transparent !important;
    border: 2px solid #1a1a1a !important;
    color: #1a1a1a !important; /* Force Black text */
    padding: 17px 45px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s;
}
.btn-outline-white:hover {
    background: #1a1a1a !important;
    color: #ffffff !important;
}

.hero-trust-bar {
    display: flex;
    gap: 32px;
    border-top: 1px solid rgba(0,0,0,0.15);
    padding-top: 35px;
    max-width: fit-content;
}
.trust-pill {
    font-size: 11px;
    font-weight: 800 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a !important;
}

/* Force the section below to be solid white and ignore any spills */
.products-section {
    position: relative;
    background: #ffffff !important;
    padding: 80px 0;
    margin-top: 0 !important;
    z-index: 20;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.gold-text {
    color: var(--gold);
}

.hero-text-box p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 480px;
    color: #eee;
}

/* CTA Buttons - Premium Overhaul */
.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.btn-gold-fill {
    background: #ceaa3f; /* Saturated Premium Gold */
    color: var(--white);
    padding: 16px 42px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: none;
}
.btn-gold-fill:hover {
    background: #e1bc53;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-outline-white {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    padding: 15px 42px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s;
}
.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

/* Trust Bar - Elegant Minimalist */
.hero-trust-bar {
    display: flex;
    gap: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 35px;
    max-width: fit-content;
}
.trust-pill {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}
.trust-pill span {
    color: var(--gold);
    font-size: 16px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-shade {
        background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9));
    }
    .cinema-hero {
        height: auto;
        padding: 120px 0 80px;
        text-align: center;
    }
    .hero-text-box {
        margin: 0 auto;
    }
    .hero-text-box p {
        margin: 0 auto 40px;
    }
    .hero-btns {
        justify-content: center;
        flex-direction: column;
    }
    .hero-trust-bar {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-bg-image {
        object-position: center;
    }
}

/* =========================================
   SHOP / CATALOG LAYOUT
   ========================================= */
.shop-page {
    padding: 20px 0 80px;
}
.shop-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.shop-topbar .woocommerce-result-count {
    margin: 0;
    font-size: 14px;
    color: var(--mid);
}
.shop-topbar .woocommerce-ordering {
    margin: 0;
}
.shop-topbar .woocommerce-ordering select {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    color: var(--charcoal);
    background: var(--white);
    outline: none;
    cursor: pointer;
    min-width: 200px;
}

/* =========================================
   SECTION HEADINGS
   ========================================= */
.section-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #b38b1a; /* Deeper Gold */
    text-align: center;
    display: block;
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.section-divider {
    width: 60px;
    height: 4px;
    background: #ceaa3f;
    margin: 0 auto 40px;
    border-radius: 4px;
}

/* =========================================
   BEST SELLERS / PRODUCT GRID
   ========================================= */
.products-section {
    padding: 70px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.card-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--gold);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

.card .product-thumb {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--cream);
}
.card .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--charcoal);
}
.card .card-subtitle {
    font-size: 12px;
    color: var(--mid);
    margin-bottom: 10px;
}

.price {
    color: var(--gold);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
}

/* Variation select */
.card .variation-row {
    margin-top: auto;
    margin-bottom: 10px;
}
.card .variation-row label {
    font-size: 11px;
    font-weight: 600;
    color: var(--mid);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 4px;
}
.card select.variation {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    background: var(--cream);
    color: var(--charcoal);
    cursor: pointer;
    appearance: auto;
}

/* Quantity row */
.card .qty-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
/* This handles Simple products so the whitespace is above the QTY row */
.card .price + .qty-row {
    margin-top: auto;
}
.card .qty-row label {
    font-size: 11px;
    font-weight: 600;
    color: var(--mid);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.qty-control button {
    background: var(--cream);
    border: none;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
    color: var(--charcoal);
    transition: background 0.2s;
}
.qty-control button:hover { background: var(--cream-dark); }
.qty-control input.qty {
    width: 40px;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 4px;
    background: var(--white);
    outline: none;
}

/* Card actions */
.card .actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.btn-add-cart {
    width: 100%;
    background: var(--white);
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 11px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.btn-add-cart:hover { background: var(--gold); color: var(--white); }
.btn-buy-now {
    width: 100%;
    background: var(--gold);
    border: 2px solid var(--gold);
    color: var(--white);
    padding: 11px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.btn-buy-now:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 30px 0;
}
.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.trust-bar-icon {
    font-size: 28px;
    flex-shrink: 0;
    color: var(--gold);
}
.trust-bar-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2px;
}
.trust-bar-text span {
    font-size: 12px;
    color: var(--mid);
}

/* =========================================
   SHOP BY CATEGORY
   ========================================= */
.categories-section {
    padding: 70px 0;
    background: var(--white);
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    background: var(--cream-dark);
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0) 100%);
    padding: 28px 20px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.category-name {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
}
.btn-shop-now {
    background: var(--white);
    color: var(--charcoal);
    border: none;
    padding: 7px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}
.btn-shop-now:hover { background: var(--gold); color: var(--white); }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
}
.site-footer a { color: var(--gold); }

/* =========================================
   SINGLE PRODUCT PAGE
   ========================================= */
.single-product-page { padding: 50px 0; }
.sp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.sp-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.sp-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 8px;
}
.sp-info .price {
    font-size: 26px;
    margin-bottom: 20px;
}
/* Premium Variation Selector */
.sp-variation-row {
    margin-bottom: 20px;
}
.sp-field-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mid);
    margin-bottom: 10px;
}
.sp-select-wrap {
    position: relative;
}
.sp-select,
.sp-info select.variation {
    width: 100%;
    padding: 14px 44px 14px 16px; /* Right padding for arrow */
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 0;
}
.sp-select:hover,
.sp-info select.variation:hover {
    border-color: #c9a227;
}
.sp-select:focus,
.sp-info select.variation:focus {
    outline: none;
    border-color: #c9a227;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}
.sp-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #c9a227;
    display: flex;
    align-items: center;
}
.sp-info .actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.description {
    margin-top: 24px;
    color: var(--mid);
    line-height: 1.8;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

/* =========================================
   GENERAL PAGE TEMPLATES
   ========================================= */
.page-main { padding: 60px 0 80px; }
.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 42px);
    margin-bottom: 24px;
    color: var(--charcoal);
}
.page-body { font-size: 15px; line-height: 1.8; color: var(--mid); }
.page-body p { margin-bottom: 16px; }
.archive-header { margin-bottom: 40px; }
.archive-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 38px);
    color: var(--charcoal);
    margin-bottom: 8px;
}
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}
.post-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s;
}
.post-card:hover { transform: translateY(-4px); }
.post-thumb img { width: 100%; height: 200px; object-fit: cover; }
.post-card-body { padding: 20px; }
.post-card-body h2 { font-size: 18px; margin-bottom: 10px; }
.post-card-body h2 a { color: var(--charcoal); }
.post-card-body h2 a:hover { color: var(--gold); }
.post-card-body p { color: var(--mid); font-size: 14px; line-height: 1.6; }
.nothing-found { text-align: center; padding: 60px; color: var(--mid); font-size: 16px; }

/* =========================================
   SHOP PAGE
   ========================================= */
.shop-hero {
    background: linear-gradient(135deg, #fbf7f0 0%, #f0e9d9 100%);
    padding: 60px 0 50px;
    border-bottom: 1px solid var(--border);
    text-align: center; /* CENTER EVERYTHING */
}
.shop-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--charcoal);
    margin: 12px 0 15px;
}

/* WooCommerce breadcrumb override */
.woocommerce-breadcrumb {
    font-size: 13px;
    color: var(--mid);
    margin: 0 !important;
    display: flex;
    justify-content: center; /* CENTER BREADCRUMBS */
    gap: 8px;
}
.woocommerce-breadcrumb a { color: var(--gold) !important; }

.shop-page { padding: 40px 0 80px; }

.shop-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

/* WooCommerce default result count & ordering overrides */
.woocommerce-result-count {
    font-size: 14px;
    color: var(--mid);
    margin: 0 !important;
}
.woocommerce-ordering select {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    background: var(--white);
    color: var(--charcoal);
    cursor: pointer;
    outline: none;
}

.shop-grid {
    margin-bottom: 48px;
}

.shop-pagination { text-align: center; }
.woocommerce-pagination ul {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
    transition: all 0.2s;
    text-decoration: none;
}
.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span.current {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.shop-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--mid);
}
.shop-empty h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--charcoal);
}
.shop-empty p { font-size: 15px; margin-bottom: 4px; }

/* Suppress WooCommerce built-in product loop wrappers we don't need */
.woocommerce-page ul.products { display: none !important; }
.woocommerce-products-header { display: none; }

/* =========================================
   UTILS & RESPONSIVE
   ========================================= */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }

@media (max-width: 1024px) {
    .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .main-nav { display: none; }
    .sp-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .trust-bar-inner { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
}

/* =========================================
   WHY CHOOSE MISTWHIP
   ========================================= */
.why-section {
    padding: 80px 0;
    background: var(--cream);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.09);
}
.why-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}
.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}
.why-card p {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.7;
}
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .why-grid { grid-template-columns: 1fr; } }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    transition: transform 0.25s;
}
.testimonial-card:hover { transform: translateY(-3px); }
.testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: 10px; left: 20px;
    line-height: 1;
}
.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.testimonial-text {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal);
}
.testimonial-author span {
    font-size: 12px;
    color: var(--mid);
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* =========================================
   FAQ ACCORDION
   ========================================= */
.faq-section {
    padding: 80px 0;
    background: var(--cream);
}
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    background: var(--white);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background 0.2s;
    font-family: 'Inter', sans-serif;
}
.faq-question:hover { background: var(--cream); }
.faq-question[aria-expanded="true"] { color: var(--gold); }
.faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.25s;
    line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(.4,0,.2,1), padding 0.2s;
    padding: 0 24px;
}
.faq-answer.open {
    max-height: 300px;
    padding: 0 24px 20px;
}
.faq-answer p {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.75;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

/* =========================================
   NEWSLETTER
   ========================================= */
.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(145deg, #121212 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.newsletter-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--white);
    margin: 15px 0 20px;
    line-height: 1.2;
}

.newsletter-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.newsletter-form {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.03);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}

.newsletter-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 20px;
    color: var(--white);
    font-size: 15px;
    outline: none;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.3);
}

.newsletter-form .btn-primary {
    background: #ceaa3f;
    color: var(--white);
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(206,170,63,0.25);
    white-space: nowrap;
}

.newsletter-form .btn-primary:hover {
    background: #e1bc53;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(206,170,63,0.35);
}

@media (max-width: 900px) {
    .newsletter-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .newsletter-form { flex-direction: column; background: transparent; border: none; padding: 0; gap: 10px; }
    .newsletter-form input[type="email"] { background: rgba(255,255,255,0.05); border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }
}

/* =========================================
   WOOCOMMERCE PAGE WRAPPER (cart, checkout, account)
   ========================================= */
.wc-page-hero {
    background: linear-gradient(135deg, #fbf7f0 0%, #f0e9d9 100%);
    padding: 40px 0 32px;
    border-bottom: 1px solid var(--border);
}
.wc-page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 40px);
    color: var(--charcoal);
    margin: 12px 0 0;
}
.wc-page-body {
    padding: 50px 0 80px;
}

/* ─── WooCommerce: Global Form Elements ─── */
.woocommerce form .form-row,
.woocommerce-page form .form-row { margin-bottom: 16px; }

.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 6px;
    display: block;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row textarea,
.woocommerce-page form .form-row select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce-page form .form-row input.input-text:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}

/* ─── WooCommerce: Buttons ─── */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce #respond input#submit,
.woocommerce #payment #place_order {
    background: var(--gold) !important;
    color: var(--white) !important;
    border: none !important;
    padding: 13px 28px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: 'Inter', sans-serif !important;
    letter-spacing: 0.03em !important;
    cursor: pointer !important;
    transition: background 0.2s, transform 0.15s !important;
    box-shadow: 0 4px 12px rgba(201,162,39,0.25) !important;
    text-decoration: none !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce #payment #place_order:hover {
    background: var(--gold-dark) !important;
    transform: translateY(-1px) !important;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt {
    background: var(--charcoal) !important;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
    background: #333 !important;
}

/* ─── WooCommerce: Notices ─── */
.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--gold) !important;
    background: #fffbec !important;
    color: var(--charcoal) !important;
}
.woocommerce-message::before,
.woocommerce-info::before { color: var(--gold) !important; }
.woocommerce-error { border-top-color: #c62828 !important; }

/* ─── WooCommerce: Cart Table ─── */
.woocommerce table.shop_table {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    overflow: hidden !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
}
.woocommerce table.shop_table th {
    background: var(--cream) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: var(--mid) !important;
    padding: 14px 18px !important;
    border-bottom: 1px solid var(--border) !important;
}
.woocommerce table.shop_table td {
    padding: 18px !important;
    border-bottom: 1px solid var(--border) !important;
    vertical-align: middle !important;
    font-size: 14px !important;
}
.woocommerce table.shop_table .product-name a {
    font-weight: 600;
    color: var(--charcoal);
}
.woocommerce table.shop_table .product-name a:hover { color: var(--gold); }
.woocommerce table.shop_table .amount { color: var(--gold); font-weight: 700; }

/* ─── Cart totals & checkout box ─── */
.woocommerce .cart_totals,
.woocommerce .checkout_coupon,
.woocommerce #order_review {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}
.woocommerce .cart_totals h2,
.woocommerce #order_review_heading {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--charcoal);
}
/* ─── WooCommerce: Page Layout (Cart / Checkout) ─── */
.wc-page-hero {
    padding: 30px 0 30px !important;
    background: var(--cream);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
}
.wc-page-hero .woocommerce-breadcrumb {
    justify-content: center;
    margin-bottom: 8px;
    font-size: 13px;
    opacity: 0.7;
}
.wc-page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 40px);
    color: var(--charcoal);
    margin: 0;
    line-height: 1.2;
}
.wc-page-body {
    background: var(--cream);
    padding: 0 0 80px !important;
}

/* ─── My Account nav ─── */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid var(--border);
}
.woocommerce-MyAccount-navigation ul li:last-child { border: none; }
.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    transition: background 0.15s, color 0.15s;
}
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--gold);
    color: var(--white);
}
.woocommerce-MyAccount-content {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

/* ─── WooCommerce: Payment box ─── */
#payment {
    background: var(--cream) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
}
#payment ul.payment_methods {
    border-bottom: 1px solid var(--border) !important;
}
#payment ul.payment_methods li label { cursor: pointer; }

/* ─── WooCommerce: Order review ─── */
.woocommerce-checkout-review-order-table .cart_item td {
    font-size: 14px;
    padding: 12px 16px !important;
}

/* =========================================
   SCROLL-IN ANIMATIONS
   ========================================= */
.mw-hidden {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.mw-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children in grid */
.why-grid .why-card:nth-child(2)       { transition-delay: 0.1s; }
.why-grid .why-card:nth-child(3)       { transition-delay: 0.2s; }
.why-grid .why-card:nth-child(4)       { transition-delay: 0.3s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.12s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.24s; }
.products-grid .card:nth-child(2)      { transition-delay: 0.08s; }
.products-grid .card:nth-child(3)      { transition-delay: 0.16s; }
.products-grid .card:nth-child(4)      { transition-delay: 0.24s; }

/* =========================================
   HEADER SCROLLED STATE
   ========================================= */
.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

/* =========================================
   ENHANCED FOOTER
   ========================================= */
.site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.55);
    padding: 60px 0 28px;
    font-size: 13px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
}
.footer-brand .logo-tagline {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-top: 4px;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 260px;
}
.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.35); font-size: 12px; }
.footer-bottom a { color: var(--gold); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    transition: border-color 0.2s, color 0.2s;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .footer-grid { grid-template-columns: 1fr; gap: 32px; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* =========================================
   WOOCOMMERCE: MY ACCOUNT LAYOUT
   ========================================= */
.woocommerce-account .woocommerce-MyAccount-navigation {
    float: left;
    width: 260px;
    margin-right: 40px;
}
.woocommerce-account .woocommerce-MyAccount-content {
    float: left;
    width: calc(100% - 300px);
}
.woocommerce-account .woocommerce::after {
    content: "";
    display: table;
    clear: both;
}
@media (max-width: 768px) {
    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        float: none;
        width: 100%;
        margin-right: 0;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation {
        margin-bottom: 30px;
    }
}

/* =========================================
   HEADER ANNOUNCEMENT DISMISS
   ========================================= */
.announcement-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}
#announcement-dismiss {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
#announcement-dismiss:hover { color: var(--white); }

/* =========================================
   PAGE TEMPLATES: ABOUT & CONTACT
   ========================================= */
.section-padding { padding: 100px 0; }
.container-narrow { max-width: 1000px; margin: 0 auto; }
.bg-cream { background: var(--cream); }

/* Global Hero Adjustment for Sub-pages */
.page-hero {
    position: relative;
    padding: 140px 0 100px;
    text-align: center;
    overflow: hidden;
    background-color: #fdfcf9;
}

.about-hero { 
    background-image: url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&q=80&w=1600'); 
    background-position: center;
}
.contact-hero { 
    background-image: url('https://images.unsplash.com/photo-1534536281715-e28d76689b4d?auto=format&fit=crop&q=80&w=1600'); 
    background-position: center;
}

/* Add specialized glass shade for sub-page heroes */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(253, 252, 249, 0.85); /* Champagne Mist */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

.page-hero .hero-inner {
    position: relative;
    z-index: 10;
}

.page-hero .hero-badge {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.45em;
    color: #b38b1a;
    font-weight: 900;
    margin-bottom: 30px;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--charcoal);
    font-weight: 700;
}

.page-hero h1 span {
    display: block;
    color: #b38b1a; /* Gold Accent */
}

.page-hero .hero-sub {
    font-size: 18px;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
    color: #444;
    font-weight: 500;
}

/* About Story */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.image-stack {
    position: relative;
    height: 500px;
}
.img-back {
    position: absolute;
    width: 80%; height: 80%;
    bottom: 0; left: 0;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.img-front {
    position: absolute;
    width: 70%; height: 75%;
    top: 0; right: 0;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 8px solid var(--white);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid var(--border);
    transition: transform 0.3s;
}
.value-card:hover { transform: translateY(-10px); }
.value-icon { font-size: 40px; margin-bottom: 20px; }
.value-card h3 { font-size: 18px; margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--mid); line-height: 1.6; }

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
}
.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.contact-item .icon {
    width: 44px; height: 44px;
    background: var(--cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; line-height: 1;
}
.contact-item strong { display: block; font-size: 15px; margin-bottom: 4px; }
.contact-item p { margin: 0; font-size: 14px; color: var(--mid); }
.contact-item a { color: var(--charcoal); text-decoration: none; }
.social-connect { margin-top: 50px; }
.social-links { display: flex; gap: 15px; margin-top: 12px; }
.social-links a { font-size: 13px; color: var(--gold); font-weight: 700; text-decoration: none; }

/* Form Panel */
.contact-form-panel {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}
.mw-contact-form .form-group { margin-bottom: 24px; }
.mw-contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: var(--mid);
}
.mw-contact-form input,
.mw-contact-form select,
.mw-contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}
.mw-contact-form input:focus,
.mw-contact-form select:focus,
.mw-contact-form textarea:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Responsive */
@media (max-width: 900px) {
    .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: 1fr; }
    .section-padding { padding: 60px 0; }
    .image-stack { height: 400px; }
    .contact-form-panel { padding: 30px; }
}

/* =========================================
   PROMOTIONS & CONTACT TOOLS
   ========================================= */

/* Marquee Bar */
.marquee-bar {
    background: var(--charcoal);
    color: var(--white);
    height: 40px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9999; /* Ultimate High */
    overflow: hidden;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 40s linear infinite;
}
.marquee-content span {
    padding-right: 50px;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-bar #announcement-dismiss {
    background: var(--charcoal);
    z-index: 10;
    position: absolute;
    right: 16px;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Header actions gap */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Header Phone Action */
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.2s;
    margin-right: 10px;
}
.header-phone:hover {
    background: var(--white);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
}
@media (max-width: 768px) {
    .header-phone span { display: none; }
    .header-phone { padding: 8px; margin-right: 0; }
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    color: #fff;
}

/* Hero Buffers */
.hero {
    padding-top: 100px;
    padding-bottom: 80px;
}
.page-hero {
    padding-top: 140px;
    padding-bottom: 100px;
}
}

/* Promo Popup Modal */
.promo-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.promo-modal.open {
    opacity: 1;
    visibility: visible;
}
.promo-overlay {
    position: absolute;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
}
.promo-content {
    position: relative;
    background: var(--white);
    width: 90%;
    max-width: 800px;
    border-radius: 24px;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}
.promo-modal.open .promo-content {
    transform: scale(1) translateY(0);
}
.promo-close {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--white);
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.promo-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}
.promo-img {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}
.promo-text {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.promo-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin: 15px 0;
}
.promo-text p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.6;
    margin-bottom: 25px;
}
.promo-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.promo-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
}
.promo-small {
    font-size: 11px !important;
    opacity: 0.6;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .promo-body { grid-template-columns: 1fr; }
    .promo-img { display: none; }
    .promo-text { padding: 40px 30px; text-align: center; }
    .promo-form { flex-direction: column; }
}

/* =========================================
   LOADING SPINNERS
   ========================================= */
.mw-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s ease-in-out infinite;
    vertical-align: middle;
}
.mw-spinner-small {
    width: 14px;
    height: 14px;
    border-width: 2px;
}
button:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =========================================
   SINGLE PRODUCT PAGE
   ========================================= */
.single-product-page {
    padding: 60px 0 100px;
    background: var(--white);
}

.sp-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
}

/* Sticky Image Gallery */
.sp-image {
    position: sticky;
    top: 80px;
}
.sp-main-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    background: var(--cream);
    object-fit: contain;
    aspect-ratio: 1/1;
}
.sp-gallery img {
    opacity: 0.6;
    transition: all 0.2s ease;
}
.sp-gallery img:hover {
    opacity: 1;
    border-color: var(--gold) !important;
    transform: translateY(-2px);
}

/* Product Info Block */
.sp-info {
    padding-top: 10px;
}

.sp-info h1 {
    line-height: 1.2;
}

.sp-info .price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--charcoal);
}

/* Custom Variation Select */
.sp-select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23333" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m6 9 6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    transition: border-color 0.2s;
}
.sp-select:focus {
    outline: none;
    border-color: var(--gold) !important;
}

/* Custom Addons Checkboxes */
.addons label {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 14px 18px;
    border-radius: 8px;
    transition: border-color 0.2s, background 0.2s;
}
.addons label:hover {
    border-color: var(--gold);
    background: var(--cream);
}
.addons input[type="checkbox"] {
    position: relative;
    top: 1px;
}

/* Custom Qty Control */
.sp-info .qty-control {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    height: 48px;
}
.sp-info .qty-minus, .sp-info .qty-plus {
    background: var(--cream);
    border: none;
    color: var(--charcoal);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
}
.sp-info .qty-minus:hover, .sp-info .qty-plus:hover {
    background: var(--gold);
    color: var(--white);
}

/* Product Actions */
.sp-info .actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.sp-info .btn-add-cart {
    background: var(--white);
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.sp-info .btn-add-cart:hover {
    background: var(--charcoal);
    color: var(--white);
}
.sp-info .btn-buy-now {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(201,162,39,0.3);
    transition: all 0.2s;
}
.sp-info .btn-buy-now:hover {
    background: #b8921e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,162,39,0.4);
}

@media (max-width: 900px) {
    .sp-grid { grid-template-columns: 1fr; gap: 40px; }
    .sp-image { position: relative; top: 0; }
    .sp-info .actions { grid-template-columns: 1fr; }
}

/* =========================================
   BLOCK CHECKOUT THEME SKIN
   ========================================= */
/* Text Inputs & Selects (More Compact) */
.wc-block-components-text-input input,
.wc-block-components-combobox-control input,
.wc-block-components-textarea textarea {
    padding: 24px 14px 8px !important;
    border: 1px solid #d4cbb8 !important;
    border-radius: 8px !important;
    background-color: var(--white) !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    min-height: 48px !important;
}

/* Fix for floating labels overlapping text */
.wc-block-components-text-input label {
    transform: translateY(-8px) scale(0.75) !important;
    left: 14px !important;
    top: 14px !important;
    position: absolute !important;
    pointer-events: none !important;
}

.wc-block-components-text-input input:placeholder-shown + label {
    transform: translateY(0) scale(1) !important;
}

.wc-block-components-text-input input:focus + label,
.wc-block-components-text-input input:not(:placeholder-shown) + label {
    transform: translateY(-12px) scale(0.75) !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-combobox-control input:focus,
.wc-block-components-textarea textarea:focus {
    outline: none !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1) !important;
}

/* Place Order Button & Wrapper */
.wc-block-components-checkout-place-order-button-container {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
}

.wc-block-components-checkout-place-order-button {
    background-color: var(--gold) !important;
    color: var(--white) !important;
    padding: 18px 40px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(201,162,39,0.3) !important;
    border: none !important;
    width: auto !important;
    min-width: 250px !important;
}

.wc-block-components-checkout-place-order-button:hover {
    background-color: #b8921e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(201, 162, 39, 0.4) !important;
}

/* Return to Cart Link Fix (Stacked) */
.wc-block-checkout__actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 30px !important;
    width: 100% !important;
}

.wc-block-components-checkout-return-to-cart-link {
    font-size: 14px !important;
    color: var(--mid) !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.wc-block-components-checkout-return-to-cart-link:hover {
    color: var(--gold) !important;
}

/* Space fixing on page body */
.wc-page-body {
    padding: 40px 0 100px !important;
    background: var(--cream) !important;
}

/* =========================================
   GLOBAL RESPONSIVE OVERHAUL (MOBILE-FIRST)
   ========================================= */

/* Tablets & Small Laptops (Under 1024px) */
@media (max-width: 1024px) {
    .cinema-hero {
        min-height: 600px;
    }
    .cinema-hero .hero-inner {
        padding: 80px 0;
    }
    .featured-products .product-grid,
    .related-products .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Phones & Smaller Tablets (Under 768px) */
@media (max-width: 768px) {
    
    /* 1. Cinema Hero Mobile - DENSE STYLE */
    .cinema-hero {
        min-height: auto;
        padding: 40px 0 40px; /* Much tighter top/bottom */
        background-image: none !important;
        background-color: #fdfcf9;
    }
    
    .hero-shade {
        display: none !important;
    }
    
    .hero-text-box {
        max-width: 100%;
        text-align: center;
        padding: 0 15px !important; /* Balanced side padding */
        margin-top: 0;
        color: #1a1a1a !important;
    }
    
    .hero-label {
        font-size: 10px;
        margin-bottom: 12px; /* Pull headline up */
        color: #b38b1a !important;
    }
    
    .cinema-hero h1 {
        font-size: 32px !important;
        margin-bottom: 16px; /* Pull paragraph up */
        line-height: 1.1;
    }

    .hero-text-box p {
        font-size: 15px !important;
        line-height: 1.5;
        margin-bottom: 25px; /* Pull buttons up */
    }
    
    .hero-btns {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px; /* Pull trust bar up */
    }
    
    .btn-gold-fill, .btn-outline-white {
        width: 100%;
        padding: 15px 30px;
    }

    /* 2. Interior Page Heroes */
    .page-hero {
        padding: 80px 0 60px;
    }
    .page-hero h1 {
        font-size: 34px !important;
    }

    /* 3. Global Grids & Sections - SINGLE COLUMN FOR IMPACT */
    .featured-products .product-grid,
    .related-products .product-grid,
    .products-grid,
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .categories-grid .category-card {
        aspect-ratio: 2.2/1 !important; /* Sleek Banner Shape */
    }

    .categories-grid .category-card-overlay {
        padding: 15px !important;
    }
    
    .card {
        padding: 20px;
    }

    .card .product-thumb {
        height: 280px !important; /* Larger branding area */
    }

    .card h3 {
        font-size: 18px !important;
    }

    .card .product-thumb img {
        padding: 0 !important;
    }

    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px !important;
    }
    
    .section-divider {
        margin-bottom: 30px;
    }

    /* 4. Newsletter Stacking */
    .newsletter-section .form-inline {
        flex-direction: column;
        gap: 15px;
    }
    .newsletter-section input {
        border-radius: 8px !important;
        text-align: center;
    }
    .newsletter-section .btn-subscribe {
        width: 100%;
        border-radius: 8px !important;
    }

    /* 5. Footer Adjustments */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .footer-brand, .footer-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-brand p {
        margin: 0 auto 16px;
        max-width: 300px;
    }
    .custom-logo-wrapper {
        width: 100%;
        text-align: center;
    }
    .custom-logo-wrapper img {
        display: block;
        margin: 0 auto;
        float: none;
    }
    .footer-col ul {
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-bottom {
        justify-content: center;
        align-items: center; /* CENTER CONTENT */
        text-align: center;
        flex-direction: column;
        gap: 15px;
        padding-top: 20px;
    }
    .site-footer {
        padding-bottom: 90px !important; /* Safety room for WhatsApp button */
    }

/* Narrowest Phones (Under 480px) */
@media (max-width: 480px) {
    .cinema-hero h1 {
        font-size: 32px !important;
    }
    .hero-sub {
        font-size: 15px !important;
    }
    .hero-trust-bar {
        justify-content: center;
        gap: 12px;
        padding-top: 20px;
        border-top: 1px solid rgba(0,0,0,0.08); /* Lighter divider */
    }
    .trust-pill {
        font-size: 9px;
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
}

/* =========================================
   MOBILE NAVIGATION & PHONE VISIBILITY
   ========================================= */

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
    z-index: 10001;
}

.mobile-nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .header-inner {
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        padding: 5px 0 !important;
    }
    
    .site-logo {
        max-width: 160px !important; /* Boosted for impact */
    }

    .main-logo {
        height: 40px !important; /* Larger branding */
        max-height: none !important;
    }
    
    .header-actions {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 8px !important; /* Tight spacing for fit */
        justify-content: flex-end;
    }

    .header-phone {
        width: auto !important;
        order: -1 !important; /* Move phone before icons */
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .header-phone-text {
        display: block !important;
        margin-left: 5px;
    }
    
    .phone-number {
        font-size: 11px !important; /* Small, elite font to fit on one row */
        font-weight: 700;
        white-space: nowrap;
    }
    
    .h-icon:nth-of-type(1) { order: 1; }
    .h-icon:nth-of-type(2) { order: 2; }
    .mobile-nav-toggle { 
        order: 3; /* Menu is always last */
        display: flex;
    }
}
    
    .phone-tagline {
        display: none !important; 
    }

    .mobile-nav-toggle { display: flex; }
    
    /* MINI CART DRAWER */
    #mini-cart {
        position: fixed;
        top: 0;
        right: -400px;
        width: 400px;
        height: 100vh;
        background: #fff;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 100000 !important; /* Above everything */
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        flex-direction: column;
    }

    #mini-cart-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.4);
        backdrop-filter: blur(4px);
        z-index: 99999 !important;
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        z-index: 10000;
        padding: 100px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: block !important;
    }
    
    .main-nav.active { right: 0; }
    
    .main-nav ul {
        flex-direction: column;
        gap: 25px;
    }
    
    .main-nav a {
        font-size: 18px !important;
        font-weight: 700;
    }
}

/* Toggle Animation */
.mobile-nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-nav-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================
   MODERN CHECKOUT STYLES (Shopify Style)
   ========================================= */
form.checkout.woocommerce-checkout {
    display: grid;
    grid-template-columns: 1fr 450px;
    grid-template-rows: max-content 1fr;
    column-gap: 40px;
    row-gap: 0;
    max-width: 1200px;
    margin: 40px auto;
    align-items: start;
}

/* Form Section (Left) */
form.checkout #customer_details {
    grid-column: 1;
    grid-row: 1 / span 2;
}
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
}

/* Order Review Section (Right) */
h3#order_review_heading {
    grid-column: 2;
    grid-row: 1;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin: 0;
    padding: 30px 30px 10px 30px;
    background: #fdfcf9;
    border: 1px solid rgba(201,162,39,0.3);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
}

.woocommerce-checkout .woocommerce-checkout-review-order {
    grid-column: 2;
    grid-row: 2;
    background: #fdfcf9;
    padding: 0 30px 30px 30px;
    border-radius: 0 0 12px 12px;
    border: 1px solid rgba(201,162,39,0.3);
    border-top: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    position: sticky;
    top: 100px;
}

@media (max-width: 900px) {
    form.checkout.woocommerce-checkout { 
        grid-template-columns: 1fr; 
        column-gap: 0;
        row-gap: 0;
    }
    form.checkout #customer_details { margin-bottom: 40px; }
    form.checkout #customer_details, 
    h3#order_review_heading, 
    .woocommerce-checkout .woocommerce-checkout-review-order { 
        grid-column: 1; 
        grid-row: auto; 
    }
}

/* Fix WooCommerce Form Rows (Inputs & Labels) */
.woocommerce form .woocommerce-billing-fields__field-wrapper,
.woocommerce form .woocommerce-additional-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.woocommerce form .form-row {
    padding: 0 !important;
    margin: 0 0 20px !important;
    float: none !important;
    display: block !important;
}

/* Default widths */
.woocommerce form .form-row-wide { width: 100% !important; }
.woocommerce form .form-row-first,
.woocommerce form .form-row-last { width: calc(50% - 10px) !important; }

/* Force specific logical groupings to 50% for compactness */
#billing_city_field,
#billing_state_field,
#shipping_city_field,
#shipping_state_field,
#billing_postcode_field,
#billing_phone_field,
#shipping_postcode_field {
    width: calc(50% - 10px) !important;
}

/* Stack on mobile */
@media (max-width: 600px) {
    .woocommerce form .form-row-first,
    .woocommerce form .form-row-last,
    #billing_city_field,
    #billing_state_field,
    #shipping_city_field,
    #shipping_state_field,
    #billing_postcode_field,
    #billing_phone_field,
    #shipping_postcode_field {
        width: 100% !important;
    }
}

.woocommerce form .form-row label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #444;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #1a1a1a;
    transition: all 0.2s;
    box-sizing: border-box;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
    border-color: #c9a227;
    box-shadow: 0 0 0 2px rgba(201,162,39,0.1);
    outline: none;
}

/* WooCommerce Select2 Overrides */
.select2-container .select2-selection--single {
    height: 50px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal !important;
    padding-left: 16px !important;
    color: #1a1a1a !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px !important;
}
.select2-container--focus .select2-selection--single {
    border-color: #c9a227 !important;
    box-shadow: 0 0 0 2px rgba(201,162,39,0.1) !important;
}

/* Tables */
.woocommerce-checkout-review-order table.shop_table {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    width: 100% !important;
    margin: 0 !important;
    background: transparent !important;
}
.woocommerce-checkout-review-order table.shop_table th,
.woocommerce-checkout-review-order table.shop_table td {
    border-top: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
    border-left: none !important;
    border-right: none !important;
    padding: 15px 0 !important;
    background: transparent !important;
}
.woocommerce-checkout-review-order table.shop_table tfoot th,
.woocommerce-checkout-review-order table.shop_table tfoot td {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}
.woocommerce-checkout-review-order table.shop_table tfoot .order-total td {
    font-size: 22px;
    color: #c9a227;
}

/* Payment Section */
#payment {
    background: transparent !important;
    border-radius: 0 !important;
}
#payment ul.payment_methods {
    border-bottom: 1px solid #e0e0e0 !important;
    padding-bottom: 20px !important;
}
#payment .place-order {
    padding: 20px 0 0 0 !important;
}
#payment #place_order {
    background: #c9a227;
    color: #fff;
    width: 100%;
    padding: 18px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 4px 15px rgba(201,162,39,0.3);
    transition: all 0.2s;
}
#payment #place_order:hover {
    background: #b38b1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,162,39,0.4);
}

/* Notices */
.woocommerce-NoticeGroup { margin-bottom: 20px; width: 100%; }
.woocommerce-error, .woocommerce-info, .woocommerce-message {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top-color: #c9a227 !important;
}

body.no-scroll {
    overflow: hidden;
    touch-action: none;
}

/* =========================================
   MOBILE UI FIXES
   ========================================= */
@media (max-width: 991px) {
    html,
    body {
        overflow-x: hidden;
    }

    .site-header,
    .header-inner,
    .header-actions {
        max-width: 100%;
        overflow-x: clip;
    }

    .header-inner {
        gap: 12px !important;
        padding: 12px 0 !important;
    }

    .site-logo {
        flex: 0 1 auto;
        min-width: 0;
        max-width: 140px !important;
    }

    .main-logo {
        max-width: 100%;
        height: auto !important;
        max-height: 38px !important;
    }

    .header-actions {
        flex: 0 1 auto;
        min-width: 0;
        margin-left: auto;
    }

    .header-actions .h-icon,
    .header-actions .mobile-nav-toggle,
    .header-actions .header-phone,
    .header-actions .mwlp-header-trigger {
        flex-shrink: 0;
    }

    .main-nav {
        right: -100vw !important;
        width: min(84vw, 320px) !important;
        max-width: min(84vw, 320px) !important;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 88px 24px 32px !important;
        box-sizing: border-box;
    }

    .main-nav.active {
        right: 0 !important;
    }

    #mini-cart-overlay {
        display: block !important;
        opacity: 0;
        pointer-events: none;
        z-index: 10002 !important;
    }

    #mini-cart-overlay.open {
        opacity: 1;
        pointer-events: auto;
    }

    #mini-cart {
        right: -100vw !important;
        width: min(92vw, 400px) !important;
        max-width: min(92vw, 400px) !important;
        z-index: 10003 !important;
    }

    #mini-cart.open {
        right: 0 !important;
    }
}

@media (max-width: 768px) {
    .cinema-hero {
        min-height: auto !important;
        padding: 20px 0 24px !important;
    }

    .cinema-hero .hero-inner {
        padding: 20px 0 18px !important;
    }

    .hero-text-box {
        padding: 0 10px !important;
    }

    .hero-label {
        margin-bottom: 10px !important;
    }

    .cinema-hero h1 {
        margin-bottom: 12px !important;
    }

    .hero-text-box p {
        margin-bottom: 18px !important;
    }

    .hero-btns {
        margin-bottom: 18px !important;
    }

    .hero-trust-bar {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding-top: 16px !important;
        gap: 10px !important;
        justify-content: center !important;
        align-items: center;
        flex-wrap: wrap;
        border-top: 1px solid rgba(0,0,0,0.08) !important;
    }

    .trust-pill {
        justify-content: center;
        text-align: center;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .header-inner {
        gap: 10px !important;
    }

    .site-logo {
        max-width: 118px !important;
    }

    .header-actions {
        gap: 6px !important;
    }

    .cinema-hero {
        padding: 14px 0 18px !important;
    }

    .cinema-hero .hero-inner {
        padding: 14px 0 12px !important;
    }

    .hero-trust-bar {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 8px !important;
    }

    .trust-pill {
        width: 100%;
        max-width: 240px;
        flex-direction: row;
        justify-content: center;
        gap: 6px;
        font-size: 10px;
    }

    .trust-pill span {
        flex: 0 0 auto;
    }
}