 /* ============================================================
   FEGBER ITALIA — COMPLETE STYLESHEET
   Includes all original styles + all requested changes
   ============================================================ */

/* ── Google Fonts (add to <head> if not already there) ──────
   <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,600&family=Montserrat:wght@400;500;600;700&display=swap" rel="stylesheet">
   ─────────────────────────────────────────────────────────── */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
    --gold:       #C8A96E;
    --gold-light: #D4B87A;
    --gold-dark:  #A8864E;
    --black:      #0A0A0A;
    --dark:       #111111;
    --dark-mid:   #1A1A1A;
    --dark-light: #222222;
    --gray:       #888888;
    --gray-light: #BBBBBB;
    --white:      #FFFFFF;
    --off-white:  #F5F4F0;
    --border:     rgba(200, 169, 110, 0.2);
    --navy:       #1a2744;   /* top bar background */
}

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

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--off-white);
    color: var(--black);
    overflow-x: hidden;
    width: 100%;
}

img, video {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   CHANGE 4 — TOP BAR (Diana Group style)
   Phone + Email left | Socials + Lang + CTA right
   ============================================================ */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    padding: 0 48px;
    background: var(--navy);
    color: rgba(255,255,255,0.80);
    font-size: 12px;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1001;          /* above nav */
    box-sizing: border-box;
    line-height: 1;
    flex-shrink: 0;
}

/* LEFT: phone + email */
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.80);
    text-decoration: none;
    font-size: 12px;
    white-space: nowrap;
    transition: color .2s;
}
.top-bar-item:hover { color: #fff; }
.top-bar-item svg   { flex-shrink: 0; opacity: .85; }

/* RIGHT: socials + divider + lang + divider + CTA */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Social icons */
.top-bar-socials {
    display: flex;
    align-items: center;
    gap: 13px;
}

.top-bar-social {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color .2s;
    line-height: 1;
}
.top-bar-social:hover { color: #fff; }

/* Vertical divider */
.top-bar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.20);
    flex-shrink: 0;
}

/* ── Top-bar language selector ──────────────────────────────── */
.tb-lang-selector { position: relative; }

.tb-lang-current {
    display: flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    cursor: pointer;
    padding: 4px 2px;
    white-space: nowrap;
    transition: color .2s;
    font-family: inherit;
    letter-spacing: 0.3px;
}
.tb-lang-current:hover { color: #fff; }

#tbLangChevron { transition: transform .2s; flex-shrink: 0; }

.tb-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #050506;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    min-width: 148px;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.40);
    overflow: hidden;
}
.tb-lang-dropdown.tb-open { display: block; }

.tb-lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    transition: background .15s, color .15s;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tb-lang-option:last-child { border-bottom: none; }
.tb-lang-option:hover  { background: rgba(255,255,255,0.08); color: #fff; }
.tb-lang-option.active { color: #fff; font-weight: 600; background: rgba(255,255,255,0.05); }

/* ── Visit the Shop button (pill) ───────────────────────────── */
.tb-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    background: #e8472a;
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    line-height: 1;
    border: none;
    cursor: pointer;
}
.tb-shop-btn:hover {
    background: #cf3519;
    transform: translateY(-1px);
    color: #fff;
}

/* ============================================================
   MAIN NAV
   Fixed, sits directly below .top-bar — zero gap
   ============================================================ */
nav,
.main-nav {
    position: fixed;
    top: 40px;           /* height of top-bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin: 0 !important;
    border-top: none !important;
    box-sizing: border-box;
}

/* ── Logo ───────────────────────────────────────────────────── */
.nav-logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}
.nav-logo a:hover,
.nav-logo a:focus { text-decoration: none; color: inherit; }

/* CHANGE 1: Logo white — invert black text to white, no bg */


/* CHANGE 1 (footer): same fix applied to footer logo */
.footer-logo{
    height:56px;
    width:auto;
    display:block;

    filter:none !important;
    -webkit-filter:none !important;

    mix-blend-mode:normal !important;

    opacity:1 !important;
}

/* ── Nav links ──────────────────────────────────────────────── */
.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color .3s;
}
.nav-links a:hover  { color: var(--gold); }
.nav-links a.active {
    color: var(--gold);
    position: relative;
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0; right: 0;
    height: 2px;
    background: var(--gold);
}

/* ── Nav right (mobile toggle) ──────────────────────────────── */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

/* ── Old nav lang selector (kept for backward compat) ────────
   Now hidden — replaced by top-bar selector               */
.nav-right .lang-selector,
.nav-right .btn-nav {
    display: none;
}

/* ============================================================
   HERO
   CHANGE 6: title on one line
   CHANGE 7: tagline below headline
   ============================================================ */
.hero {
    margin-top: 104px;   /* 40px top-bar + 64px nav */
    background: var(--black);
    min-height: calc(100vh - 104px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-left {
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* CHANGE 7: eyebrow/tagline below headline */
.hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
}

/* CHANGE 6: one-line title */
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 0;
    /* title flows on one line naturally now */
}
.hero-title strong {
    font-weight: 700;
    display: inline; /* was block — changed to inline for 1 line */
}
.hero-title .accent {
    color: var(--gold);
    font-style: italic;
    font-weight: 600;
}

/* CHANGE 7: tagline "Design Bathrooms. Value That Lasts." below title */
.hero-tagline {
    display: block;
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
}

.hero-desc {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    max-width: 340px;
    margin: 28px 0 48px;
}

.hero-ctas { display: flex; gap: 16px; }

.btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 15px 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .3s;
    font-family: inherit;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 15px 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all .3s;
    font-family: inherit;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Hero right / bathroom illustration */
.hero-right { position: relative; overflow: hidden; }
.hero-img {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #0f3460 60%, #1a1a2e 100%);
    position: relative;
}
.hero-img::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 60% 40%, rgba(200,169,110,0.15) 0%, transparent 60%),
        linear-gradient(160deg, #0d1117 0%, #1c1c2e 40%, #0a0a0a 100%);
}



.vanity { position: absolute; bottom: 15%; left: 15%; right: 15%; height: 28%; }
.vanity-counter {
    position: absolute; bottom: 40%; left: 0; right: 0; height: 8px;
    background: linear-gradient(90deg, transparent, rgba(200,169,110,0.4), transparent);
    border-radius: 2px;
}
.vanity-cabinet {
    position: absolute; bottom: 0; left: 8%; right: 8%; height: 38%;
    background: linear-gradient(180deg, #1e1e1e, #151515);
    border: 1px solid rgba(200,169,110,0.15); border-radius: 2px;
}
.vanity-handles {
    position: absolute; bottom: 16%; left: 28%; right: 28%; height: 3px;
    background: rgba(200,169,110,0.5); border-radius: 2px;
}
.mirror-frame {
    position: absolute; top: 8%; left: 22%; right: 22%; height: 38%;
    border: 2px solid rgba(200,169,110,0.3); border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(200,169,110,0.05));
    box-shadow: 0 0 40px rgba(200,169,110,0.15), inset 0 0 30px rgba(0,0,0,0.5);
}
.shelf-right {
    position: absolute; right: 4%; top: 12%; bottom: 25%; width: 14%;
    background: linear-gradient(180deg, #1a1a1a, #111);
    border: 1px solid rgba(200,169,110,0.12); border-radius: 2px;
}
.shelf-line {
    position: absolute; left: 8%; right: 8%; height: 1px;
    background: rgba(200,169,110,0.2);
}

/* ============================================================
   HERO BADGES
   ============================================================ */
.hero-badges {
    background: var(--dark-mid);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.badge-item {
    padding: 32px 40px;
    display: flex; align-items: flex-start; gap: 20px;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.badge-item:last-child { border-right: none; }
.badge-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.badge-icon svg { width: 20px; height: 20px; }
.badge-title { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; color: var(--white); text-transform: uppercase; margin-bottom: 4px; }
.badge-desc  { font-size: 11px; color: var(--gray); line-height: 1.6; }

/* ============================================================
   VIDEO BANNER (Materials section — CHANGE 3: removed from nav)
   ============================================================ */
.video-banner {
    position: relative; width: 100%; height: 92vh;
    overflow: hidden; background: transparent;
}
.video-banner .video-wrap { position: absolute; inset: 0; }
.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: opacity 1s ease;
    filter: brightness(1.18) contrast(1.08) saturate(1.08);
    transform: scale(1.01);
    backface-visibility: hidden;
}
.hero-video.active-video { opacity: 1; }
.video-banner-overlay {
    display: none; position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.02) 40%, rgba(0,0,0,0.12) 100%);
    pointer-events: none;
}
.video-banner-label {
    position: absolute; z-index: 3;
    left: 50%; bottom: 80px; transform: translateX(-50%);
    text-align: center; pointer-events: none; width: 100%; padding: 0 20px;
}
.video-banner-label .vb-eyebrow {
    font-size: 10px; font-weight: 700; letter-spacing: 5px;
    color: var(--gold); text-transform: uppercase; margin-bottom: 14px;
}
.video-banner-label .vb-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px; font-weight: 300; color: var(--white);
    line-height: 1; white-space: nowrap; letter-spacing: -1px;
}
.video-banner-label .vb-title em { font-style: italic; color: var(--gold); }
.vb-arrow {
    position: absolute; top: 50%; z-index: 4; transform: translateY(-50%);
    width: 52px; height: 52px;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(0,0,0,0.35); backdrop-filter: blur(6px);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: border-color .3s, background .3s, transform .2s;
}
.vb-arrow:hover { border-color: var(--gold); background: rgba(200,169,110,0.18); transform: translateY(-50%) scale(1.07); }
.vb-arrow svg { width: 20px; height: 20px; }
.vb-arrow.prev { left: 36px; }
.vb-arrow.next { right: 36px; }
.vb-dots {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 4; display: flex; gap: 10px; align-items: center;
}
.vb-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.5);
    cursor: pointer; transition: background .3s, transform .3s, width .3s;
}
.vb-dot.active { background: var(--gold); border-color: var(--gold); width: 28px; border-radius: 4px; }
.vb-progress {
    position: absolute; bottom: 0; left: 0; z-index: 4;
    height: 3px; width: 0%; background: var(--gold); transition: width linear;
}
.vb-counter {
    position: absolute; bottom: 28px; right: 40px; z-index: 4;
    font-size: 11px; font-weight: 600; letter-spacing: 3px; color: rgba(255,255,255,0.55);
}
.vb-counter span { color: var(--gold); }

/* ============================================================
   TWO PATHS / CHOOSE YOUR PATH
   ============================================================ */
.section-scegli {
    background: var(--off-white);
    padding: 100px 0 0; text-align: center;
}
.section-eyebrow {
    font-size: 10px; font-weight: 600; letter-spacing: 4px;
    color: var(--gray); text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 600; letter-spacing: -0.5px;
    color: var(--black); margin-bottom: 60px;
}
.gold-divider { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 24px; }

.two-paths { display: grid; grid-template-columns: 1fr 1fr; }
.path-card { position: relative; overflow: hidden; height: 480px; cursor: pointer; }
.path-card-bg { position: absolute; inset: 0; transition: transform .6s ease; }
.path-card:hover .path-card-bg { transform: scale(1.04); }
.path-card-bg.light-bg { background: linear-gradient(135deg, #e8e0d0 0%, #d4c8b0 40%, #c8b898 100%); }
.path-card-bg.dark-bg  { background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 40%, #111 100%); }
.light-interior {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 150px 100px at 55% 35%, rgba(200,169,110,0.2) 0%, transparent 70%),
                radial-gradient(ellipse 200px 40px at 50% 75%, rgba(0,0,0,0.1) 0%, transparent 70%);
}
.dark-interior {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 200px 120px at 50% 30%, rgba(200,169,110,0.12) 0%, transparent 70%),
                radial-gradient(ellipse 300px 50px at 50% 75%, rgba(200,169,110,0.06) 0%, transparent 70%);
}
.path-card-content {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 36px;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
    transition: transform .4s;
}
.path-card:hover .path-card-content { transform: translateY(-8px); }
.path-label {
    font-size: 9px; font-weight: 700; letter-spacing: 3px;
    color: var(--gold); text-transform: uppercase; margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
}
.path-label::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.path-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 600; color: var(--white); line-height: 1.2; margin-bottom: 12px;
}
.path-desc { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 24px; }
.btn-path {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 24px; font-size: 10px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; cursor: pointer; border: none;
    transition: all .3s; font-family: inherit;
}
.btn-path.gold-btn{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    color:#fff;

    border:1px solid rgba(255,255,255,.30);

    transition:.35s;
}

.btn-path.gold-btn:hover{

    background:rgba(255,255,255,.18);

    border-color:var(--gold);

    color:var(--gold);

}
.btn-path.outline-btn{

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.25);

    color:#fff;

}

.btn-path.outline-btn:hover{

    background:rgba(255,255,255,.15);

    border-color:var(--gold);

    color:var(--gold);

}
.btn-path svg { width: 14px; height: 14px; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    background: var(--black);
    display: grid; grid-template-columns: 1fr 1fr 1fr auto; align-items: center;
}
.stats-intro { padding: 56px 48px; border-right: 1px solid rgba(255,255,255,0.08); }
.stats-intro-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.stats-intro-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; color: var(--white); line-height: 1.2; }
.stats-intro-sub { font-size: 11px; color: var(--gray); margin-top: 8px; line-height: 1.6; }
.stat-box { padding: 56px 40px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 700; color: var(--white); line-height: 1; letter-spacing: -2px; }
.stat-number span { color: var(--gold); }
.stat-label { font-size: 9px; font-weight: 700; letter-spacing: 3px; color: var(--gray-light); text-transform: uppercase; margin-top: 8px; }
.stat-cta {
    background: var(--gold); padding: 56px 48px;
    display: flex; flex-direction: column; justify-content: center; min-width: 260px;
}
.stat-cta-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: 3px; color: rgba(0,0,0,0.6); text-transform: uppercase; margin-bottom: 8px; }
.stat-cta-value { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 700; color: var(--black); line-height: 1; }
.stat-cta-desc { font-size: 11px; color: rgba(0,0,0,0.7); margin: 8px 0 20px; line-height: 1.6; }
.stat-cta-link {
    font-size: 10px; font-weight: 700; letter-spacing: 2px;
    color: var(--black); text-decoration: none; text-transform: uppercase;
    display: flex; align-items: center; gap: 8px;
}
.stat-cta-link::after { content: '→'; font-size: 14px; }

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections-section { background: var(--off-white); padding: 100px 80px; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.section-header-title { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 600; color: var(--black); }
.section-header-link {
    font-size: 10px; font-weight: 700; letter-spacing: 2px;
    color: var(--gold); text-transform: uppercase; text-decoration: none;
    display: flex; align-items: center; gap: 8px;
}
.section-header-link::after { content: '→'; font-size: 14px; }

.collections-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.collection-card  { grid-column: span 1; cursor: pointer; overflow: hidden; position: relative; transition: transform .4s; }
.collection-card:hover { transform: translateY(-4px); }
.collection-card.active { grid-column: 1 / -1; }

.collection-main { cursor: pointer; }

.collection-img {
    height: 260px; position: relative; overflow: hidden;
}
.collection-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 60%);
    transition: opacity .3s;
}
.collection-card:hover .collection-img::after { opacity: 0.3; }

.collection-cover-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0.55;
    transition: opacity .5s ease, transform .6s ease;
}
.collection-card:hover .collection-cover-img { opacity: 0.75; transform: scale(1.04); }

.col-minimal { background: linear-gradient(135deg, #e8e4dc 0%, #d0c8bc 100%); }
.col-natural  { background: linear-gradient(135deg, #c8b898 0%, #a89070 40%, #8a7260 100%); }
.col-luxury   { background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #111 100%); }
.col-soft     { background: linear-gradient(135deg, #2a3528 0%, #3a4a38 50%, #1e2a1e 100%); }
.col-generic  { background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #111 100%); }
.col-inner    { position: absolute; inset: 0; }
.col-minimal .col-inner { background: radial-gradient(ellipse 100px 70px at 50% 35%, rgba(200,169,110,0.3) 0%, transparent 70%), radial-gradient(ellipse 150px 20px at 50% 75%, rgba(0,0,0,0.15) 0%, transparent 70%); }
.col-natural  .col-inner { background: radial-gradient(ellipse 100px 70px at 50% 30%, rgba(255,220,150,0.25) 0%, transparent 70%), radial-gradient(ellipse 180px 25px at 50% 72%, rgba(0,0,0,0.2) 0%, transparent 70%); }
.col-luxury   .col-inner { background: radial-gradient(ellipse 120px 80px at 50% 32%, rgba(200,169,110,0.2) 0%, transparent 70%), radial-gradient(ellipse 160px 20px at 50% 76%, rgba(200,169,110,0.1) 0%, transparent 70%); }
.col-soft     .col-inner { background: radial-gradient(ellipse 100px 65px at 50% 35%, rgba(160,200,150,0.2) 0%, transparent 70%), radial-gradient(ellipse 150px 20px at 50% 75%, rgba(0,0,0,0.2) 0%, transparent 70%); }

.collection-info { padding: 20px 0 4px; background: var(--off-white); }
.collection-name { font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--black); margin-bottom: 4px; }
.collection-desc { font-size: 11px; color: var(--gray); line-height: 1.5; }
.collection-card.active .expand-hint::after { content: ' ↑'; }
.collection-card:not(.active) .expand-hint::after { content: ''; }

/* Product expand */
.product-expand { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; width: 100%; }
.collection-card.active .product-expand { max-height: 800px; padding-top: 25px; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; }
.product-item { width: 100%; border-radius: 18px; overflow: hidden; }

.product-card-link {
    display: block; position: relative; border-radius: 18px; overflow: hidden; text-decoration: none;
}
.product-card-link img { width: 100%; height: 340px; object-fit: cover; display: block; border-radius: 18px; transition: transform .4s ease; }
.product-card-link:hover img { transform: scale(1.05); }
.product-no-img {
    width: 100%; height: 340px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex; align-items: center; justify-content: center;
    color: rgba(200,169,110,0.4); border-radius: 18px;
}
.product-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 16px 16px;
    background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, transparent 100%);
    border-radius: 0 0 18px 18px;
    transform: translateY(4px); transition: transform .3s ease;
}
.product-card-link:hover .product-card-overlay { transform: translateY(0); }
.product-card-name  { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: #fff; text-transform: uppercase; margin-bottom: 4px; }
.product-card-price { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--gold); margin-bottom: 4px; }
.product-card-stock { font-size: 10px; letter-spacing: 1px; color: rgba(255,255,255,0.55); }
.product-card-stock--out { color: #e57373; }

/* ============================================================
   CORNER PROJECT
   ============================================================ */
.corner-section { background: var(--black); display: grid; grid-template-columns: 1fr 1fr; }
.corner-left { padding: 80px; display: flex; flex-direction: column; justify-content: center; }
.corner-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.corner-title { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 600; color: var(--white); line-height: 1.15; margin-bottom: 24px; }
.corner-title em { color: var(--gold); font-style: normal; }
.corner-desc { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 440px; margin-bottom: 40px; }
.corner-features { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.corner-feat { display: flex; flex-direction: column; gap: 8px; }
.corner-feat-icon { width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 4px; }
.corner-feat-title { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; color: var(--white); text-transform: uppercase; }
.corner-feat-desc  { font-size: 10px; color: var(--gray); line-height: 1.6; }
.corner-right {
    position: relative; min-height: 500px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.corner-right::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 300px 200px at 50% 40%, rgba(200,169,110,0.1) 0%, transparent 70%),
                linear-gradient(135deg, #0f0f0f 0%, #1c1c1c 100%);
}
.showroom-scene {
    position: absolute; bottom: 15%; left: 10%; right: 10%; height: 60%;
    border: 1px solid rgba(200,169,110,0.15);
    background: linear-gradient(135deg, #141414, #1a1a1a);
    display: flex; align-items: center; justify-content: center;
    border-radius: 2px; box-shadow: 0 0 60px rgba(200,169,110,0.08);
}
.showroom-logo { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; letter-spacing: 6px; color: rgba(200,169,110,0.5); }
.showroom-shelves { position: absolute; left: 0; right: 0; top: 0; height: 50%; display: flex; gap: 3px; padding: 0 3px; }
.showroom-shelf { flex: 1; background: rgba(200,169,110,0.06); border: 1px solid rgba(200,169,110,0.1); border-radius: 1px; }

/* ============================================================
   CHANGE 9 — ABOUT US SECTION (company profile)
   ============================================================ */
.about-section {
    background: var(--black);
    padding: 100px 80px;
}
.about-inner { max-width: 860px; margin: 0 auto; }
.about-profile { margin-top: 40px; }
.about-profile-label {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 24px;
    padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.about-profile-text { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,0.75); margin-bottom: 20px; }
.about-profile-text:last-child { margin-bottom: 0; }

/* ============================================================
   FOOTER BADGES
   ============================================================ */
.footer-badges {
    background: var(--dark);
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.foot-badge { padding: 40px 32px; display: flex; align-items: center; gap: 18px; border-right: 1px solid rgba(255,255,255,0.06); }
.foot-badge:last-child { border-right: none; }
.foot-badge-icon { width: 44px; height: 44px; flex-shrink: 0; color: var(--gold); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.foot-badge-title { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--white); text-transform: uppercase; }
.foot-badge-desc  { font-size: 10px; color: var(--gray); margin-top: 3px; }

/* ============================================================
   FOOTER
   CHANGE 10: year updated to 2026 (update in Blade template)
   ============================================================ */
footer {
    background: var(--black);
    padding: 60px 80px 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
}
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; letter-spacing: 5px; color: var(--white); margin-bottom: 4px; }
.footer-brand-sub  { font-size: 9px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.footer-brand-desc { font-size: 12px; color: var(--gray); line-height: 1.8; max-width: 280px; }
.footer-col-title  { font-size: 10px; font-weight: 700; letter-spacing: 3px; color: var(--white); text-transform: uppercase; margin-bottom: 20px; }
.footer-col a { display: block; color: var(--gray); font-size: 12px; text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    background: var(--black); padding: 20px 80px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 11px; color: var(--gray); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeUp .8s ease both; }
.hero-eyebrow  { animation-delay: .1s; }
.hero-title    { animation-delay: .25s; }
.hero-tagline  { animation-delay: .35s; }
.hero-desc     { animation-delay: .4s; }
.hero-ctas     { animation-delay: .55s; }

[data-i18n] { transition: opacity 0.2s ease; }
.lang-fade   { opacity: 0 !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── ≤1200px ─────────────────────────────────────────────── */
@media screen and (max-width: 1200px) {
    .hero { grid-template-columns: 1fr; }
    .hero-left { text-align: center; align-items: center; padding: 120px 40px 60px; }
    .hero-desc { max-width: 700px; }
    .hero-right { min-height: 600px; }
    .collections-grid { grid-template-columns: repeat(2, 1fr); }
    .corner-section   { grid-template-columns: 1fr; }
    .footer-badges    { grid-template-columns: repeat(2, 1fr); }
    footer { grid-template-columns: repeat(2, 1fr); }
    .nav-links { gap: 22px; }
    .nav-links a { font-size: 10px; letter-spacing: 1.5px; }
}

/* ── ≤992px ──────────────────────────────────────────────── */
@media screen and (max-width: 992px) {
    .top-bar { padding: 0 20px; height: auto; min-height: 36px; padding-top: 6px; padding-bottom: 6px; flex-wrap: wrap; gap: 6px; }
    .top-bar-item span { display: none; }

    nav, .main-nav { top: 0; height: auto; padding: 14px 20px; flex-wrap: wrap; gap: 14px; position: relative; }
    .hero { margin-top: 0; }

    .nav-links { width: 100%; justify-content: center; flex-wrap: wrap; gap: 14px; }
    .nav-right  { width: 100%; justify-content: center; }

    .hero-left { padding: 60px 30px; }
    .hero-title { font-size: 52px; }
    .hero-right { min-height: 500px; }

    .hero-badges { grid-template-columns: 1fr; }
    .badge-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .two-paths   { grid-template-columns: 1fr; }
    .stats-section { grid-template-columns: 1fr; }
    .stats-intro, .stat-box, .stat-cta { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .collections-section { padding: 80px 30px; }
    .collections-grid { grid-template-columns: 1fr; }
    .corner-left { padding: 70px 30px; }
    .corner-features { grid-template-columns: 1fr; }
    .footer-badges { grid-template-columns: 1fr; }
    .foot-badge { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    footer { grid-template-columns: 1fr; padding: 60px 30px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .about-section { padding: 60px 30px; }
}

/* ── ≤768px ──────────────────────────────────────────────── */
@media screen and (max-width: 768px) {
    .top-bar-left  { gap: 12px; }
    .top-bar-right { gap: 10px; }

    nav, .main-nav { padding: 12px 16px; }
    .logo-img { height: 55px !important; max-width: 180px; }
    .nav-links a { font-size: 9px; letter-spacing: 1px; }

    .hero-left { padding: 50px 20px 40px; }
    .hero-title { font-size: 40px; line-height: 1.1; white-space: normal; }
    .hero-desc  { font-size: 12px; line-height: 1.7; margin: 20px 0 30px; }
    .hero-ctas  { flex-direction: column; width: 100%; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; }
    .hero-right { min-height: 340px; }

    .video-banner { height: 70vh; }
    .video-banner-label { bottom: 60px; padding: 0 16px; width: 90%; }
    .video-banner-label .vb-title { font-size: 32px; white-space: normal; line-height: 1.2; }
    .vb-arrow { width: 40px; height: 40px; }
    .vb-arrow.prev { left: 10px; }
    .vb-arrow.next { right: 10px; }

    .section-title { font-size: 36px; padding: 0 16px; }
    .path-card { height: 380px; }
    .path-card-content { padding: 24px; }
    .path-title { font-size: 24px; }

    .stats-intro, .stat-box, .stat-cta { padding: 40px 20px; }
    .stat-number { font-size: 48px; }

    .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .section-header-title { font-size: 32px; }
    .collection-img { height: 220px; }
    .product-grid { grid-template-columns: 1fr; }
    .product-item img, .product-card-link img, .product-no-img { height: 260px; }

    .corner-left  { padding: 60px 20px; }
    .corner-title { font-size: 34px; }
    .corner-right { min-height: 300px; }
    .foot-badge   { padding: 24px 20px; }
    footer        { padding: 50px 20px; }
    .footer-bottom { padding: 20px; }
    .about-section { padding: 60px 20px; }
}
.nav-logo a,
.nav-logo a:hover,
.nav-logo a:focus,
.nav-logo a:active,
.nav-logo img,
.nav-logo img:hover {
    color: inherit !important;
    filter: none !important;
    opacity: 1 !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    text-decoration: none !important;
    transition: none !important;
    animation: none !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.nav-logo a::before,
.nav-logo a::after,
.nav-logo a:hover::before,
.nav-logo a:hover::after {
    content: none !important;
    display: none !important;
}
.footer-logo-link{
    display:inline-block;
    margin-bottom:20px;
}

.footer-logo-link img{
    display:block;
    height:56px;
    width:auto;

    filter:none !important;
    -webkit-filter:none !important;

    mix-blend-mode:normal !important;

    opacity:1 !important;
    visibility:visible !important;
}

/* ── ≤480px ──────────────────────────────────────────────── */
@media screen and (max-width: 480px) {
    .logo-img { height: 55px !important; max-width: 150px; }
    .hero-title { font-size: 32px; }
    .hero-eyebrow, .hero-tagline { font-size: 9px; letter-spacing: 2px; }
    .hero-desc { font-size: 11px; }
    .video-banner { height: 60vh; }
    .video-banner-label { bottom: 50px; }
    .video-banner-label .vb-title { font-size: 24px; }
    .section-title, .section-header-title, .corner-title { font-size: 28px; }
    .path-title { font-size: 20px; }
    .stat-number { font-size: 40px; }
    .stat-cta-value { font-size: 42px; }
    .vb-arrow { width: 34px; height: 34px; }
    .vb-arrow svg { width: 15px; height: 15px; }
    .tb-shop-btn span { display: none; }
}

/* ============================================================
   FEGBER — NAV FIX PATCH
   Add/replace these rules in your main <style> block.
   They override the old conflicting nav rules.
   ============================================================ */

/*
  OLD rules to REMOVE or comment out from your stylesheet:
  ─────────────────────────────────────────────────────────
  nav,
  .main-nav {
      position: fixed;
      top: 40px;       ← THIS was wrong when top-bar didn't render
      ...
  }

  .hero {
      margin-top: 104px;   ← no longer needed
  }
  ─────────────────────────────────────────────────────────

  REPLACE WITH the rules below (already in header.blade.php
  but listed here for clarity if you keep one stylesheet):
*/

/* The .site-header wrapper is fixed — nav inside it is static */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

/* Nav is static inside the fixed wrapper — no top: offset needed */
nav.main-nav,
nav {
    position: static !important;
    top: auto !important;
    width: 100%;
    background: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin: 0 !important;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* Hero: no margin-top — body padding-top handles the offset */
.hero {
    margin-top: 0 !important;
}

/* Body offset = top-bar (40px) + nav (64px) = 104px */
body {
    padding-top: 0px;
}

/* On mobile where top-bar hides, reduce to just nav height */
@media screen and (max-width: 992px) {
    body { padding-top: 64px; }
}
/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
    background: var(--off-white);
    padding: 100px 80px;
}
.team-header {
    text-align: center;
    margin-bottom: 60px;
}
.team-header .section-eyebrow {
    margin-bottom: 16px;
}
.team-header .section-title {
    margin-bottom: 0;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.team-card {
    background: var(--white);
    overflow: hidden;
    position: relative;
    transition: transform .4s, box-shadow .4s;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.team-card-img {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #1a1a1a;
}
.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .6s ease;
    filter: grayscale(20%);
}
.team-card:hover .team-card-img img {
    transform: scale(1.05);
    filter: grayscale(0%);
}
.team-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,10,10,0.65) 0%, transparent 55%);
    z-index: 1;
}
.team-card-social {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity .3s, transform .3s;
}
.team-card:hover .team-card-social {
    opacity: 1;
    transform: translateX(0);
}
.team-social-btn {
    width: 34px;
    height: 34px;
    background: rgba(10,10,10,0.7);
    border: 1px solid rgba(200,169,110,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: background .2s, border-color .2s;
    backdrop-filter: blur(4px);
}
.team-social-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.team-social-btn svg {
    width: 14px;
    height: 14px;
}
.team-card-body {
    padding: 24px 24px 28px;
    border-bottom: 2px solid transparent;
    transition: border-color .3s;
    background: var(--white);
    position: relative;
}
.team-card:hover .team-card-body {
    border-bottom-color: var(--gold);
}
.team-card-body::before {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 1px;
    background: var(--border);
}
.team-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
    line-height: 1.2;
}
.team-card-role {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.team-card-email {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    color: var(--gray);
    text-decoration: none;
    transition: color .2s;
    word-break: break-all;
}
.team-card-email:hover { color: var(--gold); }
.team-card-email svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    color: var(--gold);
}

@media screen and (max-width: 1200px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 768px) {
    .team-section { padding: 80px 30px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .team-card-img { height: 260px; }
    .team-card-name { font-size: 18px; }
}
@media screen and (max-width: 480px) {
    .team-section { padding: 60px 20px; }
    .team-grid { grid-template-columns: 1fr; }
}
/* ── Logo — dissolve black box + match navbar theme ─────── */

.nav-logo a:hover .logo-img {
    /* Gold tint on hover */
    filter: brightness(1.3) contrast(1.2)
            sepia(0.7) saturate(2.5)
            hue-rotate(5deg);
    -webkit-filter: brightness(1.3) contrast(1.2)
            sepia(0.7) saturate(2.5)
            hue-rotate(5deg);
    transform: translateY(-2px) scale(1.03);
}

/* ── Nav logo wrapper ───────────────────────────────────── */
.nav-logo {
    display: flex;
    align-items: center;
    position: relative;
    padding: 4px 0;                        /* breathing room top/bottom */
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

/* Gold sweep underline on hover */
.nav-logo a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1.5px;                         /* slightly thicker line */
    background: linear-gradient(90deg, var(--gold, #c9a96e), transparent);
    transition: width .4s ease;
}

.nav-logo a:hover::after {
    width: 100%;
}

/* ── Footer logo ────────────────────────────────────────── */


/* ══════════════════════════════════════════════
   FEGBER — Text Logo (nav + footer)
   ══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@800&display=swap');

/* ── Base logo text ─────────────────────────── */
.logo-text {
    font-family: 'Barlow', 'Arial Black', sans-serif;
    font-weight: 800;
    font-size: 34px;                  /* big & commanding */
    letter-spacing: -0.5px;
    line-height: 1;
    color: #F0EAD6;                   /* cream — matches your image exactly */
    text-decoration: none;
    display: block;
    transition: color .3s ease, transform .3s ease;
    user-select: none;
}

/* ── Hover: gold tint ───────────────────────── */
.nav-logo a:hover .logo-text {
    color: #C8A96E;
    transform: translateY(-1px);
}

/* ── Gold sweep underline on hover ─────────── */
.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}
.nav-logo a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0%;
    height: 1.5px;
    background: linear-gradient(90deg, #C8A96E, transparent);
    transition: width .4s ease;
}
.nav-logo a:hover::after { width: 100%; }

/* ── Footer variant ─────────────────────────── */
.logo-text--footer {
    font-size: 38px;                  /* slightly larger in footer */
    color: #F0EAD6;
}
.footer-logo-link {
    text-decoration: none;
    display: inline-block;
}
.footer-logo-link:hover .logo-text--footer {
    color: #C8A96E;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 768px) {
    .logo-text         { font-size: 26px; }
    .logo-text--footer { font-size: 30px; }
}
@media (max-width: 480px) {
    .logo-text         { font-size: 22px; }
    .logo-text--footer { font-size: 26px; }
}

.path-card {
    position: relative;
    overflow: hidden;
    height: 480px;
    cursor: pointer;
}

/* bg fills the card absolutely */
.path-card-bg {
    position: absolute;
    inset: 0;
    transition: transform .6s ease;
    /* remove old gradient classes — image is inline now */
}

/* zoom on hover */
.path-card:hover .path-card-bg {
    transform: scale(1.04);
}

/* content must sit above the overlay */
.path-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 36px;
    /* remove old gradient background — overlay div handles it */
    background: none;
    transition: transform .4s;
    z-index: 2;
}
.path-card:hover .path-card-content {
    transform: translateY(-8px);
}
/* ================= FOOTER LOGO FIX ================= */

.footer-logo-link{
    display:block !important;
    margin-bottom:30px !important;
}

.footer-logo{
    display:block !important;
    width:220px !important;
    height:auto !important;

    opacity:1 !important;
    visibility:visible !important;

    filter:none !important;
    -webkit-filter:none !important;

    mix-blend-mode:normal !important;

    transform:none !important;

    position:relative !important;
    z-index:9999 !important;
}

/* =========================================
   FEGBER LOGO
========================================= */

.site-logo{
    display:block;
    width:auto;
    height:58px;
    object-fit:contain;

    filter:none !important;
    -webkit-filter:none !important;

    mix-blend-mode:normal !important;

    opacity:1 !important;
    visibility:visible !important;
}

/* Header */
.nav-logo .site-logo{
    height:58px;
}

/* Footer */
.footer-logo-link .site-logo{
    height:58px;
}

.products-row-wrap {
    display: none;
    margin-top: 40px;
}
.products-row-wrap.is-open {
    display: block;
}
.products-row-title {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 16px;
}
.products-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}
.product-tab {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.25s ease;
    background: var(--dark);
}
.product-tab:hover { border-color: rgba(200,169,110,0.5); }
.product-tab-img {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #1a1a1a;
}
.product-tab-img img { width:100%; height:100%; object-fit:cover; display:block; }
.product-tab-noimg {
    width:100%; height:100%;
    display:flex; align-items:center; justify-content:center;
    color: rgba(255,255,255,0.2);
}
.product-tab-name {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 8px;
    color: var(--white);
}

.nav-logo a{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.nav-logo a:hover,
.nav-logo a:focus{
    text-decoration:none;
}

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

.footer-bottom-right{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-separator{
    color:#777;
}

.footer-link{
    color:#999;
    text-decoration:none;
    transition:.3s;
}

.footer-link:hover{
    color:#C8A96E;
}

.collections-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-header-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 42px;
    color: #1a1a1a;
    margin: 0;
}

.section-header-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #b08d57;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.section-header-link .arrow {
    transition: transform 0.2s ease;
}

.section-header-link:hover .arrow {
    transform: translateX(4px);
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-item.category-tab {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #eee;
}

.product-item.category-tab img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-item.category-tab:hover img {
    transform: scale(1.05);
}

.product-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 45%);
    pointer-events: none;
}

.product-card-name {
    background: rgba(20, 20, 20, 0.85);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .category-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-header-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .category-cards-grid {
        grid-template-columns: 1fr;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
