/* ============================================
   MAHOVIAN — Luxury Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --espresso: #2B1D17;
    --espresso-light: #3D2B22;
    --espresso-dark: #1A100C;
    --gold: #C8A96B;
    --gold-light: #D4BA82;
    --gold-dark: #A8894E;
    --gold-shimmer: linear-gradient(135deg, #C8A96B 0%, #E8D5A3 25%, #C8A96B 50%, #A8894E 75%, #C8A96B 100%);
    --ivory: #F8F4EC;
    --ivory-dark: #EDE8DC;
    --ivory-light: #FDFCF9;
    --white: #FFFFFF;
    --text-dark: #2B1D17;
    --text-body: #5C4A3D;
    --text-muted: #8B7B6E;
    --shadow-sm: 0 2px 8px rgba(43, 29, 23, 0.06);
    --shadow-md: 0 4px 20px rgba(43, 29, 23, 0.08);
    --shadow-lg: 0 8px 40px rgba(43, 29, 23, 0.12);
    --shadow-gold: 0 4px 20px rgba(200, 169, 107, 0.25);
    --shadow-gold-lg: 0 8px 40px rgba(200, 169, 107, 0.35);
    --glass-bg: rgba(248, 244, 236, 0.75);
    --glass-border: rgba(200, 169, 107, 0.2);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-luxury: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Global Reset Enhancements --- */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-body);
    background-color: var(--ivory);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--ivory);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

::selection {
    background: var(--gold);
    color: var(--white);
}

/* --- Typography Utilities --- */
.font-heading {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
}

.font-body {
    font-family: 'Roboto', sans-serif;
}

.font-accent {
    font-family: 'Roboto', sans-serif;
    font-style: italic;
}

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

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

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

/* --- Gold Shimmer Text Animation --- */
.gold-shimmer {
    background: var(--gold-shimmer);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* --- Glassmorphism Utilities --- */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.glass-dark {
    background: rgba(43, 29, 23, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 169, 107, 0.15);
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(200, 169, 107, 0.12);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

/* --- Header Styles --- */
.header-main {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-base);
    padding: 0.9rem 0;
    background: rgba(248, 244, 236, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 169, 107, 0.2);
}

.header-main.scrolled {
    padding: 0.7rem 0;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
}

.nav-link {
    position: relative;
    color: var(--espresso);
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

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

.nav-link:hover {
    color: var(--gold-dark);
}

.nav-link:hover::after {
    width: 100%;
    background: var(--gold-dark);
}

/* Logo */
.brand-logo {
    font-family: 'Roboto', sans-serif;
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--espresso);
    text-decoration: none;
    text-transform: lowercase;
    transition: all var(--transition-base);
}

.brand-logo:hover {
    color: var(--gold-dark);
}

/* Header Icons */
.header-icon {
    color: var(--espresso);
    transition: all var(--transition-fast);
    position: relative;
}

.header-icon:hover {
    color: var(--gold-dark);
    transform: scale(1.1);
}

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

/* --- Announcement Bar (Ticker) --- */
.announcement-bar {
    background: var(--espresso);
    color: var(--ivory);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.55rem 0;
    position: relative;
    overflow: hidden;
    z-index: 1001;
}

.ticker-wrap {
    overflow: hidden;
    width: 100%;
}

.ticker-content {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker 35s linear infinite;
}

.ticker-content:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* --- Hero Section & Slider --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #0C0806;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    z-index: 1;
    display: flex;
    align-items: center;
}

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

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 8, 6, 0.95) 0%, rgba(12, 8, 6, 0.8) 50%, rgba(12, 8, 6, 0.95) 100%);
    z-index: 1;
}

/* Ken Burns Effect */
.hero-slide .hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
}

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

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

/* Staggered Animations */
.hero-slide .slide-reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active .slide-reveal-up {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide:not(.active) .slide-reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: none;
}

.hero-slide .slide-reveal-scale {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
    transition: opacity 1.4s cubic-bezier(0.25, 1, 0.5, 1), transform 1.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active .slide-reveal-scale {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.hero-slide:not(.active) .slide-reveal-scale {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
    transition: none;
}

.hero-smoke {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.smoke-particle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: smoke-float 15s ease-in-out infinite;
}

.smoke-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.smoke-particle:nth-child(2) {
    top: 50%;
    right: 10%;
    animation-delay: -5s;
    animation-duration: 22s;
    width: 400px;
    height: 400px;
}

.smoke-particle:nth-child(3) {
    bottom: 10%;
    left: 40%;
    animation-delay: -10s;
    animation-duration: 20s;
}

@keyframes smoke-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.1;
    }

    25% {
        transform: translate(50px, -30px) scale(1.15) rotate(5deg);
        opacity: 0.18;
    }

    50% {
        transform: translate(-20px, 20px) scale(0.9) rotate(-3deg);
        opacity: 0.12;
    }

    75% {
        transform: translate(30px, 50px) scale(1.08) rotate(7deg);
        opacity: 0.16;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -0.03em;
    text-transform: lowercase;
}

.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(248, 244, 236, 0.75);
    letter-spacing: 0.05em;
    margin-top: 1.5rem;
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: status-pulse 1.8s infinite;
}

@keyframes status-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

.hero-image-container {
    position: relative;
    z-index: 3;
}

.hero-image-frame {
    border: 1px solid rgba(200, 169, 107, 0.5);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container img {
    filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.5));
    transition: transform var(--transition-luxury);
    width: 100%;
    height: auto;
}

.hero-image-container:hover img {
    transform: scale(1.05);
}

/* Pulsing glow ring */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    border-radius: 50%;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* --- Hero Glassmorphism Panel --- */
.hero-glass-panel {
    background: rgba(12, 8, 6, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(200, 169, 107, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 540px;
}

/* --- Hero Floating Animation --- */
.hero-floating {
    animation: float-bottle 6s ease-in-out infinite;
}

@keyframes float-bottle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.enhanced-glow {
    animation: glow-pulse-enhanced 3s ease-in-out infinite alternate;
}

@keyframes glow-pulse-enhanced {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.4;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* --- Hero CTA Button --- */
.btn-hero-khet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.95rem 2.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--espresso-dark);
    border: 1px solid var(--gold-light);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(200, 169, 107, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-hero-khet::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.btn-hero-khet:hover::before {
    left: 200%;
}

.btn-hero-khet:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 169, 107, 0.4);
    border-color: var(--gold);
}

.btn-hero-khet .btn-arrow {
    transition: transform var(--transition-fast);
}

.btn-hero-khet:hover .btn-arrow {
    transform: translateX(4px);
}

/* --- Luxury Button --- */
.btn-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.95rem 2.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    color: var(--espresso);
    border: 1px solid var(--gold);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-luxury:hover {
    background: var(--espresso);
    color: var(--white);
    border-color: var(--espresso);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-luxury .btn-arrow {
    transition: transform var(--transition-fast);
}

.btn-luxury:hover .btn-arrow {
    transform: translateX(4px);
}

/* --- Filled Variant --- */
.btn-luxury-filled {
    background: var(--espresso);
    color: var(--white);
    border-color: var(--espresso);
}

.btn-luxury-filled:hover {
    background: transparent;
    color: var(--espresso);
    border-color: var(--gold);
}

/* Slider controls */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(43, 29, 23, 0.4);
    border: 1px solid rgba(200, 169, 107, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-base);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.slider-nav-btn:hover {
    background: var(--gold);
    color: var(--espresso);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.08);
}

.slider-nav-btn.prev {
    left: 24px;
}

.slider-nav-btn.next {
    right: 24px;
}

.slider-controls-wrap {
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(248, 244, 236, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition-base);
}

.slider-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

.slider-progress-container {
    width: 180px;
    height: 2px;
    background: rgba(248, 244, 236, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.slider-progress-bar {
    height: 100%;
    width: 0;
    background: var(--gold);
    transition: width 6000ms linear;
}

@media (max-width: 1023px) {
    .slider-nav-btn {
        display: none;
    }
}


/* --- Section Styling --- */
.section-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--espresso);
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 2rem auto;
}

.gold-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.gold-ornament::before,
.gold-ornament::after {
    content: '';
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.gold-ornament::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.gold-ornament .diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* --- Product Card --- */
.product-card {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1rem;
    overflow: hidden;
    transition: all var(--transition-base);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-card:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.85);
    background: var(--ivory);
    margin-bottom: 0.75rem;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 29, 23, 0.3);
    opacity: 0;
    transition: opacity var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-radius: 8px;
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.product-card-info {
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-name {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    color: var(--text-dark);
    margin: 0.35rem 0 0.5rem 0 !important;
    line-height: 1.3 !important;
    letter-spacing: 0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-name a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.product-card-name a:hover {
    color: var(--gold-dark);
}

.product-card-category {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0;
}

.product-card-price {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gold-dark);
}

/* New Elements for Enhanced Layout */
.product-badge-new {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: #111111;
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-badge-new .badge-icon {
    color: #ffc107;
}

.product-card-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-body);
    background: var(--ivory-dark);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.product-card-rating-badge .star-icon {
    color: #ffc107;
}

.product-card-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.4rem;
    flex-wrap: wrap;
}

.product-card-price-new {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

.product-card-discount-badge {
    background: #198754;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
}

.product-card-emi-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--text-body);
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
}

.product-card-emi-btn {
    border: 1px solid rgba(0, 0, 0, 0.25);
    background: transparent;
    color: var(--text-dark);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}

.product-card-emi-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.product-card-add-btn {
    width: 100%;
    padding: 0.7rem 1rem;
    background: linear-gradient(90deg, #DEBA70 0%, #C49A45 100%);
    border: none;
    border-radius: 6px;
    color: #111111;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.product-card-add-btn:hover {
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
    transform: scale(1.02);
}

.product-card-add-btn:active {
    transform: scale(0.98);
}

/* Quick View Button */
.quick-view-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(43, 29, 23, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(200, 169, 107, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
    border-radius: 4px;
}

.quick-view-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--espresso);
}

/* Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.75rem;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--white);
    z-index: 2;
}

/* --- Signature / Editorial Section --- */
.editorial-section {
    position: relative;
    overflow: hidden;
}

.editorial-image {
    overflow: hidden;
}

.editorial-image img {
    transition: transform var(--transition-luxury);
}

.editorial-section:hover .editorial-image img {
    transform: scale(1.04);
}

.editorial-quote {
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--text-body);
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--gold);
}

/* --- Best Sellers Carousel --- */
.carousel-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 1.5rem;
    padding-bottom: 1rem;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    scroll-snap-align: start;
    flex-shrink: 0;
}

.carousel-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: var(--white);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-nav-btn:hover {
    background: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 2px;
}

.star-rating .star {
    color: var(--gold);
    font-size: 0.85rem;
}

.star-rating .star.empty {
    color: var(--ivory-dark);
}

/* --- Brand Story Section --- */
.brand-story-section {
    position: relative;
    overflow: hidden;
}

.brand-story-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.brand-story-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-story-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(43, 29, 23, 0.85) 0%, rgba(43, 29, 23, 0.7) 100%);
}

.brand-story-content {
    position: relative;
    z-index: 1;
}

/* --- Testimonial Card --- */
.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(200, 169, 107, 0.12);
    padding: 2rem;
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.testimonial-quote-icon {
    font-family: 'Roboto', sans-serif;
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.testimonial-text {
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--espresso);
}

.testimonial-role {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
}

/* --- Instagram Gallery --- */
.insta-grid-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 29, 23, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.insta-overlay svg {
    width: 32px;
    height: 32px;
    color: var(--white);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* --- Footer --- */
.footer-main {
    background: var(--espresso);
    color: var(--ivory);
}

.footer-title {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-link {
    color: rgba(248, 244, 236, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-link:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 107, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all var(--transition-fast);
}

.footer-social-icon:hover {
    background: var(--gold);
    color: var(--espresso);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(200, 169, 107, 0.3);
}

.newsletter-input {
    background: rgba(248, 244, 236, 0.08);
    border: 1px solid rgba(200, 169, 107, 0.25);
    color: var(--ivory);
    padding: 0.85rem 1.25rem;
    font-size: 0.85rem;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.05em;
    outline: none;
    transition: all var(--transition-fast);
    width: 100%;
}

.newsletter-input::placeholder {
    color: rgba(248, 244, 236, 0.4);
    letter-spacing: 0.1em;
}

.newsletter-input:focus {
    border-color: var(--gold);
    background: rgba(248, 244, 236, 0.12);
}

.newsletter-btn {
    padding: 0.85rem 2rem;
    background: var(--gold);
    color: var(--espresso);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-fast);
    font-family: 'Roboto', sans-serif;
}

.newsletter-btn:hover {
    background: transparent;
    color: var(--gold);
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--transition-luxury);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all var(--transition-luxury);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all var(--transition-luxury);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all var(--transition-luxury);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered children */
.stagger-children>* {
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-slow);
}

.stagger-children.visible>*:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(5) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible>*:nth-child(6) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
}

/* --- Parallax Helper --- */
.parallax-wrap {
    overflow: hidden;
}

.parallax-img {
    transform: scale(1.15);
    transition: transform 0.1s linear;
    will-change: transform;
}

/* --- Mobile Menu --- */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(43, 29, 23, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--ivory);
    z-index: 9999;
    transition: right var(--transition-base);
    padding: 2rem;
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(43, 29, 23, 0.15);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-link {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: var(--espresso);
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(200, 169, 107, 0.15);
    transition: all var(--transition-fast);
}

.mobile-menu-link:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

/* --- Loading Screen --- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.5em;
    color: var(--espresso);
    animation: preloader-fade 1.5s ease-in-out infinite;
}

@keyframes preloader-fade {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* --- Responsive Refinements --- */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .product-card-info {
        padding: 1rem;
    }

    .brand-logo {
        font-size: 1.35rem;
        letter-spacing: 0.25em;
    }
}

@media (max-width: 1023px) {
    .hero-section {
        min-height: 100vh;
        height: auto;
    }

    .hero-slide {
        min-height: 100vh;
        height: auto;
    }

    .hero-title {
        font-size: clamp(1.85rem, 6.5vw, 3.2rem);
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-top: 0.4rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .btn-luxury {
        padding: 0.85rem 1.75rem;
        font-size: 0.65rem;
    }

    .btn-hero-khet {
        padding: 0.75rem 1.75rem;
        font-size: 0.7rem;
    }
}

/* ============================================
   MAHOVIAN — Inner Pages Custom Styling
   ============================================ */

/* Page Banner */
.page-banner {
    background-color: var(--espresso);
    padding: 6rem 1rem 4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.08) 0%, transparent 80%);
    pointer-events: none;
}

.page-banner-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--ivory);
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-weight: 400;
}

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ivory-dark);
    opacity: 0.7;
}

.page-breadcrumb a {
    color: var(--ivory);
    transition: color var(--transition-fast);
}

.page-breadcrumb a:hover {
    color: var(--gold);
}

.page-breadcrumb span.divider {
    color: var(--gold);
    opacity: 0.5;
}

/* Category Filter Pills */
.filter-pill {
    padding: 0.65rem 1.5rem;
    border-radius: 9999px;
    background: transparent;
    border: 1px solid rgba(43, 29, 23, 0.15);
    color: var(--text-dark);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all var(--transition-base);
    cursor: pointer;
}

.filter-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 169, 107, 0.04);
}

.filter-pill.active {
    background-color: var(--espresso);
    border-color: var(--espresso);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* Luxury Form Inputs */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background-color: var(--ivory-light);
    border: 1px solid rgba(43, 29, 23, 0.15);
    color: var(--text-dark);
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    border-radius: 0;
    transition: all var(--transition-base);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
    background-color: var(--white);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Tabs */
.tab-nav {
    display: flex;
    border-bottom: 1px solid rgba(200, 169, 107, 0.2);
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.tab-nav::-webkit-scrollbar {
    display: none;
}

.tab-item {
    padding: 1rem 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-base);
    white-space: nowrap;
    cursor: pointer;
}

.tab-item:hover,
.tab-item.active {
    color: var(--text-dark);
}

.tab-item.active {
    border-bottom-color: var(--gold);
}

.tab-content-pane {
    display: none;
    animation: fadeIn var(--transition-base) forwards;
}

.tab-content-pane.active {
    display: block;
}

/* Quantity Stepper */
.qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(43, 29, 23, 0.15);
    background: var(--ivory-light);
}

.qty-btn {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1rem;
    transition: background-color var(--transition-fast);
    cursor: pointer;
}

.qty-btn:hover {
    background-color: rgba(200, 169, 107, 0.1);
}

.qty-input {
    width: 2.5rem;
    height: 2.75rem;
    text-align: center;
    background: transparent;
    border: none;
    font-weight: 500;
    color: var(--text-dark);
    outline: none;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Size Options */
.size-option {
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(43, 29, 23, 0.15);
    font-size: 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--text-dark);
    background: var(--ivory-light);
}

.size-option:hover {
    border-color: var(--gold);
}

.size-option.active {
    border-color: var(--gold);
    background-color: var(--espresso);
    color: var(--white);
}

/* Fragrance Note Pills */
.note-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    background-color: rgba(200, 169, 107, 0.08);
    border: 1px solid rgba(200, 169, 107, 0.2);
    color: var(--espresso);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Accordion */
.accordion-item {
    border-bottom: 1px solid rgba(200, 169, 107, 0.15);
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    text-align: left;
    transition: color var(--transition-fast);
    cursor: pointer;
}

.accordion-header:hover {
    color: var(--gold);
}

.accordion-icon {
    transition: transform var(--transition-base);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base) ease-out;
}

.accordion-content-inner {
    padding-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-body);
}

/* Story Milestones Timeline */
.timeline-container {
    position: relative;
    padding-left: 2rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 4px;
    width: 1px;
    background-color: rgba(200, 169, 107, 0.3);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2rem;
    top: 0.25rem;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--gold);
    border: 2px solid var(--ivory);
    box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.15);
    z-index: 10;
}

.timeline-year {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

/* Cards & Badges */
.address-card {
    border: 1px solid rgba(200, 169, 107, 0.2);
    padding: 1.5rem;
    position: relative;
    background: var(--ivory-light);
}

.contact-card {
    border: 1px solid rgba(200, 169, 107, 0.15);
    padding: 2rem;
    background: var(--white);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(200, 169, 107, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}