/* ==========================================================================
   MABRI BY NITYA - 10X LUXURY MINIMALIST & ANIMATED STYLESHEET
   Airy, Modern, Editorial & Mobile-First High-Fashion Experience
   ========================================================================== */

/* --- Design Tokens & Theme Engine --- */
:root {
    --bg-body: #FAF8F5;
    --bg-card: #FFFFFF;
    --bg-surface: #F6EFEA;
    --bg-warm: #FBF4EE;
    --bg-dark: #1E1715;
    --bg-cream-silk: #FDFBF8;
    
    --primary: #943A2C;
    --primary-dark: #782D21;
    --primary-light: #F8EDE9;
    --primary-gradient: linear-gradient(135deg, #9C3D2F 0%, #7E2F23 100%);
    --primary-glow: rgba(148, 58, 44, 0.25);
    
    --accent-gold: #C29A38;
    --accent-gold-light: #FDF8ED;
    --accent-gold-gradient: linear-gradient(135deg, #C29A38 0%, #E8CA7A 50%, #C29A38 100%);
    --accent-rose: #E8B4AC;
    
    --text-main: #241E1C;
    --text-muted: #6E635D;
    --text-light: #A0948E;
    --text-inverse: #FAF8F5;
    
    --border-hairline: rgba(36, 30, 28, 0.07);
    --border-color: #EAE1D8;
    --border-hover: #D4C3B5;
    
    --shadow-subtle: 0 4px 20px rgba(36, 30, 28, 0.03);
    --shadow-card: 0 10px 30px -5px rgba(36, 30, 28, 0.05);
    --shadow-hover: 0 20px 45px -10px rgba(148, 58, 44, 0.12);
    --shadow-drawer: -15px 0 50px rgba(0, 0, 0, 0.16);
    --shadow-modal: 0 30px 70px rgba(0, 0, 0, 0.2);
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-script: 'Alex Brush', cursive, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.68;
    overflow-x: hidden;
    padding-bottom: 76px; /* Space for floating mobile bottom nav */
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
    background: none;
    -webkit-tap-highlight-color: transparent;
}

button:active {
    transform: scale(0.96);
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4, .serif-font {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-main);
    letter-spacing: -0.015em;
}

.script-text {
    font-family: var(--font-script);
    font-weight: 400;
    color: var(--primary);
}

.section-title {
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 0.98rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* --- Scroll Reveal Animations --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* --- Top Announcement Bar --- */
.announcement-bar {
    background: var(--bg-dark);
    color: var(--bg-warm);
    font-size: 0.8rem;
    padding: 10px 16px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.06em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 101;
}

.announcement-bar span.highlight {
    color: var(--accent-gold);
    font-weight: 600;
}

/* --- Header / Sticky Navbar --- */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-hairline);
    z-index: 100;
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* --- Animated Hamburger / Cross Menu Button --- */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    gap: 5px;
    border-radius: var(--radius-full);
    background: #fff;
    border: 1px solid var(--border-hairline);
    cursor: pointer;
    transition: var(--transition-spring);
    box-shadow: var(--shadow-subtle);
}

.menu-toggle:hover {
    background: var(--primary-light);
    border-color: var(--accent-rose);
}

.menu-toggle .bar {
    width: 20px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, background 0.3s ease;
    transform-origin: center;
}

.menu-toggle.open .bar-1 {
    transform: translateY(7px) rotate(45deg);
    background: var(--primary);
}

.menu-toggle.open .bar-2 {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.open .bar-3 {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--primary);
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-sun {
    font-size: 1rem;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 2px;
    filter: drop-shadow(0 0 5px rgba(194, 154, 56, 0.4));
    animation: sparkleSpin 8s linear infinite;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: var(--text-main);
    text-transform: uppercase;
    line-height: 1;
}

.brand-sub {
    font-size: 0.62rem;
    letter-spacing: 0.38em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 3px;
    font-weight: 600;
}

/* Desktop Navigation */
.desktop-nav .nav-menu {
    display: none;
    align-items: center;
    gap: 34px;
    list-style: none;
}

@media (min-width: 992px) {
    .desktop-nav .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.02em;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

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

.nav-link .badge-hot {
    background: var(--primary);
    color: #fff;
    font-size: 0.62rem;
    padding: 2px 7px;
    border-radius: var(--radius-full);
    margin-left: 4px;
    vertical-align: middle;
}

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

.icon-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--text-main);
    position: relative;
    transition: var(--transition-spring);
    background: #fff;
    border: 1px solid var(--border-hairline);
    box-shadow: var(--shadow-subtle);
}

.icon-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--accent-rose);
    transform: translateY(-2px);
}

.icon-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #fff;
    animation: badgePop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes badgePop {
    0% { transform: scale(0.5); }
    100% { transform: scale(1); }
}

/* --- Slide-In Luxury Mobile Navigation Drawer --- */
.mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(30, 23, 21, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 210;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 86%;
    max-width: 350px;
    background: var(--bg-body);
    z-index: 220;
    box-shadow: var(--shadow-drawer);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border-color);
}

.mobile-nav-drawer.active {
    transform: translateX(0);
}

.mobile-drawer-header {
    padding: 22px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-hairline);
    background: #fff;
}

.drawer-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-body);
    color: var(--text-main);
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid var(--border-hairline);
}

.drawer-close-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.mobile-drawer-body {
    padding: 22px 20px;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mobile-drawer-tagline {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.mobile-drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.mobile-drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid var(--border-hairline);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
}

.mobile-drawer-link:hover, .mobile-drawer-link:active {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--accent-rose);
    transform: translateX(4px);
}

.mobile-drawer-link .link-icon {
    font-size: 1.15rem;
}

.mobile-drawer-link .link-arrow {
    margin-left: auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

.mobile-drawer-link .link-badge {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: var(--radius-full);
    background: var(--bg-warm);
    color: var(--primary);
    border: 1px solid var(--border-hairline);
}

.mobile-drawer-link .link-badge.hot {
    background: var(--primary);
    color: #fff;
    border: none;
}

.mobile-drawer-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF3ED 100%);
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-md);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow-subtle);
}

.drawer-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.drawer-card-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 6px;
}

.mobile-drawer-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border-hairline);
    background: #fff;
    text-align: center;
}

.drawer-perk {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold);
}

/* ==========================================================================
   --- 10X ELEVATED & ANIMATED EDITORIAL HERO SECTION ---
   ========================================================================== */
.hero-section {
    padding: 16px 0 40px 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 30px 0 60px 0;
    }
}

/* Ambient Radial Glow */
.hero-ambient-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(232, 180, 172, 0.4) 0%, rgba(194, 154, 56, 0.14) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(50px);
    animation: auraPulse 6s ease-in-out infinite alternate;
}

@keyframes auraPulse {
    0% { transform: translateX(-50%) scale(0.95); opacity: 0.8; }
    100% { transform: translateX(-50%) scale(1.05); opacity: 1; }
}

.hero-card {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.98) 0%, rgba(253, 249, 245, 0.95) 45%, rgba(247, 238, 230, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(236, 226, 218, 0.9);
    padding: 24px 16px 20px 16px;
    position: relative;
    box-shadow: 0 20px 50px rgba(74, 45, 38, 0.06);
    overflow: hidden;
    z-index: 1;
}

@media (min-width: 640px) {
    .hero-card {
        padding: 36px 30px;
    }
}

@media (min-width: 992px) {
    .hero-card {
        padding: 56px 50px;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 50px;
    }
}

/* Badge with Animated Sparkle */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(148, 58, 44, 0.07);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: var(--radius-full);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    border: 1px solid rgba(148, 58, 44, 0.16);
    box-shadow: 0 2px 10px rgba(148, 58, 44, 0.05);
}

.badge-sparkle {
    font-size: 0.85rem;
    color: var(--accent-gold);
    display: inline-block;
    animation: sparkleSpin 4s linear infinite;
}

@keyframes sparkleSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.25); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Hero Typography */
.hero-title {
    font-size: clamp(2.35rem, 6.2vw, 4.3rem);
    line-height: 1.06;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.hero-signature {
    font-style: italic;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #943A2C 0%, #D47B6A 50%, #943A2C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-desc {
    font-size: clamp(0.92rem, 2vw, 1.08rem);
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 22px;
    font-weight: 400;
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-btn-main {
    padding: 14px 28px;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(148, 58, 44, 0.28);
    position: relative;
    overflow: hidden;
}

.hero-btn-main::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: rotate(30deg);
    animation: btnShimmer 4s infinite;
}

@keyframes btnShimmer {
    0% { left: -60%; }
    25%, 100% { left: 140%; }
}

.hero-btn-secondary {
    padding: 14px 24px;
    font-size: 0.95rem;
    background: #fff;
    border: 1px solid var(--border-hairline);
}

/* Mobile Quick-Category Story Circles */
.hero-story-bubbles {
    display: flex;
    align-items: center;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 2px 14px 2px;
    margin-bottom: 18px;
    scrollbar-width: none;
}

.hero-story-bubbles::-webkit-scrollbar {
    display: none;
}

.story-bubble-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition-spring);
}

.story-bubble-item:hover, .story-bubble-item:active {
    transform: translateY(-4px) scale(1.04);
}

.story-circle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--accent-rose) 0%, var(--primary) 100%);
    box-shadow: 0 4px 14px rgba(148, 58, 44, 0.16);
    position: relative;
}

.story-circle.ring-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #F5D78A 100%);
}

.story-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.story-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.02em;
}

.story-price {
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: -3px;
}

@media (min-width: 992px) {
    .hero-story-bubbles {
        display: none;
    }
}

/* Trust Highlight Bar */
.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid rgba(236, 226, 218, 0.9);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-icon {
    font-size: 0.95rem;
}

/* --- Hero Interactive Showcase Carousel (Right Column) --- */
.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.showcase-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(44, 36, 32, 0.12);
    background: #fff;
    border: 4px solid #fff;
    touch-action: pan-y;
}

.showcase-slides {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

@media (min-width: 640px) {
    .showcase-slides {
        height: 430px;
    }
}

.showcase-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

.showcase-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, transparent 40%, rgba(30, 23, 21, 0.75) 100%);
    pointer-events: none;
}

.slide-badge-top {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(30, 23, 21, 0.78);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-info-card {
    position: absolute;
    bottom: 46px;
    left: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 2px;
}

.slide-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slide-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
}

.slide-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Floating Glass Badges on Showcase Frame */
.hero-floating-pill {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-hairline);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    animation: floatAnim 4s ease-in-out infinite;
}

.hero-floating-pill.pill-top-right {
    top: 14px;
    right: -10px;
    animation-delay: 0.6s;
}

.hero-floating-pill.pill-bottom-left {
    bottom: 58px;
    left: -10px;
    animation-delay: 1.6s;
}

@media (max-width: 640px) {
    .hero-floating-pill.pill-top-right {
        right: 8px;
        top: 8px;
    }
    .hero-floating-pill.pill-bottom-left {
        display: none;
    }
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-7px); }
}

.pill-sparkle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.pill-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
}

.pill-val {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

/* Carousel Nav Controls */
.carousel-nav-bar {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 15;
}

.carousel-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-hairline);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.carousel-arrow:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.carousel-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-dots .dot.active {
    width: 24px;
    background: var(--primary);
    border-color: var(--primary);
}

/* ==========================================================================
   --- INFINITE LUXURY MARQUEE TICKER RIBBON ---
   ========================================================================== */
.marquee-ribbon {
    background: var(--bg-dark);
    color: var(--bg-warm);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    animation: marqueeGlide 22s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.marquee-item span.gold-icon {
    color: var(--accent-gold);
    font-size: 0.95rem;
}

@keyframes marqueeGlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   --- CATEGORY FILTERS & SEARCH RIBBON ---
   ========================================================================== */
.catalog-header-section {
    padding: 40px 0 20px 0;
}

.filter-bar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-subtle);
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .filter-bar-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.category-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.category-pills::-webkit-scrollbar {
    display: none;
}

.category-pill {
    padding: 9px 18px;
    border-radius: var(--radius-full);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-body);
    border: 1px solid transparent;
    white-space: nowrap;
    transition: var(--transition);
}

.category-pill:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.category-pill.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(148, 58, 44, 0.25);
}

.filter-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    min-width: 220px;
    flex: 1;
}

.search-box input {
    width: 100%;
    padding: 9px 16px 9px 38px;
    border-radius: var(--radius-full);
    background: var(--bg-body);
    border: 1px solid var(--border-hairline);
    font-size: 0.88rem;
    color: var(--text-main);
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(148, 58, 44, 0.1);
}

.search-box svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.sort-select {
    padding: 9px 16px;
    border-radius: var(--radius-full);
    background: var(--bg-body);
    border: 1px solid var(--border-hairline);
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
}

/* ==========================================================================
   --- TACTILE & MINIMALIST PRODUCT CARDS ---
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.product-card {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-hairline);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-subtle);
}

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

.card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-surface);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: var(--radius-full);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

/* Wishlist Heart with Spring Burst */
.btn-wishlist-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-spring);
    z-index: 2;
}

.btn-wishlist-toggle:hover, .btn-wishlist-toggle.active {
    background: #fff;
    color: #E63946;
    transform: scale(1.12);
}

.btn-wishlist-toggle.burst-anim {
    animation: heartBurst 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes heartBurst {
    0% { transform: scale(1); }
    50% { transform: scale(1.35); }
    100% { transform: scale(1.12); }
}

.btn-wishlist-toggle.active svg {
    fill: #E63946;
}

.quick-view-overlay-btn {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translate(-50%, 15px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    color: var(--text-main);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: var(--shadow-card);
}

.product-card:hover .quick-view-overlay-btn {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .card-content {
        padding: 20px;
    }
}

.card-category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 3px;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-main);
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.5em;
}

.card-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.72rem;
}

.card-pricing-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 14px;
}

.price-current {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.price-original {
    font-size: 0.88rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-discount {
    font-size: 0.72rem;
    font-weight: 700;
    color: #2E7D32;
    background: #E8F5E9;
    padding: 2px 6px;
    border-radius: 4px;
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.btn-add-bag {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-full);
    font-size: 0.86rem;
    font-weight: 600;
    background: var(--bg-surface);
    color: var(--text-main);
    border: 1px solid var(--border-hairline);
    transition: var(--transition-spring);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-bag:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ==========================================================================
   --- BUILD YOUR OWN HAMPER 2.0 VISUALIZER ---
   ========================================================================== */
.hamper-builder-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-warm) 100%);
    border-top: 1px solid var(--border-hairline);
    border-bottom: 1px solid var(--border-hairline);
}

.builder-container {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-hairline);
    box-shadow: var(--shadow-card);
    padding: 28px 18px;
}

@media (min-width: 768px) {
    .builder-container {
        padding: 50px 40px;
    }
}

.builder-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

@media (min-width: 992px) {
    .builder-layout {
        grid-template-columns: 1.4fr 0.8fr;
        gap: 50px;
    }
}

.builder-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.builder-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

@media (min-width: 576px) {
    .builder-options-grid.items-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.builder-box-card, .builder-item-card {
    border: 2px solid var(--border-hairline);
    border-radius: var(--radius-md);
    padding: 12px;
    text-align: center;
    cursor: pointer;
    background: var(--bg-body);
    transition: var(--transition);
    position: relative;
}

.builder-box-card.selected, .builder-item-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.builder-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
}

.builder-card-name {
    font-size: 0.84rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.2;
}

.builder-card-price {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
}

.card-check-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border-hairline);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: transparent;
}

.builder-box-card.selected .card-check-icon,
.builder-item-card.selected .card-check-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Hamper Summary Box */
.hamper-summary-card {
    background: var(--bg-warm);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-hairline);
    padding: 24px;
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hamper-preview-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 6px;
}

.hamper-item-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-bottom: 6px;
    border-bottom: 1px dashed var(--border-color);
}

.hamper-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 10px;
    border-top: 2px solid var(--border-color);
}

.hamper-total-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

/* ==========================================================================
   --- BRAND STORY, REVIEWS & INSTAGRAM ---
   ========================================================================== */
.brand-story-section {
    padding: 70px 0;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.value-card {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-hairline);
    padding: 36px 24px;
    transition: var(--transition-spring);
    box-shadow: var(--shadow-subtle);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent-rose);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.value-title {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.value-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 60px 0;
    background: var(--bg-warm);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-hairline);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-subtle);
}

.review-card .quote-text {
    font-size: 0.95rem;
    color: var(--text-main);
    font-style: italic;
    flex-grow: 1;
    line-height: 1.6;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.reviewer-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.verified-badge {
    font-size: 0.72rem;
    color: #2E7D32;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Instagram Showcase */
.instagram-section {
    padding: 60px 0;
    text-align: center;
}

.insta-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .insta-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

.insta-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-subtle);
}

.insta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 23, 21, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: var(--transition);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover .insta-img {
    transform: scale(1.08);
}

/* ==========================================================================
   --- FOOTER ---
   ========================================================================== */
.site-footer {
    background: var(--bg-dark);
    color: #ECE5DE;
    padding: 60px 0 30px 0;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

.footer-brand .brand-name {
    color: #FAF8F5;
    font-size: 2rem;
}

.footer-brand .brand-sub {
    color: var(--accent-rose);
}

.footer-desc {
    color: #A89D97;
    font-size: 0.9rem;
    margin-top: 14px;
    max-width: 360px;
    line-height: 1.6;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #FAF8F5;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: #A89D97;
}

.footer-links a:hover {
    color: #FAF8F5;
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.82rem;
    color: #8C807A;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

/* ==========================================================================
   --- SLIDE-OUT CART & WISHLIST DRAWERS ---
   ========================================================================== */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 23, 21, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.cart-drawer, .wishlist-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 440px;
    background: #fff;
    z-index: 210;
    box-shadow: var(--shadow-drawer);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active, .wishlist-drawer.active {
    transform: translateX(0);
}

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

.drawer-title {
    font-size: 1.4rem;
    font-weight: 600;
}

.drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.drawer-close:hover {
    background: var(--bg-body);
    color: var(--text-main);
}

/* Free Shipping Progress Meter */
.shipping-meter-box {
    padding: 14px 20px;
    background: var(--bg-warm);
    border-bottom: 1px solid var(--border-hairline);
}

.meter-text {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meter-bar {
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: var(--primary);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.drawer-body {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item-card {
    display: flex;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-hairline);
}

.cart-item-img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--bg-surface);
}

.cart-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-name {
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-main);
}

.cart-item-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
}

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-hairline);
    border-radius: var(--radius-full);
    padding: 2px 6px;
    background: var(--bg-body);
    gap: 8px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.qty-number {
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 16px;
    text-align: center;
}

.btn-remove-item {
    color: var(--text-light);
    font-size: 0.75rem;
    margin-left: auto;
    transition: var(--transition);
}

.btn-remove-item:hover {
    color: #E63946;
}

.drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--border-hairline);
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Coupon Box */
.coupon-input-group {
    display: flex;
    gap: 8px;
}

.coupon-input-group input {
    flex-grow: 1;
    padding: 9px 14px;
    border-radius: var(--radius-full);
    background: var(--bg-body);
    border: 1px solid var(--border-hairline);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.coupon-input-group button {
    padding: 9px 16px;
    border-radius: var(--radius-full);
    background: var(--text-main);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
}

.coupon-applied-tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #E8F5E9;
    color: #2E7D32;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
}

.summary-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.9rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
}

.summary-row.total-row {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    border-top: 1px solid var(--border-hairline);
    padding-top: 8px;
}

/* ==========================================================================
   --- MODALS (QUICK VIEW, CHECKOUT) ---
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 23, 21, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #fff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-modal);
    position: relative;
    transform: scale(0.95) translateY(10px);
    transition: var(--transition);
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-body);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.quick-view-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
}

@media (min-width: 640px) {
    .quick-view-grid {
        grid-template-columns: 1fr 1fr;
        padding: 32px;
    }
}

.quick-view-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: var(--shadow-card);
}

.highlights-list {
    list-style: none;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlights-list li svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Checkout Form */
.checkout-modal-content {
    padding: 30px;
}

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

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

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: var(--bg-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--primary);
    background: #fff;
}

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

/* ==========================================================================
   --- FLOATING MOBILE BOTTOM NAVIGATION BAR ---
   ========================================================================== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-hairline);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
    z-index: 99;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

@media (min-width: 992px) {
    .mobile-bottom-nav {
        display: none;
    }
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 4px 8px;
    transition: var(--transition-spring);
}

.mobile-nav-item.active, .mobile-nav-item:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.mobile-nav-badge {
    position: absolute;
    top: 0;
    right: 6px;
    background: var(--primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   --- FLOATING WHATSAPP CONCIERGE BUTTON ---
   ========================================================================== */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 86px;
    right: 18px;
    background: #25D366;
    color: #fff;
    padding: 11px 18px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
    z-index: 95;
    transition: var(--transition-spring);
}

.floating-whatsapp-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.45);
    color: #fff;
}

.whatsapp-presence-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
    animation: presencePulse 1.8s infinite;
}

@keyframes presencePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

@media (min-width: 992px) {
    .floating-whatsapp-btn {
        bottom: 24px;
        right: 24px;
    }
}

/* ==========================================================================
   --- TOAST NOTIFICATIONS & CONFETTI ---
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 400;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

@media (min-width: 992px) {
    .toast-container {
        bottom: 30px;
    }
}

.toast {
    background: var(--bg-dark);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-modal);
    animation: toastSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    pointer-events: auto;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.toast.removing {
    animation: toastSlideOut 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastSlideOut {
    to {
        opacity: 0;
        transform: translateY(10px) scale(0.9);
    }
}

/* Confetti Sparkle Particle */
.confetti-sparkle {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: confettiBurst 1s ease-out forwards;
}

@keyframes confettiBurst {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0);
    }
}

/* General Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition-spring);
    text-align: center;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 8px 25px rgba(148, 58, 44, 0.28);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #B24B3B 0%, #943A2C 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(148, 58, 44, 0.38);
    color: #fff;
}

.btn-secondary {
    background: #fff;
    color: var(--text-main);
    border: 1px solid var(--border-hairline);
    box-shadow: var(--shadow-subtle);
}

.btn-secondary:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--accent-rose);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    color: #fff;
    transform: translateY(-2px);
}
