/* ═══════════════════════════════════════════════════════════════════════
   KHYATI BOUTIQUE — HOMEPAGE (CINEMATIC EDITION v4)
   Ultra-premium editorial · animated image-only hero
   ═══════════════════════════════════════════════════════════════════════ */

:root {
    --ivory: #fbf8f2;
    --ivory-warm: #f5ede0;
    --ink: #0d0d0d;
    --ink-soft: #1c1c1c;
    --charcoal: #2a2a2a;
    --grey: #73726c;
    --light-grey: #a8a6a0;
    --gold: #9a7b4f;
    --gold-bright: #b8956a;
    --gold-pale: #d4af7a;
    --gold-light: #e8d5b0;
    --cream: #f5ede0;
    --line: #e8d5b0;
    --white: #ffffff;
    --success: #0e5e2a;
    --danger: #c0392b;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Jost', -apple-system, sans-serif;
    --font-mono: 'SF Mono', Monaco, monospace;

    --ease-luxe: cubic-bezier(0.645, 0.045, 0.355, 1);
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.homepage {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--ivory);
    font-weight: 300;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.homepage.is-loading { overflow: hidden; }

/* ─── Nav over hero (transparent glass) ─── */
body.homepage .navbar-khyati.nav-over-hero {
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.55) 0%, rgba(13, 13, 13, 0) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.homepage .navbar-khyati.nav-over-hero .nav-link-khyati,
body.homepage .navbar-khyati.nav-over-hero .nav-icon-btn,
body.homepage .navbar-khyati.nav-over-hero .nav-wishlist-link {
    color: rgba(251, 248, 242, 0.92);
}

body.homepage .navbar-khyati.nav-over-hero .nav-link-khyati:hover,
body.homepage .navbar-khyati.nav-over-hero .nav-icon-btn:hover,
body.homepage .navbar-khyati.nav-over-hero .nav-wishlist-link:hover {
    color: var(--gold-pale);
}

body.homepage .navbar-khyati.nav-over-hero .khy-logo-img {
    filter: brightness(0) invert(1);
}

body.homepage .khy-categories-bar.nav-over-hero {
    background: rgba(13, 13, 13, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

body.homepage .khy-categories-bar.nav-over-hero .khy-category-link {
    color: rgba(251, 248, 242, 0.88);
}

body.homepage .khy-categories-bar.nav-over-hero .khy-category-link:hover,
body.homepage .khy-categories-bar.nav-over-hero .khy-category-link.highlight {
    color: var(--gold-pale);
}

body.homepage .khy-categories-bar.nav-over-hero .khy-category-link.shop-all {
    color: var(--ivory);
}

body.homepage .khy-categories-bar.nav-over-hero .khy-category-link::after {
    background: var(--gold-pale);
}

.container-khyati {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════ */
.eyebrow {
    display: inline-block;
    font-size: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
    padding-left: 36px;
}
.eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.eyebrow-centered {
    padding-left: 0;
    padding: 0 36px;
}
.eyebrow-centered::before,
.eyebrow-centered::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--gold);
}
.eyebrow-centered::before { left: 0; }
.eyebrow-centered::after { right: 0; }

/* Section header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-number {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 14px;
    opacity: 0.7;
}

.section-title {
    font-weight: 600;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    margin: 0 0 20px;
    color: var(--ink);
    letter-spacing: -2px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 600;
    font-family: var(--font-serif);
}

.section-sub {
    font-weight: 600;
    font-size: 15px;
    color: var(--grey);
    margin: 0;
    line-height: 1.55;
    letter-spacing: 0.3px;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    padding-bottom: 20px;
    border-bottom: 0.5px solid var(--line);
}

.section-cta {
    text-align: center;
    margin-top: 56px;
}

/* Ornamental divider */
.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}
.ornament-divider::before,
.ornament-divider::after {
    content: '';
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.ornament-divider-symbol {
    color: var(--gold);
    font-size: 18px;
    opacity: 0.7;
}

/* ═══════════════════════════════════════════
   BUTTONS — with magnetic effect prep
   ═══════════════════════════════════════════ */
.btn-khyati {
    display: inline-block;
    padding: 16px 38px;
    font-family: var(--font-sans);
    font-size: 10.5px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.5s var(--ease-luxe);
    background: none;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.btn-khyati::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.5s var(--ease-luxe);
    z-index: -1;
}

.btn-khyati:hover::before { left: 0; }

.btn-khyati-dark {
    background: var(--ink);
    color: var(--ivory);
    border-color: var(--ink);
}
.btn-khyati-dark:hover {
    color: var(--ivory);
    border-color: var(--gold);
}

.btn-khyati-light {
    background: var(--ivory);
    color: var(--ink);
    border-color: var(--ivory);
}
.btn-khyati-light:hover {
    color: var(--ivory);
    border-color: var(--gold);
}

.btn-khyati-text {
    color: var(--ink);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 0;
    position: relative;
    display: inline-block;
    transition: color 0.3s;
}
.btn-khyati-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--ink);
    transform-origin: right;
    transition: transform 0.4s var(--ease-luxe);
}
.btn-khyati-text:hover { color: var(--gold); }
.btn-khyati-text:hover::after { transform: scaleX(0); transform-origin: left; }

.btn-khyati-text-light {
    color: var(--ivory);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 0;
    position: relative;
    border-bottom: 1px solid var(--ivory);
}
.btn-khyati-text-light:hover { color: var(--gold-pale); border-color: var(--gold-pale); }

/* ═══════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════ */
.announcement-bar {
    background: var(--ink);
    color: var(--gold-pale);
    font-size: 10.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 12px 20px;
    text-align: center;
    font-weight: 500;
    font-family: var(--font-sans);
    border-bottom: 0.5px solid rgba(154, 123, 79, 0.2);
    position: relative;
}
.announcement-bar::before,
.announcement-bar::after {
    content: '✦';
    color: var(--gold);
    margin: 0 12px;
    opacity: 0.5;
    font-size: 8px;
}
.announcement-bar a {
    color: var(--gold-pale);
    text-decoration: none;
    transition: color 0.3s;
}
.announcement-bar a:hover { color: var(--ivory); }


@keyframes badge-pop {
    0% { transform: scale(0); }
    80% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.mobile-menu-toggle { display: none; }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -380px;
    width: 340px;
    max-width: 85vw;
    height: 100vh;
    background: var(--ivory);
    z-index: 1001;
    padding: 30px 34px;
    transition: right 0.4s var(--ease-luxe);
    overflow-y: auto;
    border-left: 0.5px solid var(--line);
}
.mobile-menu.open { right: 0; }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 0.5px solid var(--line);
}

.mobile-menu-link {
    display: block;
    padding: 18px 0;
    font-size: 15px;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 0.5px solid var(--line);
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
}
.mobile-menu-link:hover { color: var(--gold); padding-left: 8px; }

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
}
.mobile-menu-overlay.open { display: block; }

/* Search overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(251, 248, 242, 0.98);
    backdrop-filter: blur(20px);
    z-index: 200;
    padding: 80px 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-luxe);
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-overlay.open { opacity: 1; visibility: visible; }

.search-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: var(--ink);
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s;
}
.search-close:hover { transform: rotate(90deg); }

.search-form { max-width: 760px; text-align: center; width: 100%; }

.search-eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 44px;
    color: var(--ink);
    padding: 20px 0;
    text-align: center;
    outline: none;
    font-weight: 300;
    transition: border-color 0.3s;
}
.search-input:focus { border-color: var(--gold); }
.search-input::placeholder { color: var(--light-grey); }

.search-suggestions {
    margin-top: 24px;
    font-size: 11px;
    color: var(--grey);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.search-suggestions a {
    color: var(--gold);
    text-decoration: none;
    margin-left: 14px;
    transition: color 0.3s;
}
.search-suggestions a:hover { color: var(--ink); }

/* ═══════════════════════════════════════════
   HERO SLIDER — Full-width desktop · Portrait mobile
   ═══════════════════════════════════════════ */
.hero-section {
    position: relative;
    width: 100%;
    height: clamp(360px, 41.67vw, 800px);
    overflow: hidden;
    background: var(--ivory);
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background: var(--ivory);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 0;
    transition: opacity 1s var(--ease-luxe), visibility 1s var(--ease-luxe);
}

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

.hero-slide.is-leaving {
    opacity: 0;
    z-index: 3;
}

.hero-slide-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

.hero-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.hero-slide.active .hero-slide-img {
    animation: heroKenBurns 10s var(--ease-smooth) forwards;
}

.hero-slide.is-leaving .hero-slide-img {
    animation: none;
}

@keyframes heroKenBurns {
    from { transform: scale(1); }
    to   { transform: scale(1.04); }
}

.hero-slide-placeholder {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(154, 123, 79, 0.35), transparent 70%),
        linear-gradient(145deg, #1a1410 0%, #0d0d0d 50%, #1c1208 100%);
}

/* Cinematic FX layers */
.hero-fx {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.hero-fx .hero-vignette,
.hero-fx .hero-gradient,
.hero-fx .hero-shimmer {
    display: none;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.hero-shimmer {
    position: absolute;
    inset: -50%;
    background: linear-gradient(
        105deg,
        transparent 42%,
        rgba(255, 255, 255, 0.04) 48%,
        rgba(212, 175, 122, 0.08) 50%,
        rgba(255, 255, 255, 0.04) 52%,
        transparent 58%
    );
    animation: heroShimmer 9s ease-in-out infinite;
}

@keyframes heroShimmer {
    0%, 100% { transform: translateX(-30%) rotate(12deg); opacity: 0; }
    45% { opacity: 1; }
    55% { opacity: 1; }
    100% { transform: translateX(30%) rotate(12deg); opacity: 0; }
}

/* Hero UI chrome */
.hero-ui {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.hero-ui > * { pointer-events: auto; }

.hero-counter { display: none !important; }

.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 6;
}

.hero-progress-track {
    width: 100%;
    height: 100%;
    background: rgba(251, 248, 242, 0.12);
}

.hero-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-pale));
    transform-origin: left center;
    transition: width 0.1s linear;
}

.hero-dots {
    position: absolute;
    bottom: 44px;
    left: 56px;
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.hero-dot {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.45;
    transition: opacity 0.35s var(--ease-luxe), transform 0.35s var(--ease-luxe);
}

.hero-dot:hover,
.hero-dot.active { opacity: 1; }

.hero-dot.active { transform: translateX(4px); }

.hero-dot-line {
    display: block;
    width: 32px;
    height: 2px;
    background: rgba(42, 42, 42, 0.25);
    position: relative;
    overflow: hidden;
    transition: width 0.4s var(--ease-luxe);
}

.hero-dot.active .hero-dot-line {
    width: 56px;
    background: rgba(42, 42, 42, 0.15);
}

.hero-dot-line::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 0;
    background: var(--gold-pale);
    transition: none;
}

.hero-dot.active .hero-dot-line::after {
    animation: heroDotProgress var(--hero-autoplay, 6s) linear forwards;
}

@keyframes heroDotProgress {
    from { width: 0; }
    to   { width: 100%; }
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: rgba(251, 248, 242, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(154, 123, 79, 0.35);
    color: var(--ink);
    cursor: pointer;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: all 0.45s var(--ease-luxe);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(13, 13, 13, 0.1);
}

.hero-arrow-ring {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: var(--gold-pale);
    opacity: 0;
    transform: rotate(0deg);
    transition: opacity 0.3s;
}

.hero-arrow:hover {
    background: var(--ink);
    color: var(--ivory);
    border-color: var(--ink);
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hero-arrow:hover .hero-arrow-ring {
    opacity: 0.6;
    animation: heroRingSpin 1.2s linear infinite;
}

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

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

.hero-scroll-hint {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: rgba(42, 42, 42, 0.65);
    text-decoration: none;
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s, transform 0.3s;
}

.hero-scroll-hint:hover {
    color: var(--gold-pale);
    transform: translateX(-50%) translateY(4px);
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(212, 175, 122, 0.6), transparent);
    position: relative;
    overflow: hidden;
}

.hero-scroll-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 5px;
    height: 5px;
    margin-left: -2.5px;
    border-radius: 50%;
    background: var(--gold-pale);
    animation: heroScrollDot 2.2s ease-in-out infinite;
}

@keyframes heroScrollDot {
    0% { top: 0; opacity: 1; }
    80% { opacity: 0.3; }
    100% { top: 100%; opacity: 0; }
}

/* Legacy — hidden */
.hero-overlay,
.hero-content,
.hero-badges,
.hero-slide-number,
.hero-side-text,
.hero-eyebrow,
.hero-title,
.hero-subtitle,
.hero-ctas { display: none !important; }

/* ═══════════════════════════════════════════
   USP STRIP — Clean white trust bar
   ═══════════════════════════════════════════ */
.usp-strip {
    position: relative;
    padding: 64px 0 68px;
    background: #ffffff;
    border-top: 1px solid #ebe3d4;
    border-bottom: 1px solid #ebe3d4;
    box-shadow: 0 8px 32px rgba(28, 28, 28, 0.04);
}

.usp-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.usp-strip-eyebrow {
    margin: 0 0 36px;
    text-align: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--gold);
}

.usp-strip-eyebrow::before,
.usp-strip-eyebrow::after {
    content: '—';
    margin: 0 16px;
    color: var(--gold-light);
    font-style: normal;
    font-weight: 400;
}

.usp-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.usp-item {
    min-width: 0;
}

.usp-item-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    height: 100%;
    padding: 26px 22px;
    background: #ffffff;
    border: 1.5px solid #e8d5b0;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(154, 123, 79, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.usp-item:hover .usp-item-card {
    transform: translateY(-4px);
    border-color: var(--gold-light);
    box-shadow: 0 12px 36px rgba(154, 123, 79, 0.16);
}

.usp-item-icon {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #faf6ef 0%, #f0e6d4 100%);
    border: 2px solid var(--gold-light);
    color: var(--gold);
    font-size: 26px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.usp-item:hover .usp-item-icon {
    background: linear-gradient(145deg, var(--gold-light), var(--gold));
    border-color: var(--gold);
    color: #ffffff;
}

.usp-item-copy {
    min-width: 0;
    padding-top: 4px;
}

.usp-item-label {
    margin: 0 0 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1.35;
}

.usp-item-desc {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.5;
}


/* ═══════════════════════════════════════════
   OCCASIONS — Magazine-style asymmetric
   ═══════════════════════════════════════════ */
.occasions-section {
    padding: 130px 0;
    background: var(--ivory);
    position: relative;
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 500px;
    gap: 20px;
}
.occasion-tile {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    background: var(--ink);
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(13, 13, 13, 0.06);
    transition: transform 0.6s var(--ease-luxe), box-shadow 0.6s var(--ease-luxe);
}

.occasion-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(13, 13, 13, 0.14);
}

.occasion-tile-tall { grid-row: span 2; }

.occasion-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1s var(--ease-luxe);
    border-radius: 10px;
}
.occasion-tile:hover .occasion-image {
    transform: scale(1.08);
}

.occasion-image-placeholder {
    background: linear-gradient(135deg, var(--gold-pale), var(--gold), var(--charcoal));
}

.occasion-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,13,13,0) 30%, rgba(13,13,13,0.9) 100%);
    transition: background 0.5s;
}
.occasion-tile:hover .occasion-overlay {
    background: linear-gradient(180deg, rgba(13,13,13,0.2) 0%, rgba(13,13,13,0.9) 100%);
}

.occasion-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(251, 248, 242, 0.95);
    color: var(--gold);
    font-size: 9px;
    padding: 6px 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.occasion-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 36px;
    color: rgba(251, 248, 242, 0.4);
    font-weight: 300;
    z-index: 2;
    line-height: 1;
}

.occasion-content {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    color: var(--ivory);
    z-index: 2;
    transform: translateY(12px);
    transition: transform 0.5s var(--ease-luxe);
}
.occasion-tile:hover .occasion-content { transform: translateY(0); }

.occasion-name {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 40px;
    line-height: 1;
    margin: 0 0 10px;
    color: var(--ivory);
    letter-spacing: -1px;
}

.occasion-meta {
    display: flex;
    gap: 14px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-pale);
    margin-bottom: 14px;
    font-weight: 500;
}

.occasion-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ivory);
    font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--ivory);
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(10px);
}
.occasion-tile:hover .occasion-cta {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════
   PRODUCT CARDS — with Add to Cart
   ═══════════════════════════════════════════ */
.bestsellers-section {
    padding: 130px 0;
    background: var(--white);
    position: relative;
}

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

.product-card {
    position: relative;
    transition: transform 0.5s var(--ease-luxe);
    transform-style: preserve-3d;
    perspective: 800px;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--cream);
    margin-bottom: 20px;
}

.product-image-primary,
.product-image-hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s var(--ease-luxe);
}

.product-image-primary {
    transform: scale(1);
}

.product-image-hover {
    opacity: 0;
    transform: scale(1.05);
}

.product-card:hover .product-image-primary {
    transform: scale(1.05);
    opacity: 0.3;
}

.product-card:hover .product-image-hover {
    opacity: 1;
    transform: scale(1);
}

.product-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-grey);
    font-size: 36px;
    background: linear-gradient(135deg, var(--cream), var(--gold-light));
}

.product-flags {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.product-flag {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.flag-bestseller { background: var(--gold); color: var(--ivory); }
.flag-new { background: var(--ink); color: var(--ivory); }
.flag-sale { background: var(--danger); color: var(--ivory); }
.flag-mto {
    background: rgba(251, 248, 242, 0.95);
    color: var(--gold);
    border: 0.5px solid var(--gold);
}

.product-wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    background: rgba(251, 248, 242, 0.95);
    backdrop-filter: blur(10px);
    border: 0.5px solid rgba(154, 123, 79, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--charcoal);
    transition: all 0.4s var(--ease-luxe);
    z-index: 3;
}
.product-wishlist:hover {
    background: var(--gold);
    color: var(--ivory);
    border-color: var(--gold);
    transform: scale(1.1);
}
.product-wishlist.active { color: var(--danger); background: var(--ivory); }

/* Add to Cart — new */
.product-cart-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.96);
    backdrop-filter: blur(10px);
    color: var(--ivory);
    padding: 16px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-luxe);
    z-index: 3;
}
.product-card:hover .product-cart-actions { transform: translateY(0); }

.product-cart-btn {
    flex: 1;
    background: var(--ivory);
    color: var(--ink);
    border: none;
    padding: 12px 16px;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.product-cart-btn:hover { background: var(--gold); color: var(--ivory); }
.product-cart-btn.added { background: var(--success); color: var(--ivory); }

.product-view-btn {
    width: 42px;
    height: 42px;
    background: transparent;
    color: var(--ivory);
    border: 0.5px solid rgba(212, 175, 122, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}
.product-view-btn:hover { background: var(--gold); border-color: var(--gold); }

.product-card-body { padding: 0 4px; }

.product-color {
    display: block;
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
    font-weight: 500;
}

.product-name {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
    color: var(--ink);
    margin: 0 0 8px;
    transition: color 0.3s;
}
.product-card:hover .product-name { color: var(--gold); }

.product-prices {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.product-price-sale {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.5px;
}

.product-price-mrp {
    font-size: 13px;
    color: var(--light-grey);
    text-decoration: line-through;
}

/* ═══════════════════════════════════════════
   DESIGNER STORY — Dark cinematic
   ═══════════════════════════════════════════ */
.designer-section {
    padding: 140px 50px;
    background: var(--ink);
    color: var(--ivory);
    position: relative;
    overflow: hidden;
}

.designer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.designer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 80px;
    align-items: center;
}

.designer-image-wrap {
    position: relative;
    aspect-ratio: 4/5;
    max-height: 680px;
}

.designer-image-main {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--charcoal);
    filter: contrast(1.05) brightness(0.95);
}

.designer-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--charcoal));
}

.designer-initial {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 240px;
    color: var(--gold-pale);
    opacity: 0.4;
    font-weight: 300;
}

.designer-image-tag {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold);
    color: var(--ivory);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(13,13,13,0.4);
    border: 0.5px solid var(--gold-pale);
}

.designer-tag-eyebrow {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ivory);
    font-weight: 500;
    opacity: 0.8;
}

.designer-tag-year {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 40px;
    color: var(--ivory);
    line-height: 1;
    margin-top: 6px;
    font-weight: 400;
    letter-spacing: 1px;
}

.designer-text { padding: 20px 0; color: var(--ivory); }

.designer-text .eyebrow { color: var(--gold-pale); }
.designer-text .eyebrow::before { background: var(--gold-pale); }

.designer-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 72px;
    line-height: 0.95;
    margin: 0 0 30px;
    letter-spacing: -2px;
    color: var(--ivory);
}
.designer-title em {
    font-style: italic;
    color: var(--gold-pale);
    font-weight: 400;
}

.designer-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: 26px;
    line-height: 1.45;
    color: var(--gold-pale);
    margin: 0 0 30px;
    padding: 20px 0 20px 28px;
    border: none;
    border-left: 2px solid var(--gold);
    position: relative;
}
.designer-quote::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: 16px;
    font-size: 60px;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1;
}

.designer-bio {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(251, 248, 242, 0.8);
    margin: 0 0 32px;
    font-weight: 300;
}

.designer-awards {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.designer-award {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 14px;
    background: rgba(212, 175, 122, 0.08);
    color: var(--gold-pale);
    border: 0.5px solid rgba(212, 175, 122, 0.25);
    font-weight: 500;
    transition: all 0.3s;
}
.designer-award:hover { background: var(--gold); color: var(--ivory); border-color: var(--gold); }

.designer-ctas {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.designer-ctas .btn-khyati-text { color: var(--ivory); }
.designer-ctas .btn-khyati-text::after { background: var(--ivory); }

/* ═══════════════════════════════════════════
   NEW ARRIVALS SCROLL
   ═══════════════════════════════════════════ */
.new-arrivals-section {
    padding: 130px 0;
    background: var(--ivory);
}

.section-nav-arrows { display: flex; gap: 8px; }

.scroll-arrow {
    width: 48px;
    height: 48px;
    border: 0.5px solid var(--line);
    background: transparent;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.4s var(--ease-luxe);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.scroll-arrow:hover {
    background: var(--ink);
    color: var(--ivory);
    border-color: var(--ink);
    transform: scale(1.08);
}

.scroll-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 0 32px;
    margin: 0 0px;
    padding-left: 50px;
    padding-right: 50px;
    scrollbar-width: none;
}
.scroll-container::-webkit-scrollbar { display: none; }

.product-card-scroll {
    flex: 0 0 300px;
    scroll-snap-align: start;
}

/* ═══════════════════════════════════════════
   LOOKBOOK — Cinematic dark banner
   ═══════════════════════════════════════════ */
.lookbook-section {
    position: relative;
    min-height: 640px;
    background-size: cover;
    background-position: center;
    background-color: var(--ink);
    background-image: linear-gradient(135deg, #0d0d0d 0%, #2a1a0a 50%, #1a0f08 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
    text-align: center;
    overflow: hidden;
}

.lookbook-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.5);
}

.lookbook-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    color: var(--ivory);
}

.lookbook-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-pale);
    margin-bottom: 26px;
    font-weight: 500;
    padding: 0 40px;
    position: relative;
}
.lookbook-eyebrow::before,
.lookbook-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--gold-pale);
}
.lookbook-eyebrow::before { left: 0; }
.lookbook-eyebrow::after { right: 0; }

.lookbook-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: 96px;
    line-height: 0.95;
    color: var(--ivory);
    margin: 0 0 28px;
    letter-spacing: -3px;
}

.lookbook-sub {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 22px;
    color: var(--gold-pale);
    opacity: 0.9;
    line-height: 1.5;
    margin: 0 0 44px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.lookbook-ctas {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.lookbook-ornament-top,
.lookbook-ornament-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 24px;
    opacity: 0.6;
    z-index: 2;
}
.lookbook-ornament-top { top: 50px; }
.lookbook-ornament-bottom { bottom: 50px; }

/* ═══════════════════════════════════════════
   CELEBRITY WALL
   ═══════════════════════════════════════════ */
.celebrity-section {
    padding: 130px 0;
    background: var(--white);
}

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

.celebrity-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    background: var(--ink);
}

.celebrity-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: all 0.7s var(--ease-luxe);
    filter: grayscale(30%);
}
.celebrity-card:hover .celebrity-image {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.celebrity-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--charcoal), var(--ink));
}

.celebrity-initial {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 96px;
    color: var(--ivory);
    opacity: 0.5;
    font-weight: 300;
}

.celebrity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,13,13,0) 40%, rgba(13,13,13,0.9) 100%);
}

.celebrity-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    color: var(--ivory);
    z-index: 2;
}

.celebrity-name {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 6px;
}

.celebrity-caption {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-pale);
    font-weight: 500;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-section {
    padding: 130px 0;
    background: var(--ivory-warm);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--ivory);
    padding: 50px 40px 40px;
    position: relative;
    border-top: 2px solid var(--gold);
    transition: all 0.5s var(--ease-luxe);
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 13, 13, 0.08);
}

.testimonial-quote-mark {
    position: absolute;
    top: -12px;
    left: 40px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 120px;
    line-height: 1;
    color: var(--gold-pale);
    opacity: 0.4;
    font-weight: 300;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}
.testimonial-star:not(.filled) { color: var(--line); }

.testimonial-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.65;
    color: var(--charcoal);
    margin: 0 0 32px;
    padding: 0;
    border: none;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 0.5px solid var(--line);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 2px solid var(--gold-pale);
}

.testimonial-avatar-initial {
    background: linear-gradient(135deg, var(--gold-pale), var(--gold));
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 22px;
    font-weight: 500;
}

.testimonial-author-info { flex: 1; min-width: 0; }

.testimonial-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 3px;
}
.testimonial-name .bi-patch-check-fill { color: var(--gold); font-size: 12px; margin-left: 4px; }

.testimonial-meta {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

/* ═══════════════════════════════════════════
   PRESS BAND — Marquee
   ═══════════════════════════════════════════ */
.press-band {
    background: var(--ink);
    padding: 70px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.press-band::before,
.press-band::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.press-band::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.press-band::after { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }

.press-band-eyebrow {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 16px;
    color: rgba(212, 175, 122, 0.7);
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.press-marquee {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}
.press-marquee:hover { animation-play-state: paused; }

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

.press-logos-group {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-right: 80px;
}

.press-logo-item {
    opacity: 0.45;
    transition: opacity 0.4s;
    max-height: 40px;
    flex-shrink: 0;
    text-decoration: none;
}
.press-logo-item:hover { opacity: 1; }

.press-logo-item img {
    max-height: 40px;
    max-width: 180px;
    filter: brightness(0) invert(0.75) sepia(0.35);
}

.press-logo-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 32px;
    color: var(--gold-pale);
    font-weight: 400;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════
   INSTAGRAM GRID
   ═══════════════════════════════════════════ */
.instagram-section {
    padding: 130px 0;
    background: var(--ivory);
}

.instagram-handle {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}
.instagram-handle:hover { text-decoration: underline; }

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.instagram-tile {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: block;
    text-decoration: none;
    background: var(--cream);
}

.instagram-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: all 0.7s var(--ease-luxe);
}
.instagram-tile:hover .instagram-image {
    transform: scale(1.12);
    filter: brightness(0.5);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--ivory);
    opacity: 0;
    transition: opacity 0.5s;
    text-align: center;
    padding: 24px;
    backdrop-filter: blur(2px);
}
.instagram-overlay i { font-size: 32px; color: var(--gold-pale); }
.instagram-tile:hover .instagram-overlay { opacity: 1; }

.instagram-caption {
    font-size: 10px;
    letter-spacing: 1.5px;
    line-height: 1.5;
    color: var(--ivory);
}

/* ═══════════════════════════════════════════
   NEWSLETTER — Jost only · matches site v2
   ═══════════════════════════════════════════ */
.newsletter-section {
    padding: 64px 0;
    background-color: #fff;
}

.newsletter-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    border-radius: 6px;
    padding: 40px 36px 32px;
}

.newsletter-card-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 6px;
    background: #fbf8f2;
    border: 1px solid #e8d5b0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a7b4f;
    font-size: 22px;
}

.newsletter-eyebrow {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #9a7b4f;
    margin-bottom: 10px;
}

.newsletter-title {
    font-family: 'Jost', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #0d0d0d;
    letter-spacing: 0.2px;
}

.newsletter-sub {
    font-family: 'Jost', sans-serif;
    font-style: normal;
    font-size: 15px;
    color: #666;
    line-height: 1.65;
    margin: 0 auto 28px;
    max-width: 480px;
    font-weight: 400;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 520px;
    margin: 0 auto 12px;
}

.newsletter-input {
    flex: 1;
    min-width: 0;
    background: #fff;
    border: 1px solid #d4af7a;
    border-radius: 4px;
    padding: 12px 14px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: #0d0d0d;
    outline: none;
    transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: #999; }
.newsletter-input:focus {
    border-color: #0d0d0d;
}

.newsletter-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #0d0d0d;
    background: #0d0d0d;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.newsletter-submit i { font-size: 14px; transition: transform 0.2s; }
.newsletter-submit:hover {
    background: #9a7b4f;
    border-color: #9a7b4f;
    color: #fff;
}
.newsletter-submit:hover i { transform: translateX(3px); }

.newsletter-message {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    min-height: 20px;
    margin-bottom: 10px;
}
.newsletter-message.success { color: #2e7d32; }
.newsletter-message.error { color: #c0392b; }

.newsletter-privacy {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    color: #999;
    letter-spacing: 0.3px;
    margin: 0;
    line-height: 1.5;
}

/* Footer */
.footer-khyati {
    background: var(--ink);
    color: var(--ivory);
    padding: 100px 0 30px;
    position: relative;
}

.footer-khyati::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.footer-col-brand { padding-right: 20px; }

.footer-brand-text {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 4px;
    color: var(--ivory);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.footer-brand-text:hover { color: var(--gold-pale); }

.footer-brand-logo {
    display: inline-block;
    margin-bottom: 14px;
    line-height: 0;
    text-decoration: none;
}
.footer-brand-logo img {
    height: 32px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.footer-brand {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 44px;
    letter-spacing: 6px;
    color: var(--ivory);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-tagline {
    font-family: 'Jost', sans-serif;
    font-style: normal;
    font-size: 14px;
    color: var(--gold-pale);
    line-height: 1.55;
    margin: 0 0 30px;
    font-weight: 400;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.footer-contact .footer-link i { color: var(--gold-pale); font-size: 14px; }

.footer-contact .footer-link {
    color: rgba(251, 248, 242, 0.75);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}
.footer-contact .footer-link:hover { color: var(--gold-pale); padding-left: 4px; }

.footer-social { display: flex; gap: 14px; }

.footer-social a {
    width: 42px;
    height: 42px;
    border: 0.5px solid rgba(212, 175, 122, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-pale);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.4s var(--ease-luxe);
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ivory);
    transform: translateY(-4px) rotate(8deg);
}

.footer-heading {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold-pale);
    margin: 0 0 24px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: 'Jost', sans-serif;
    color: rgba(251, 248, 242, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    display: inline-block;
}
.footer-links a:hover { color: var(--gold-pale); padding-left: 6px; }

.footer-address {
    font-style: normal;
    font-size: 13px;
    color: rgba(251, 248, 242, 0.7);
    line-height: 1.8;
    margin: 0;
}

.footer-trust {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding: 30px 0;
    border-top: 0.5px solid rgba(212, 175, 122, 0.15);
    border-bottom: 0.5px solid rgba(212, 175, 122, 0.15);
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.trust-item {
    font-family: 'Jost', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--gold-pale);
    letter-spacing: 1px;
    font-weight: 500;
}
.trust-item i { font-size: 20px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 4px;
}

.footer-copyright {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    color: rgba(251, 248, 242, 0.45);
    letter-spacing: 0.5px;
}

.footer-payment {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.footer-payment-label {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    color: rgba(251, 248, 242, 0.5);
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.footer-payment-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.footer-payment-icons img {
    display: block;
    height: 28px;
    width: auto;
    border-radius: 3px;
    opacity: 0.95;
    transition: opacity 0.2s, transform 0.2s;
}
.footer-payment-icons img:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.footer-credit {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-credit-label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    color: rgba(251, 248, 242, 0.4);
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.footer-rimobit {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
    transition: opacity 0.2s;
}
.footer-rimobit:hover { opacity: 0.85; }
.footer-rimobit img {
    height: 22px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    display: block;
}

.payment-method {
    padding: 5px 12px;
    border: 0.5px solid rgba(212, 175, 122, 0.3);
    color: var(--gold-pale);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 1.5px;
}

/* ═══════════════════════════════════════════
   CART DRAWER — Jost only · matches cart/checkout
   ═══════════════════════════════════════════ */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -480px;
    width: 460px;
    max-width: 100vw;
    height: 100vh;
    background: #fbf8f2;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transition: right 0.4s ease;
    box-shadow: -12px 0 40px rgba(13, 13, 13, 0.12);
    font-family: 'Jost', sans-serif;
}
.cart-drawer.open { right: 0; }

.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, 0.45);
    backdrop-filter: blur(3px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.cart-drawer-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    border-bottom: 1px solid #e8d5b0;
    background: #fff;
}

.cart-drawer-title {
    font-family: 'Jost', sans-serif;
    font-style: normal;
    font-size: 20px;
    font-weight: 600;
    color: #0d0d0d;
    margin: 0;
    letter-spacing: 0.3px;
}
.cart-drawer-title-accent { color: #9a7b4f; font-weight: 600; }

.cart-close-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
}
.cart-close-btn:hover { color: #0d0d0d; transform: rotate(90deg); }

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    background: #fbf8f2;
}

.cart-drawer-loading {
    text-align: center;
    padding: 40px 20px;
    color: #888;
    font-size: 13px;
}

.cart-empty {
    text-align: center;
    padding: 60px 24px;
    color: #666;
}
.cart-empty i {
    font-size: 52px;
    color: #d4af7a;
    display: block;
    margin-bottom: 16px;
}
.cart-empty-title {
    font-family: 'Jost', sans-serif;
    font-style: normal;
    font-size: 20px;
    font-weight: 600;
    color: #0d0d0d;
    margin: 0 0 8px;
}
.cart-empty-sub {
    font-size: 13px;
    margin: 0 0 24px;
    line-height: 1.5;
}
.cart-empty-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #0d0d0d;
    color: #fff;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.cart-empty-btn:hover { background: #9a7b4f; color: #fff; }

.cd-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 14px;
    padding: 18px 24px;
    border-bottom: 1px solid #f0e4cc;
    align-items: start;
    background: #fbf8f2;
}
.cd-item-image {
    display: block;
    width: 80px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    background: #f5ede0;
    border: 1px solid #e8d5b0;
}
.cd-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cd-item-info { min-width: 0; }
.cd-item-name {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0d0d0d;
    margin: 0 0 4px;
    line-height: 1.35;
    text-decoration: none;
    display: block;
}
.cd-item-name:hover { color: #9a7b4f; }
.cd-item-variant {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    font-weight: 500;
    margin-bottom: 10px;
}
.cd-item-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cd-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d4af7a;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}
.cd-qty-btn {
    width: 30px;
    height: 30px;
    background: #fbf8f2;
    border: none;
    color: #9a7b4f;
    cursor: pointer;
    font-size: 15px;
    font-family: 'Jost', sans-serif;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
}
.cd-qty-btn:hover { background: #f5ede0; color: #0d0d0d; }
.cd-qty-val {
    min-width: 32px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #0d0d0d;
    font-family: 'Jost', sans-serif;
}

.cd-item-remove {
    background: none;
    border: none;
    color: #bbb;
    cursor: pointer;
    font-size: 15px;
    padding: 4px 6px;
    margin-left: auto;
    transition: color 0.2s;
}
.cd-item-remove:hover { color: #c0392b; }

.cd-item-price {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0d0d0d;
    white-space: nowrap;
    padding-top: 2px;
}

.cart-drawer-footer {
    padding: 20px 24px 24px;
    border-top: 1px solid #e8d5b0;
    background: #fff;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
    font-family: 'Jost', sans-serif;
}
.cart-subtotal-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #666;
    font-weight: 600;
}
.cart-subtotal-amount {
    font-size: 22px;
    color: #0d0d0d;
    font-weight: 700;
}

.cart-note {
    font-size: 11px;
    color: #888;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.cart-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: #0d0d0d;
    color: #fff;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.cart-checkout-btn:hover { background: #9a7b4f; color: #fff; }

.cart-view-full {
    display: block;
    padding: 10px;
    color: #9a7b4f;
    text-align: center;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}
.cart-view-full:hover { color: #0d0d0d; }

/* Legacy aliases used by homepage.js */
.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 14px;
    padding: 18px 24px;
    border-bottom: 1px solid #f0e4cc;
    align-items: start;
}
.cart-item-image {
    width: 80px;
    height: 100px;
    background-size: cover;
    background-position: center;
    background-color: #f5ede0;
    border-radius: 4px;
    border: 1px solid #e8d5b0;
}
.cart-item-info h4 {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0d0d0d;
    margin: 0 0 4px;
    line-height: 1.35;
}
.cart-item-variant {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    font-weight: 500;
    margin-bottom: 10px;
}
.cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: #0d0d0d;
    margin-bottom: 8px;
}
.cart-qty-control {
    display: inline-flex;
    border: 1px solid #d4af7a;
    border-radius: 4px;
    overflow: hidden;
    align-items: center;
    background: #fff;
}
.cart-qty-btn {
    width: 30px;
    height: 30px;
    background: #fbf8f2;
    border: none;
    color: #9a7b4f;
    cursor: pointer;
    font-size: 15px;
    font-family: 'Jost', sans-serif;
}
.cart-qty-btn:hover { background: #f5ede0; }
.cart-qty-val {
    padding: 0 8px;
    font-size: 13px;
    font-weight: 600;
    min-width: 32px;
    text-align: center;
}
.cart-item-remove {
    background: none;
    border: none;
    color: #bbb;
    cursor: pointer;
    font-size: 15px;
    padding: 4px;
}
.cart-item-remove:hover { color: #c0392b; }

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════ */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    z-index: 100;
    text-decoration: none;
    transition: all 0.4s var(--ease-luxe);
}
.wa-float:hover {
    transform: scale(1.1) rotate(5deg);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.wa-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0;
    animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* ═══════════════════════════════════════════
   TOAST NOTIFICATIONS
   ═══════════════════════════════════════════ */
.khy-toast {
    position: fixed;
    bottom: 100px;
    right: 28px;
    background: var(--ink);
    color: var(--gold-pale);
    padding: 14px 20px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(13, 13, 13, 0.3);
    border-left: 3px solid var(--gold);
    transform: translateX(calc(100% + 40px));
    transition: transform 0.4s var(--ease-luxe);
    display: flex;
    align-items: center;
    gap: 10px;
}
.khy-toast.show { transform: translateX(0); }
.khy-toast i { color: var(--success); font-size: 18px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .container-khyati { padding: 0 30px; }
    .hero-title { font-size: 72px; }
    .hero-content { padding: 0 40px; }
    .section-title { font-size: 48px; }
    .designer-title { font-size: 54px; }
    .newsletter-title { font-size: 24px; }
    .lookbook-title { font-size: 68px; }

    .products-grid, .celebrity-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .instagram-grid { grid-template-columns: repeat(4, 1fr); }

    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-col-brand { grid-column: span 3; }

    .designer-container { grid-template-columns: 1fr; gap: 60px; }

    .usp-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .usp-strip { padding: 48px 0 52px; }
    .usp-strip-inner { padding: 0 20px; }
    .usp-strip-eyebrow { font-size: 20px; margin-bottom: 28px; }
    .usp-item-card { padding: 22px 18px; }
    .usp-item-label { font-size: 13px; }
    .usp-item-desc { font-size: 15px; }
    .usp-item-icon { width: 52px; height: 52px; font-size: 23px; }
}

@media (max-width: 768px) {
    .container-khyati { padding: 0 20px; }

    .navbar-khyati { padding: 16px 20px; }
    .d-none-mobile { display: none !important; }
    .mobile-menu-toggle { display: flex; }

    .brand-khyati { font-size: 28px; letter-spacing: 4px; }

    .hero-section {
        height: auto;
        width: 100%;
        aspect-ratio: 997 / 1577;
        min-height: unset;
        max-height: none;
        margin-top: 0;
        padding-top: 0;
        overflow: hidden;
        background: var(--ivory);
    }

    .hero-slider {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: unset;
    }

    .hero-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        visibility: hidden;
        transform: none;
        transition: opacity 1s var(--ease-luxe), visibility 1s var(--ease-luxe);
    }

    .hero-slide.active {
        position: absolute;
        opacity: 1;
        visibility: visible;
        z-index: 2;
        min-height: unset;
    }

    .hero-slide-inner,
    .hero-slide-media {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .hero-slide-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: unset;
        object-fit: contain;
        object-position: center center;
    }

    .hero-slide.active .hero-slide-img {
        animation: none;
    }

    .hero-dots {
        bottom: 16px;
        left: 24px;
        right: 24px;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .hero-dot.active { transform: none; }

    .hero-dot-line { width: 24px; }
    .hero-dot.active .hero-dot-line { width: 36px; }

    .hero-arrow { display: none; }

    .hero-scroll-hint { display: none; }

    .hero-progress { height: 2px; }

    .hero-fx .hero-vignette,
    .hero-fx .hero-gradient { opacity: 0.5; }

    body.homepage .navbar-khyati.nav-over-hero {
        background: rgba(251, 248, 242, 0.98);
        backdrop-filter: blur(10px);
    }

    body.homepage .navbar-khyati.nav-over-hero .nav-link-khyati,
    body.homepage .navbar-khyati.nav-over-hero .nav-icon-btn,
    body.homepage .navbar-khyati.nav-over-hero .nav-wishlist-link {
        color: var(--charcoal);
    }

    body.homepage .navbar-khyati.nav-over-hero .khy-logo-img {
        filter: none;
    }

    body.homepage .khy-categories-bar.nav-over-hero {
        background: #fbf8f2;
    }

    body.homepage .khy-categories-bar.nav-over-hero .khy-category-link {
        color: #2a2a2a;
    }

    .section-title { font-size: 36px; }
    .section-header { margin-bottom: 48px; }

    .occasions-section,
    .bestsellers-section,
    .new-arrivals-section,
    .celebrity-section,
    .testimonials-section,
    .instagram-section,
    .newsletter-section { padding: 48px 0; }
    .newsletter-card { padding: 32px 24px 28px; }
    .newsletter-title { font-size: 22px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-submit { width: 100%; }

    .designer-section { padding: 70px 20px; }
    .designer-title { font-size: 38px; }
    .designer-quote { font-size: 20px; }
    .designer-image-tag { bottom: -20px; right: -20px; padding: 16px 20px; }
    .designer-tag-year { font-size: 28px; }

    .occasions-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 320px; }
    .occasion-tile-tall { grid-row: span 1; }
    .occasion-name { font-size: 26px; }

    .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .product-name { font-size: 14px; }
    .product-cart-actions { position: absolute; transform: none; background: var(--ink); padding: 10px; bottom:0; left: 0; right: 0;}

    .section-header-flex { flex-direction: column; align-items: flex-start; gap: 20px; }

    .lookbook-section { padding: 70px 20px; min-height: 480px; }
    .lookbook-title { font-size: 48px; }
    .lookbook-sub { font-size: 17px; }

    .celebrity-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .press-band { padding: 50px 0; }
    .press-logos-group { gap: 50px; padding-right: 50px; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }

    .footer-khyati { padding: 60px 0 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-col-brand { grid-column: span 2; }
    .footer-brand { font-size: 36px; }

    .footer-trust { flex-direction: column; text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-payment, .footer-credit { justify-content: center; }

    .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; font-size: 26px; }

    
}

@media (max-width: 480px) {
    .usp-row {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 4px 6px;
    }
    .usp-row::-webkit-scrollbar { display: none; }
    .usp-item {
        flex: 0 0 88%;
        max-width: 320px;
        scroll-snap-align: start;
    }
    .usp-strip-eyebrow { font-size: 18px; margin-bottom: 22px; }
    .usp-item-label { font-size: 13px; }
    .usp-item-desc { font-size: 15px; }

    .hero-title { font-size: 40px; }
    .section-title { font-size: 30px; }
    .designer-initial { font-size: 140px; }
    .occasions-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
    .nav-icons { gap: 12px; }
    .nav-icon-btn { font-size: 17px; padding: 4px; }
    .btn-khyati { padding: 14px 28px; font-size: 10px; letter-spacing: 2.5px; }
}

/* Utilities */


/* Selection color */
::selection { background: var(--gold); color: var(--ivory); }
::-moz-selection { background: var(--gold); color: var(--ivory); }

/* Focus outlines */
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════
   CATEGORY SECTIONS + PROMO BANNERS (Masaba-style)
   Full-width · overlay · text align · button colors
   ═══════════════════════════════════════════════════════ */

.mk-full-bleed {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow-x: clip;
}

.mk-cat-section {
    padding: 0 0 40px;
    background: var(--cream, #fbf8f2);
}

.mk-cat-section + .mk-cat-section {
    padding-top: 8px;
}

.mk-cat-banner.mk-full-bleed {
    display: block;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.mk-cat-products-wrap {
    padding-top: 28px;
    padding-bottom: 4px;
}

.mk-cat-products-wrap .section-header.mk-cat-products-header {
    margin-bottom: 48px;
    max-width: 720px;
}

.mk-cat-cta {
    margin-top: 24px;
}

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

.mk-cat-products-wrap .mk-cat-products.scroll-container {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
}

.mk-cat-products-wrap .mk-cat-products {
    padding: 4px 0 12px;
}

@media (max-width: 1024px) {
    .mk-cat-grid.products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mk-cat-grid.products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

.mk-cat-block {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mk-cat-banner {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 12 / 5;
    min-height: 200px;
    background-color: #1a1208;
    background-size: cover;
    background-position: center center;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
}

.mk-cat-banner-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mk-cat-banner.mk-has-overlay.mk-align-left .mk-cat-banner-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.22) 52%, rgba(0,0,0,0.12) 100%);
}

.mk-cat-banner.mk-has-overlay.mk-align-center .mk-cat-banner-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.15) 100%);
}

.mk-cat-banner.mk-has-overlay.mk-align-right .mk-cat-banner-overlay {
    background: linear-gradient(270deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.22) 52%, rgba(0,0,0,0.12) 100%);
}

.mk-cat-banner-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(24px, 5vw, 72px);
    max-width: none;
    width: 100%;
    box-sizing: border-box;
}

.mk-cat-banner-content.mk-align-left {
    align-items: flex-start;
    text-align: left;
}

.mk-cat-banner-content.mk-align-center {
    align-items: center;
    text-align: center;
}

.mk-cat-banner-content.mk-align-right {
    align-items: flex-end;
    text-align: right;
}

.mk-cat-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af7a;
    margin-bottom: 10px;
}

.mk-cat-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 10px;
    max-width: 720px;
}

.mk-cat-products-wrap .mk-cat-products {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
}

.mk-cat-products-wrap .mk-cat-products::-webkit-scrollbar {
    display: none;
}

.mk-cat-sub {
    font-family: 'Jost', sans-serif;
    font-size: clamp(13px, 1.5vw, 16px);
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 16px;
    max-width: 520px;
}

.mk-cat-products-wrap .mk-cat-products .product-card-scroll {
    flex: 0 0 280px;
    width: 280px;
}

@media (min-width: 901px) {
    .mk-cat-products-wrap .mk-cat-products .product-card-scroll {
        flex: 0 0 calc((100% - 72px) / 4);
        width: calc((100% - 72px) / 4);
        max-width: 300px;
        min-width: 200px;
    }
}

@media (max-width: 900px) {
    .mk-cat-products-wrap .mk-cat-products .product-card-scroll {
        flex: 0 0 260px;
        width: 260px;
    }
}

@media (max-width: 520px) {
    .mk-cat-banner { aspect-ratio: 16 / 9; min-height: 180px; }

    .mk-cat-products-wrap .mk-cat-products {
        gap: 12px;
    }

    .mk-cat-products-wrap .mk-cat-products .product-card-scroll {
        flex: 0 0 72%;
        width: 72%;
        max-width: 280px;
    }
}

/* Legacy row wrapper — no longer full bleed */
.mk-cat-products-row {
    width: 100%;
}

.mk-cat-cta-wrap {
    margin-top: 8px;
}

/* Shared promo / category CTA buttons */
.mk-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
    border: 1.5px solid transparent;
    margin-top: 4px;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

a:hover .mk-promo-btn {
    transform: translateY(-1px);
}

.mk-btn-gold {
    background: #c9a227;
    color: #1a1208;
}

.mk-btn-dark {
    background: #1a1208;
    color: #fff;
}

.mk-btn-light {
    background: #f5f0e8;
    color: #1a1208;
}

.mk-btn-white {
    background: #fff;
    color: #1a1208;
}

.mk-btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
}

/* Promo banners — full viewport width on homepage */
.mk-promo {
    width: 100%;
    margin: 0;
}

.mk-promo-home {
    max-width: none;
}

.mk-promo-link {
    display: block;
    position: relative;
    aspect-ratio: 12 / 5;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}

.mk-promo-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.mk-promo-link:hover .mk-promo-media {
    transform: scale(1.03);
}

.mk-promo-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mk-promo-link.mk-has-overlay.mk-align-left .mk-promo-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 55%, rgba(0,0,0,0.1) 100%);
}

.mk-promo-link.mk-has-overlay.mk-align-center .mk-promo-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.48) 48%, rgba(0,0,0,0.48) 52%, rgba(0,0,0,0.12) 100%);
}

.mk-promo-link.mk-has-overlay.mk-align-right .mk-promo-overlay {
    background: linear-gradient(270deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 55%, rgba(0,0,0,0.1) 100%);
}

.mk-promo-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(20px, 4vw, 72px);
    max-width: none;
    width: 100%;
    box-sizing: border-box;
}

.mk-promo-content.mk-align-left {
    align-items: flex-start;
    text-align: left;
}

.mk-promo-content.mk-align-center {
    align-items: center;
    text-align: center;
}

.mk-promo-content.mk-align-right {
    align-items: flex-end;
    text-align: right;
}

.mk-promo-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #d4af7a;
    margin-bottom: 8px;
}

.mk-promo-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 12px;
    max-width: 720px;
}

/* Shop in-feed promo — spans full grid row */
.shop-promo-infeed {
    grid-column: 1 / -1;
    width: 100%;
    margin: 8px 0 16px;
}

.shop-promo-infeed .mk-promo {
    width: 100%;
}

.shop-promo-infeed .mk-promo-link {
    aspect-ratio: 12 / 4;
    min-height: 140px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .mk-promo-link { aspect-ratio: 16 / 9; }
    .shop-promo-infeed .mk-promo-link { aspect-ratio: 16 / 9; min-height: 120px; }
}
