/* ==========================================================================
   BLISSORA - PURE DARK NOIR & ROYAL GOLD LUXURY STYLESHEET
   100% PERMANENT DARK THEME (NO WHITE THEME)
   ========================================================================== */

:root {
    --gold-primary: #D4AF37;
    --gold-hover: #E5C358;
    --gold-light: rgba(212, 175, 55, 0.12);
    --gold-border: rgba(212, 175, 55, 0.28);
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #A37C1E 100%);
    
    --bg-main: #0C0A09;           /* Deep Obsidian Noir */
    --card-bg: #161311;           /* Rich Smoky Dark Charcoal */
    --card-elevated: #1F1B18;
    --text-primary: #FAF6F0;      /* Luminous Champagne Ivory */
    --text-muted: #A39D94;        /* Soft Warm Greige */
    --border-soft: #24201C;
    --footer-bg: #070605;         /* True Midnight Black */
    
    --input-bg: #141210;
    --input-border: #332D27;
    --shadow-soft: 0 12px 35px rgba(0, 0, 0, 0.65);
    --shadow-hover: 0 18px 45px rgba(212, 175, 55, 0.22);
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background-color: var(--bg-main) !important;
    color: var(--text-primary) !important;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-logo-text {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

/* ================= 1. DARK GLASSMORPHIC NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 7%;
    background: rgba(12, 10, 9, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.35s ease-in-out;
}

.navbar.scrolled {
    background: rgba(12, 10, 9, 0.94);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
    padding: 14px 7%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.desktop-nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
}

.brand-logo-text {
    font-size: 1.8rem;
    letter-spacing: 3.5px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 700;
}

.brand-logo-text span {
    color: var(--gold-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #D1CBC3;
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold-primary);
}

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

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-input-box {
    position: relative;
}

.search-input-box input {
    background: rgba(26, 23, 20, 0.8);
    border: 1px solid var(--gold-border);
    padding: 9px 38px 9px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    width: 190px;
    outline: none;
    color: #FFFFFF;
    transition: width 0.3s, border-color 0.3s;
}

.search-input-box input:focus {
    width: 240px;
    border-color: var(--gold-primary);
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.3);
}

.search-input-box i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    pointer-events: none;
}

.cart-icon-btn {
    position: relative;
    cursor: pointer;
    font-size: 1.3rem;
    color: #FFFFFF;
    transition: color 0.2s;
}

.cart-icon-btn:hover {
    color: var(--gold-primary);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold-gradient);
    color: #0C0A09;
    font-size: 0.72rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.mobile-nav-wrap { display: none; }

/* ================= 2. FULLSCREEN HERO BANNER (CLEAN & CLICKABLE) ================= */
.hero-parallax-container {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.hero-slider-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    transition: transform 6s ease-out;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

/* Video banner styling: purely muted, background responsive, non-blocking click */
video.hero-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
    pointer-events: none;
}

.hero-dots {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
}

.hero-dot {
    width: 32px;
    height: 5px;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, width 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-dot.active {
    background: var(--gold-primary);
    width: 48px;
}

.btn-blissora-primary {
    background: var(--gold-gradient);
    color: #0C0A09;
    padding: 14px 38px;
    border-radius: 40px;
    border: none;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: transform 0.25s, box-shadow 0.25s;
}

.btn-blissora-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(212, 175, 55, 0.6);
}

.btn-blissora-outline {
    background: rgba(22, 19, 17, 0.6);
    border: 1px solid var(--gold-border);
    color: #FFFFFF;
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.25s;
}

.btn-blissora-outline:hover, .btn-blissora-outline.active-filter {
    background: var(--gold-primary);
    color: #0C0A09;
    border-color: var(--gold-primary);
}

/* ================= 3. 3D OVERLAPPING DARK SURFACE ================= */
.main-overlap-surface {
    position: relative;
    z-index: 10;
    background: var(--bg-main);
    border-radius: 36px 36px 0 0;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.9);
    margin-top: -36px;
    padding-top: 60px;
    border-top: 1px solid var(--border-soft);
}

/* BRAND PERKS BAR */
.brand-perks-bar {
    max-width: 1240px;
    margin: 0 auto 65px auto;
    padding: 0 6%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.perk-card {
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    padding: 22px 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, border-color 0.3s;
}

.perk-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
}

.perk-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    border: 1px solid var(--gold-border);
}

.perk-info h4 {
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.perk-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* SECTION HEADLINES */
.section-headline {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px auto;
    padding: 0 20px;
}

.section-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.section-headline h2 {
    font-size: 2.9rem;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.section-headline p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.6;
}

/* ================= 4. CATEGORIES GRID ================= */
.categories-container {
    max-width: 1300px;
    margin: 0 auto 80px auto;
    padding: 0 6%;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.category-tile {
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-tile:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-hover);
}

.category-tile-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #0E0C0A;
}

.category-tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-tile:hover .category-tile-media img {
    transform: scale(1.14);
}

.category-tile-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.category-tile-count {
    font-size: 0.78rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ================= 5. LUXURY BEAUTY PRODUCTS GRID ================= */
.products-wrapper {
    max-width: 1300px;
    margin: 0 auto 85px auto;
    padding: 0 6%;
}

.beauty-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.beauty-card {
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}

.beauty-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-hover);
}

.beauty-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.05;
    border-radius: 16px;
    overflow: hidden;
    background: #0E0C0A;
}

.beauty-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.beauty-card:hover .beauty-card-media img {
    transform: scale(1.16);
}

.badge-sale {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold-gradient);
    color: #0C0A09;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.badge-sold {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #EF4444;
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.beauty-card-info {
    padding: 16px 6px 6px 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.beauty-card-category {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gold-primary);
    font-weight: 700;
}

.beauty-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.beauty-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #F59E0B;
    margin-top: 2px;
}

.beauty-card-rating span {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-left: 4px;
}

.beauty-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 6px;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold-primary);
}

.old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.btn-card-add {
    width: 100%;
    margin-top: 12px;
    padding: 11px;
    border-radius: 30px;
    border: 1px solid var(--gold-primary);
    background: transparent;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.beauty-card:hover .btn-card-add {
    background: var(--gold-gradient);
    color: #0C0A09;
    border-color: transparent;
}

/* ================= 6. DIRECT WHATSAPP BANNER ================= */
.skin-expert-banner {
    max-width: 1240px;
    margin: 0 auto 90px auto;
    padding: 50px 6%;
    background: linear-gradient(135deg, #181512 0%, #241F1A 100%);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--gold-border);
}

.expert-left h3 {
    font-size: 2.4rem;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.expert-left p {
    color: #D1CBC3;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 600px;
}

.btn-expert-whatsapp {
    background: linear-gradient(140deg, #161311 0%, #221D18 100%);
    color: var(--gold-primary);
    border: 1px solid var(--gold-border);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 36px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.55);
    flex-shrink: 0;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.btn-expert-whatsapp i { color: var(--gold-primary); }

.btn-expert-whatsapp:hover {
    background: var(--gold-gradient);
    color: #0C0A09;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.btn-expert-whatsapp:hover i { color: #0C0A09; }

/* ================= 7. PRODUCT DETAIL PAGE (PDP) ================= */
.pdp-wrapper {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 6%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.pdp-gallery {
    display: flex;
    gap: 16px;
}

.pdp-thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 80px;
}

.pdp-thumb-item {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: var(--shadow-soft);
}

.pdp-thumb-item.active {
    border-color: var(--gold-primary);
}

.pdp-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdp-main-media {
    flex: 1;
    aspect-ratio: 1 / 1.1;
    border-radius: 20px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    position: relative;
    cursor: zoom-in;
}

.pdp-main-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdp-zoom-hint {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(12, 10, 9, 0.78);
    border: 1px solid var(--gold-border);
    color: var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    pointer-events: none;
}

.pdp-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pdp-sku {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
    text-transform: uppercase;
    font-weight: 700;
}

.pdp-title {
    font-size: 2.6rem;
    color: #FFFFFF;
    line-height: 1.2;
}

.pdp-price {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--gold-primary);
}

.skin-type-tag {
    background: var(--gold-light);
    color: var(--gold-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    width: fit-content;
    border: 1px solid var(--gold-border);
}

.qty-control-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 15px 0;
}

.qty-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--input-border);
    background: var(--card-elevated);
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}

.pdp-accordion {
    border-top: 1px solid var(--border-soft);
    margin-top: 25px;
}

.pdp-tab {
    border-bottom: 1px solid var(--border-soft);
}

.pdp-tab-header {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    color: #FFFFFF;
}

.pdp-tab-body {
    max-height: 0;
    overflow: hidden;
    padding-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    white-space: pre-line;
    transition: max-height 0.35s ease, padding-bottom 0.35s ease;
}

.pdp-tab.open .pdp-tab-body {
    max-height: 420px;
    padding-bottom: 16px;
}

.pdp-tab-header i {
    transition: transform 0.3s ease;
}

.pdp-tab.open .pdp-tab-header i {
    transform: rotate(180deg);
}

/* ================= 8. CHECKOUT VIEW ================= */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    max-width: 1240px;
    margin: 40px auto;
    padding: 0 6%;
}

.checkout-box {
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--input-border);
    background: var(--input-bg);
    color: #FFFFFF;
    outline: none;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ================= 9. SHOPPING BAG DRAWER ================= */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 440px;
    max-width: 100%;
    height: 100%;
    background: var(--card-bg);
    border-left: 1px solid var(--border-soft);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -15px 0 45px rgba(0,0,0,0.8);
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-header {
    padding: 22px;
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 22px;
}

.cart-drawer-footer {
    padding: 22px;
    border-top: 1px solid var(--border-soft);
    background: #0E0C0A;
}

/* MOBILE NAV DRAWER */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: var(--card-bg);
    border-right: 1px solid var(--border-soft);
    z-index: 2002;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: left 0.35s ease;
    box-shadow: 15px 0 45px rgba(0,0,0,0.8);
}

.mobile-nav-drawer.open {
    left: 0;
}

.mobile-nav-drawer a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
}

/* ================= 10. NOIR LUXURY FOOTER ================= */
.blissora-footer {
    background: var(--footer-bg);
    color: #FAF6F0;
    padding: 70px 7% 30px 7%;
    margin-top: 90px;
    border-top: 1px solid var(--gold-border);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 2rem;
    letter-spacing: 3px;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.footer-brand p {
    color: #A39D94;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 380px;
}

.footer-col h4 {
    font-size: 1.15rem;
    color: #FFFFFF;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    color: #A39D94;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--gold-primary);
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 30px;
    border: 1px solid var(--gold-border);
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    outline: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6E6861;
    font-size: 0.85rem;
}

/* ================= 11. RESPONSIVE BREAKPOINTS ================= */
@media (max-width: 1024px) {
    .desktop-nav-wrap { display: none !important; }
    .mobile-nav-wrap { display: flex !important; justify-content: space-between; align-items: center; width: 100%; }
    .mobile-hamburger-btn { background: none; border: none; font-size: 1.5rem; color: #FFFFFF; cursor: pointer; }
    .brand-perks-bar { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .beauty-products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
    .pdp-wrapper, .checkout-grid { grid-template-columns: 1fr; }
    .skin-expert-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-perks-bar { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .footer-top-grid { grid-template-columns: 1fr; }
    .pdp-gallery { flex-direction: column-reverse; }
    .pdp-thumbs { flex-direction: row; width: 100%; overflow-x: auto; }
}

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: var(--gold-gradient);
    color: #0C0A09;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 8px 16px;
}

body.has-announcement .navbar { top: 34px; }

/* ---------- PRODUCT CARD ZOOM AFFORDANCE ---------- */
.beauty-card-media img {
    transform-origin: center;
}

.beauty-card.is-sold-out .beauty-card-media img {
    filter: grayscale(0.55) brightness(0.8);
}

.btn-card-add:disabled,
.btn-blissora-primary:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* ---------- IMAGE LIGHTBOX ---------- */
.img-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(6, 5, 4, 0.96);
    z-index: 4000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    touch-action: none;
}

.img-lightbox.open { display: flex; }

.lb-stage {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lb-stage img {
    max-width: 92vw;
    max-height: 72vh;
    border-radius: 14px;
    transition: transform 0.18s ease-out;
    transform-origin: center center;
    user-select: none;
    -webkit-user-drag: none;
    cursor: zoom-in;
}

.lb-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
    background: rgba(22, 19, 17, 0.9);
    color: #FFFFFF;
    font-size: 1.2rem;
    cursor: pointer;
}

.lb-controls {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    gap: 10px;
}

.lb-controls button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
    background: rgba(22, 19, 17, 0.9);
    color: var(--gold-primary);
    font-size: 1rem;
    cursor: pointer;
}

.lb-thumbs {
    display: flex;
    gap: 10px;
    padding: 16px;
    overflow-x: auto;
    max-width: 100%;
}

.lb-thumbs img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.lb-thumbs img.active {
    border-color: var(--gold-primary);
}

/* ---------- SIMILAR PRODUCTS ---------- */
.similar-wrapper {
    border-top: 1px solid var(--border-soft);
    padding-top: 55px;
    margin-top: 20px;
}

.similar-wrapper .section-headline {
    margin-bottom: 30px;
}

.similar-wrapper .section-headline h2 {
    font-size: 2.2rem;
}

/* ---------- FORM VALIDATION STATES ---------- */
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
}

.field-error {
    display: none;
    margin-top: 6px;
    font-size: 0.8rem;
    color: #F87171;
    font-weight: 600;
}

/* ---------- TOAST ---------- */
.blissora-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translate(-50%, 30px);
    background: var(--card-elevated);
    border: 1px solid var(--gold-border);
    color: var(--text-primary);
    padding: 13px 22px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    max-width: 90vw;
    text-align: center;
}

.blissora-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

/* ---------- MOBILE SEARCH IN DRAWER ---------- */
.mobile-search-box {
    position: relative;
}

.mobile-search-box input {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--gold-border);
    padding: 10px 38px 10px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #FFFFFF;
    outline: none;
}

.mobile-search-box i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    pointer-events: none;
}

/* ---------- FOCUS VISIBILITY ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

/* ---------- MOBILE REFINEMENTS ---------- */
@media (max-width: 600px) {
    .perk-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 12px;
        border-radius: 14px;
    }

    .perk-icon-wrap {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .perk-info h4 { font-size: 0.82rem; line-height: 1.25; }
    .perk-info p  { font-size: 0.7rem; line-height: 1.3; }

    .section-headline h2 { font-size: 2rem; }
    .similar-wrapper .section-headline h2 { font-size: 1.7rem; }

    .hero-dots { bottom: 42px; }

    .lb-stage img { max-height: 62vh; }
    .lb-close, .lb-controls button { width: 38px; height: 38px; }

    .pdp-zoom-hint { font-size: 0.68rem; padding: 5px 10px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ================= 13. FLOATING WHATSAPP BUTTON ================= */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.wa-float-btn {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
    background: linear-gradient(140deg, #161311 0%, #221D18 100%);
    color: var(--gold-primary);
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.wa-float-btn:hover {
    transform: translateY(-3px);
    border-color: var(--gold-primary);
    color: var(--gold-hover);
}

.wa-float-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
    animation: waPulse 2.8s ease-out infinite;
    pointer-events: none;
}

@keyframes waPulse {
    0%   { transform: scale(0.92); opacity: 0.85; }
    70%  { transform: scale(1.25); opacity: 0; }
    100% { transform: scale(1.25); opacity: 0; }
}

.wa-float.open .wa-float-btn i::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.wa-float-card {
    width: 290px;
    max-width: calc(100vw - 44px);
    background: var(--card-bg);
    border: 1px solid var(--gold-border);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(0.96);
    transform-origin: bottom right;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
}

.wa-float.open .wa-float-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-float-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.wa-float-card-head i {
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
}

.wa-float-card-text {
    font-size: 0.87rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.wa-float-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    background: var(--gold-gradient);
    color: #0C0A09;
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.6px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.32);
    transition: transform 0.2s ease;
}

.wa-float-card-btn:hover { transform: translateY(-2px); }

.wa-float-card-note {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 0.72rem;
    color: var(--text-muted);
}
/* Hero Banner Left / Right Rotation Arrows */
.hero-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(12, 10, 9, 0.65);
    border: 1px solid var(--gold-border);
    color: var(--gold-primary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}
/* ================= HERO SLIDES & ROTATION ARROWS FIX ================= */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    cursor: pointer;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(12, 10, 9, 0.75);
    border: 1px solid var(--gold-border);
    color: var(--gold-primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100 !important;
    pointer-events: auto !important;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
}

/* Icon click block na kare */
.hero-nav-arrow * {
    pointer-events: none !important;
}

.hero-nav-arrow:hover {
    background: var(--gold-primary);
    color: #0C0A09;
    border-color: var(--gold-primary);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav-arrow.prev { left: 24px; }
.hero-nav-arrow.next { right: 24px; }

@media (max-width: 600px) {
    .hero-nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .hero-nav-arrow.prev { left: 12px; }
    .hero-nav-arrow.next { right: 12px; }
}

@media (max-width: 600px) {
    .wa-float { right: 16px; bottom: 16px; }
    .wa-float-btn { width: 52px; height: 52px; font-size: 1.4rem; }
    .blissora-toast { bottom: 88px; }
}