/* ═══════════════════════════════════════════════════
   FEROZZI — Main Stylesheet v3
   Premium US Furniture — RH / Article / West Elm level
   DNA: Poppins, warm neutrals,
   generous whitespace, editorial feel
   ═══════════════════════════════════════════════════ */

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── WordPress Global Styles Override ─── */
body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: none;
}
body .is-layout-flow > * {
    max-width: none;
}
.wp-site-blocks {
    max-width: none;
    padding: 0;
}
body .is-layout-constrained > .alignwide {
    max-width: none;
}
body .is-layout-constrained > .alignfull {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

/* ─── Design Tokens (Master Prompt Spec) ─── */
:root {
    /* Palette */
    --color-bg:           #FAFAF7;
    --color-bg-alt:       #F3F0EA;
    --color-bg-dark:      #1A1A1A;
    --color-text:         #1A1A1A;
    --color-text-muted:   #6B6B6B;
    --color-accent:       #8B7355;
    --color-accent-hover: #6D5A43;
    --color-border:       #E5E0D8;
    --color-white:        #FFFFFF;
    --color-sale:         #8B2500;

    /* Legacy aliases (backward compat) */
    --fz-bg:          var(--color-bg);
    --fz-bg-warm:     var(--color-bg-alt);
    --fz-bg-cream:    #F9F7F4;
    --fz-white:       var(--color-white);
    --fz-black:       var(--color-bg-dark);
    --fz-dark:        #222222;
    --fz-text:        var(--color-text);
    --fz-muted:       var(--color-text-muted);
    --fz-gray-500:    #888888;
    --fz-gray-300:    #cccccc;
    --fz-gray-200:    var(--color-border);
    --fz-gray-100:    #f0f0f0;
    --fz-divider:     rgba(0,0,0,.08);
    --fz-accent:      var(--color-accent);
    --fz-sale:        var(--color-sale);
    --fz-success:     #4a7c59;
    --fz-shadow-sm:   0 1px 3px rgba(0,0,0,.04);
    --fz-shadow-md:   0 8px 30px rgba(0,0,0,.06);

    /* Typography */
    --fz-font-serif:  'DM Sans', 'Helvetica Neue', sans-serif;
    --fz-font-sans:   'DM Sans', 'Helvetica Neue', sans-serif;
    --fz-font-heading: var(--fz-font-serif);
    --fz-font-body:    var(--fz-font-sans);

    /* Responsive type scale */
    --text-hero:     clamp(3rem, 5vw, 5.5rem);
    --text-section:  clamp(2rem, 3vw, 3.5rem);
    --text-card:     clamp(0.95rem, 1.1vw, 1.15rem);
    --text-body:     1rem;
    --text-small:    0.85rem;
    --text-price:    1.1rem;

    /* Spacing (premium generous whitespace) */
    --space-section:    clamp(80px, 10vw, 140px);
    --space-inner:      clamp(40px, 5vw, 80px);
    --grid-gap:         clamp(20px, 2.5vw, 40px);
    --card-gap:         24px;
    --container-max:    1400px;
    --container-wide:   1600px;

    /* Legacy spacing aliases */
    --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px;  --sp-4: 16px;
    --sp-6: 24px; --sp-8: 32px; --sp-12: 48px; --sp-16: 64px;
    --sp-20: 80px; --sp-30: 120px;

    /* Layout */
    --fz-container:   var(--container-max);
    --fz-container-wide: var(--container-wide);
    --fz-gutter:      24px;
    --fz-section-gap: var(--space-section);
    --fz-grid-gap:    var(--grid-gap);
    --fz-radius:      0;

    /* Image ratios */
    --ratio-product-card: 1 / 1;
    --ratio-hero:         16 / 7;
    --ratio-category:     4 / 5;
    --ratio-editorial:    3 / 2;

    /* Transitions */
    --fz-ease:        cubic-bezier(0.25, 0.1, 0.25, 1);
    --fz-dur:         0.15s;
    --fz-dur-md:      0.25s;

    /* Header */
    --fz-promo-h:     40px;
    --fz-header-h:    72px;
    --fz-nav-h:       48px;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--fz-font-sans);
    font-weight: 400;
    line-height: 1.6;
    color: var(--fz-text);
    background: var(--color-bg);
    overflow-x: hidden;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ─── Main content wrapper ─── */
.fz-main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* ─── Container ─── */
.fz-container {
    max-width: var(--fz-container);
    margin: 0 auto;
    padding: 0 var(--fz-gutter);
}
.fz-container--wide {
    max-width: var(--fz-container-wide);
}

/* ─── Responsive helpers ─── */
.fz-mobile-only { display: none; }
.fz-desktop-only { display: block; }
@media (max-width: 768px) {
    .fz-mobile-only { display: block; }
    .fz-desktop-only { display: none !important; }
    :root { --fz-gutter: 16px; }
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--fz-font-heading);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--fz-text);
}
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-section); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.375rem); }
h5 { font-size: 1rem; font-weight: 500; font-family: var(--fz-font-body); letter-spacing: 0; }

.fz-page-title { margin-bottom: var(--sp-6); }
.fz-section-title { letter-spacing: -0.01em; font-family: var(--fz-font-serif); font-weight: 400; }
.fz-section-title--center { text-align: center; }

.fz-section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--sp-8);
}
.fz-section-header--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-2);
}

.fz-section-link {
    font-family: var(--fz-font-sans);
    font-size: var(--text-small);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid var(--fz-text);
    padding-bottom: 2px;
    transition: opacity var(--fz-dur);
}
.fz-section-link:hover { opacity: 0.5; }

/* ─── Buttons ─── */
.fz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    font-family: var(--fz-font-sans);
    font-size: var(--text-small);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 40px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 0;
    cursor: pointer;
    line-height: 1;
}
.fz-btn--primary {
    background: var(--color-bg-dark);
    color: var(--color-white);
    border-color: var(--color-bg-dark);
}
.fz-btn--primary:hover {
    background: #333;
    border-color: #333;
}
.fz-btn--outline {
    background: transparent;
    color: var(--fz-text);
    border: 1px solid var(--fz-text);
}
.fz-btn--outline:hover {
    background: var(--color-bg-dark);
    color: var(--color-white);
    border-color: var(--color-bg-dark);
}
/* Outline button on dark backgrounds */
.fz-page-cta--dark .fz-btn--outline,
.fz-sr-virtual .fz-btn--outline {
    color: #fff;
    border-color: rgba(255,255,255,.45);
    background: transparent;
}
.fz-page-cta--dark .fz-btn--outline:hover,
.fz-sr-virtual .fz-btn--outline:hover {
    background: rgba(255,255,255,.12);
    color: #fff;
    border-color: rgba(255,255,255,.7);
}
.fz-btn--hero {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    padding: 16px 44px;
    font-size: var(--text-small);
    letter-spacing: 0.12em;
}
.fz-btn--hero:hover {
    background: var(--color-white);
    color: var(--color-bg-dark);
}
.fz-btn--ghost { background: transparent; color: var(--fz-muted); border-color: transparent; padding: 10px 16px; font-size: 0.75rem; }
.fz-btn--ghost:hover { color: var(--fz-text); }
.fz-btn--full { width: 100%; }
.fz-btn--sm { padding: 10px 24px; font-size: 0.75rem; }
.fz-btn--accent {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}
.fz-btn--accent:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}

/* ─── Breadcrumb ─── */
.fz-breadcrumb { padding: var(--sp-4) 0; font-size: var(--text-small); color: var(--fz-muted); overflow: hidden; }
.fz-breadcrumb ol { display: flex; flex-wrap: nowrap; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; overflow: hidden; min-width: 0; width: 100%; }
.fz-breadcrumb li { display: inline-flex; align-items: center; line-height: 1; flex: 0 0 auto; min-width: 0; }
.fz-breadcrumb li:last-child { flex: 1 1 0; overflow: hidden; }
.fz-breadcrumb__current { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; max-width: 100%; }
.fz-breadcrumb li + li::before { content: '/'; margin: 0 0.4em; color: var(--fz-muted); }
.fz-breadcrumb li::after { display: none; }
.fz-breadcrumb a:hover { color: var(--fz-text); }

/* ═══════════════════════════════════════════════════
   PROMO BAR
   ═══════════════════════════════════════════════════ */
.fz-promo-bar {
    background: var(--color-bg-dark);
    color: var(--color-white);
    font-family: var(--fz-font-sans);
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    min-height: var(--fz-promo-h);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.fz-promo-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: var(--fz-container);
    margin: 0 auto;
    padding: 8px 52px 8px var(--fz-gutter);
    box-sizing: border-box;
}
.fz-promo-bar__link,
.fz-promo-bar__text {
    color: var(--color-white);
    text-align: center;
    flex: 1;
    min-width: 0;
    line-height: 1.4;
}
.fz-promo-bar__link:hover { text-decoration: underline; }
.fz-promo-bar__close {
    position: absolute;
    right: var(--fz-gutter);
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: color var(--fz-dur);
}
.fz-promo-bar__close:hover { color: var(--color-white); }

/* ═══════════════════════════════════════════════════
   HEADER — Sticky, shrinks on scroll
   ═══════════════════════════════════════════════════ */
.fz-header {
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--fz-divider);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.fz-header.is-scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.fz-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--fz-header-h);
    transition: height 0.3s ease;
}
.fz-header.is-scrolled .fz-header__inner {
    height: 56px;
}
.fz-header__left, .fz-header__right {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    min-width: 100px;
}
.fz-header__right { justify-content: flex-end; }
.fz-header__center { flex: 1; text-align: center; }

.fz-logo__img,
.fz-logo__svg,
.fz-logo__svg svg {
    max-height: 80px;
    width: auto;
}

.fz-logo__text {
    font-family: var(--fz-font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fz-charcoal, #1a1a1a);
}
.fz-header.is-scrolled .fz-logo__text {
    font-size: 1.25rem;
}

.fz-header__icon, .fz-header__search-toggle, .fz-header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--fz-text);
    transition: opacity var(--fz-dur);
}
.fz-header__icon:hover, .fz-header__search-toggle:hover { opacity: 0.5; }

.fz-header__cart { position: relative; }
.fz-cart-count {
    position: absolute;
    top: 4px; right: 2px;
    background: var(--color-bg-dark);
    color: var(--color-white);
    font-size: 0.5625rem;
    font-weight: 700;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ─── Desktop Nav ─── */
.fz-nav {
    border-top: 1px solid var(--fz-divider);
    height: var(--fz-nav-h);
    display: flex;
    align-items: center;
    justify-content: center;
}
.fz-nav__list { display: flex; gap: 40px; }
.fz-nav__item a {
    font-family: var(--fz-font-sans);
    font-size: var(--text-small);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text);
    padding: 14px 0;
    position: relative;
    transition: opacity var(--fz-dur);
}
.fz-nav__item a::after {
    content: '';
    position: absolute;
    bottom: 10px; left: 0;
    width: 100%;
    height: 1px;
    background: var(--fz-text);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--fz-ease);
}
.fz-nav__item a:hover::after { transform: scaleX(1); }
.fz-nav__item a:hover { opacity: 0.7; }
.fz-nav__item--sale a { color: var(--color-sale); }
.fz-nav__item--sale a::after { background: var(--color-sale); }

/* ─── Mega Menu ─── */
.fz-mega {
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--color-white);
    border-top: 1px solid var(--fz-divider);
    box-shadow: 0 16px 40px rgba(0,0,0,.06);
    padding: 32px 0 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 150ms var(--fz-ease), transform 150ms var(--fz-ease), visibility 150ms;
    z-index: 999;
}
.fz-mega.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.fz-mega__inner { display: flex; }
.fz-mega__categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 48px;
    width: 100%;
}
.fz-mega__col { display: flex; flex-direction: column; }
.fz-mega__group { margin-bottom: 24px; }
.fz-mega__group:last-child { margin-bottom: 0; }
.fz-mega__col-title {
    display: block;
    font-family: var(--fz-font-sans);
    font-size: var(--text-small);
    font-weight: 700;
    color: var(--fz-text);
    margin-bottom: 8px;
    line-height: 1.4;
}
.fz-mega__col-title:hover { color: var(--fz-text); }
.fz-mega__link {
    display: block;
    font-family: var(--fz-font-sans);
    font-size: var(--text-small);
    color: var(--fz-muted);
    line-height: 1.9;
    transition: color var(--fz-dur);
}
.fz-mega__link:hover { color: var(--fz-text); }
.fz-mega__feature { display: none; }

/* ─── Search Overlay — Styles moved to live-search.css ─── */

/* ═══════════════════════════════════════════════════
   MOBILE DRAWER
   ═══════════════════════════════════════════════════ */
.fz-drawer { position: fixed; inset: 0; z-index: 2000; visibility: hidden; }
.fz-drawer.is-open { visibility: visible; }
.fz-drawer__overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.35);
    opacity: 0;
    transition: opacity var(--fz-dur-md);
}
.fz-drawer.is-open .fz-drawer__overlay { opacity: 1; }
.fz-drawer__panel {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 340px; max-width: 88vw;
    background: var(--color-white);
    transform: translateX(-100%);
    transition: transform var(--fz-dur-md) var(--fz-ease);
    overflow-y: auto;
    display: flex; flex-direction: column;
}
.fz-drawer.is-open .fz-drawer__panel { transform: translateX(0); }
.fz-drawer__header {
    display: flex; justify-content: space-between; align-items: center;
    padding: var(--sp-4) var(--sp-6);
    border-bottom: 1px solid var(--fz-divider);
    min-height: 56px;
}
.fz-drawer__title { font-family: var(--fz-font-serif); font-size: 1.25rem; font-weight: 400; }
.fz-drawer__search {
    padding: var(--sp-4) var(--sp-6);
    border-bottom: 1px solid var(--fz-divider);
}
.fz-drawer__search input {
    width: 100%;
    border: 1px solid var(--color-border);
    padding: 11px 14px;
    font-size: 0.875rem;
    outline: none;
    border-radius: 0;
}
.fz-drawer__search input:focus { border-color: var(--fz-text); }
.fz-drawer__nav { padding: var(--sp-2) 0; flex: 1; }
.fz-drawer__nav > ul > li { border-bottom: 1px solid var(--fz-divider); }
.fz-drawer__nav a, .fz-drawer__toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 15px var(--sp-6);
    font-size: 0.9375rem; font-weight: 500; text-align: left;
}
.fz-drawer__toggle svg { transition: transform var(--fz-dur-md); }
.fz-drawer__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.fz-drawer__sub { display: none; padding: 0 var(--sp-6) var(--sp-3) var(--sp-8); }
.fz-drawer__sub.is-open { display: block; }
.fz-drawer__sub li a { padding: 9px 0; font-weight: 400; font-size: 0.875rem; color: var(--fz-muted); }
.fz-drawer__sub li a:hover { color: var(--fz-text); }
.fz-drawer__item--sale a { color: var(--color-sale); }
.fz-drawer__sub--groups {
    display: none;
    padding: 0 var(--sp-6) var(--sp-4) var(--sp-6);
    max-height: 60vh;
    overflow-y: auto;
}
.fz-drawer__sub--groups.is-open { display: block; }
.fz-drawer__group { margin-bottom: 16px; }
.fz-drawer__group:last-child { margin-bottom: 0; }
.fz-drawer__group-title {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fz-text);
    padding: 8px 0 6px;
    border-bottom: 1px solid var(--fz-divider);
    margin-bottom: 4px;
}
.fz-drawer__group-links li a {
    display: block;
    padding: 6px 0;
    font-size: var(--text-small);
    font-weight: 400;
    color: var(--fz-muted);
}
.fz-drawer__group-links li a:hover { color: var(--fz-text); }
.fz-drawer__footer {
    padding: var(--sp-6);
    border-top: 1px solid var(--fz-divider);
    margin-top: auto;
}
.fz-drawer__footer a { font-size: 0.875rem; color: var(--fz-muted); }

/* ═══════════════════════════════════════════════════
   HERO — Full-screen, editorial feel
   ═══════════════════════════════════════════════════ */
.fz-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 540px;
    max-height: 960px;
    overflow: hidden;
    background: var(--color-bg-alt);
}
.fz-hero__media {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    animation: heroZoom 1.5s ease forwards;
}
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
}
.fz-hero__media--placeholder {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, #d4cfc6 100%);
    animation: none;
}
.fz-hero__overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(to top, rgba(0,0,0,.45) 0%, rgba(0,0,0,.1) 50%, rgba(0,0,0,.05) 100%);
}
.fz-hero__content {
    text-align: center; color: var(--color-white);
    max-width: 720px; padding: 0 var(--fz-gutter);
    animation: heroFadeIn 0.8s ease 0.3s both;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fz-hero__title {
    font-family: var(--fz-font-serif);
    font-size: var(--text-hero);
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: var(--sp-4);
    letter-spacing: -0.02em;
    line-height: 1.08;
}
.fz-hero__subtitle {
    font-family: var(--fz-font-sans);
    font-size: 1.0625rem;
    font-weight: 300;
    margin-bottom: var(--sp-8);
    opacity: 0.85;
    letter-spacing: 0.01em;
}
.fz-hero__cta {
    animation: heroFadeIn 0.8s ease 0.6s both;
}
.fz-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    opacity: 0.6;
    animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════════════ */
.fz-trust-strip {
    background: var(--color-bg-alt);
    padding: var(--sp-6) 0;
    border-bottom: 1px solid var(--color-border);
}
.fz-trust-strip__grid {
    display: flex; justify-content: center;
    gap: var(--sp-12); flex-wrap: wrap;
}
.fz-trust-strip__item {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--fz-font-sans);
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--fz-muted);
}
.fz-trust-strip__item + .fz-trust-strip__item {
    position: relative;
    padding-left: var(--sp-12);
}
.fz-trust-strip__item + .fz-trust-strip__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: var(--color-border);
}
.fz-trust-strip__icon { display: flex; color: var(--fz-muted); }
@media (max-width: 768px) {
    .fz-trust-strip__grid { gap: var(--sp-4); }
    .fz-trust-strip__item + .fz-trust-strip__item { padding-left: var(--sp-4); }
    .fz-trust-strip__item + .fz-trust-strip__item::before { display: none; }
}

/* ═══════════════════════════════════════════════════
   FEATURED / SECTION SPACING
   ═══════════════════════════════════════════════════ */
.fz-featured { padding: var(--space-section) 0; }
.fz-bestsellers { padding: var(--space-section) 0; }

/* ═══════════════════════════════════════════════════
   PRODUCT GRID — 4 columns on desktop
   ═══════════════════════════════════════════════════ */
.fz-product-grid { display: grid; gap: var(--grid-gap, 24px); grid-template-columns: repeat(4, minmax(0, 1fr)); }
.fz-product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.fz-product-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
    .fz-product-grid,
    .fz-product-grid--3,
    .fz-product-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .fz-product-grid,
    .fz-product-grid--3,
    .fz-product-grid--4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ═══════════════════════════════════════════════════
   PRODUCT CARD — Premium, big images, minimal
   ═══════════════════════════════════════════════════ */
.fz-product-card__link { display: block; }
.fz-product-card__image-wrap {
    position: relative; overflow: hidden;
    background: #f7f6f4;
    aspect-ratio: 1 / 1;
}
/* ADIM 2: Product card placeholder */
.fz-product-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #F3F0EA 0%, #E8E3DB 50%, #F3F0EA 100%);
    position: relative;
}
.fz-product-card__placeholder::after {
    content: '';
    width: 40px;
    height: 40px;
    opacity: 0.18;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23887b6b' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.fz-product-card__image {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.5s ease;
}
.fz-product-card__image--primary {
    position: relative;
    z-index: 2;
}
.fz-product-card__image--hover {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0 !important;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.fz-product-card:hover .fz-product-card__image--primary { opacity: 0; }
.fz-product-card:hover .fz-product-card__image--hover { opacity: 1 !important; }
.fz-product-card:hover .fz-product-card__image { transform: scale(1.03); }

/* Badges — small, elegant, NOT aggressive */
.fz-product-card__badges {
    position: absolute; top: var(--sp-3); left: var(--sp-3);
    display: flex; gap: var(--sp-1);
}
.fz-badge {
    font-family: var(--fz-font-sans);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    max-width: 48px;
    max-height: 22px;
    text-align: center;
}
.fz-badge--new {
    background: var(--color-white);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}
.fz-badge--sale {
    background: var(--color-sale);
    color: var(--color-white);
}

/* Quick View overlay */
.fz-product-card__quick {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(26,26,26,.85);
    color: var(--color-white);
    text-align: center;
    font-family: var(--fz-font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}
.fz-product-card:hover .fz-product-card__quick {
    opacity: 1;
    transform: translateY(0);
}

/* Card info — clean, no border, no shadow */
.fz-product-card__info { padding: 16px 0 var(--sp-2); }
.fz-product-card__title {
    font-family: var(--fz-font-sans);
    font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
    font-weight: 500;
    color: var(--fz-text);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fz-product-card__meta {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}
.fz-product-card__price {
    font-family: var(--fz-font-sans);
    font-size: var(--text-price);
    color: var(--fz-text);
}
.fz-product-card__price del { color: var(--fz-muted); margin-right: 6px; text-decoration: line-through; }
.fz-product-card__price ins { text-decoration: none; color: var(--fz-text); font-weight: 500; }
.fz-product-card__price-text {
    font-style: italic;
    color: var(--color-accent);
    font-size: var(--text-small);
}
.fz-product-card__rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.75rem;
    color: var(--fz-muted);
}

@media (max-width: 768px) {
    .fz-product-card__image-wrap { min-height: unset; }
}
@media (max-width: 480px) {
    .fz-product-card__image-wrap { min-height: unset; }
}

/* ═══════════════════════════════════════════════════
   EDITORIAL — Split layout or centered
   ═══════════════════════════════════════════════════ */
.fz-editorial {
    background: var(--color-bg-dark);
    padding: var(--space-section) 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}
.fz-editorial__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-white);
}
.fz-editorial__title {
    font-family: var(--fz-font-serif);
    font-size: var(--text-section);
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: var(--sp-6);
}
.fz-editorial__text {
    font-family: var(--fz-font-sans);
    font-size: 1.0625rem;
    line-height: 1.85;
    color: rgba(255,255,255,.75);
    margin-bottom: var(--sp-8);
}

/* ═══════════════════════════════════════════════════
   SPLIT PROMO — Asymmetric layout
   ═══════════════════════════════════════════════════ */
.fz-split { padding: 0; }
.fz-split__inner {
    display: grid;
    grid-template-columns: 2fr 3fr;
    min-height: 520px;
}
.fz-split__image img, .fz-split__placeholder {
    width: 100%; height: 100%;
    object-fit: cover; min-height: 420px;
}
.fz-split__placeholder { background: var(--color-bg-alt); }
.fz-split__content {
    display: flex; flex-direction: column; justify-content: center;
    padding: clamp(48px, 6vw, 96px) clamp(40px, 5vw, 80px);
    background: var(--color-white);
}
.fz-split__title {
    font-family: var(--fz-font-serif);
    font-size: var(--text-section);
    margin-bottom: var(--sp-4);
    font-weight: 400;
}
.fz-split__text {
    font-size: 1rem; line-height: 1.75;
    color: var(--fz-muted); margin-bottom: var(--sp-8);
}
@media (max-width: 768px) {
    .fz-split__inner { grid-template-columns: 1fr; }
    .fz-split__content { padding: var(--sp-12) var(--fz-gutter); }
}

/* ═══════════════════════════════════════════════════
   LIFESTYLE BANNER
   ═══════════════════════════════════════════════════ */
.fz-lifestyle {
    position: relative; height: 50vh;
    min-height: 360px; overflow: hidden;
    margin: var(--space-section) 0;
}
.fz-lifestyle__image { width: 100%; height: 100%; object-fit: cover; }
.fz-lifestyle__image--placeholder { background: var(--color-bg-alt); }
.fz-lifestyle__overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.12);
}
.fz-lifestyle__title { color: var(--color-white); font-family: var(--fz-font-serif); }

/* ═══════════════════════════════════════════════════
   GALLERY GRID (#FerozziAtHome)
   ═══════════════════════════════════════════════════ */
.fz-gallery { padding: var(--space-section) 0; }
.fz-gallery .fz-section-title { margin-bottom: var(--sp-8); }
.fz-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}
.fz-gallery__item {
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
}
.fz-gallery__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--fz-ease);
}
.fz-gallery__item:hover img { transform: scale(1.03); }
.fz-gallery__item::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
}
.fz-gallery__item:hover::after {
    background: rgba(0,0,0,.15);
}
@media (max-width: 768px) { .fz-gallery__grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════════════
   REVIEWS (Homepage)
   ═══════════════════════════════════════════════════ */
.fz-reviews { padding: var(--space-section) 0; background: var(--color-white); }
.fz-reviews__stars {
    display: flex; align-items: center; gap: 3px;
    color: #C8A96E; margin-top: var(--sp-2);
}
.fz-reviews__rating { font-size: var(--text-small); color: var(--fz-muted); margin-left: var(--sp-2); }
.fz-reviews__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-8); margin-top: var(--sp-12);
}
.fz-reviews__card {
    padding: var(--sp-8);
    background: var(--color-bg);
    text-align: center;
}
.fz-reviews__card-stars { display: flex; justify-content: center; gap: 2px; color: #C8A96E; margin-bottom: var(--sp-4); }
.fz-reviews__card-text {
    font-family: var(--fz-font-serif);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--fz-muted);
    margin-bottom: var(--sp-4);
    font-style: italic;
}
.fz-reviews__card-name {
    font-family: var(--fz-font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.fz-reviews__card-location {
    font-size: 0.75rem;
    color: var(--fz-muted);
    margin-top: 4px;
}
@media (max-width: 768px) { .fz-reviews__grid { grid-template-columns: 1fr; gap: var(--sp-4); } }

/* ═══════════════════════════════════════════════════
   PRESS
   ═══════════════════════════════════════════════════ */
.fz-press { padding: var(--sp-12) 0; text-align: center; }
.fz-press__label { font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fz-muted); margin-bottom: var(--sp-6); }
.fz-press__grid { display: flex; justify-content: center; align-items: center; gap: var(--sp-12); flex-wrap: wrap; }
.fz-press__item img { height: 22px; width: auto; opacity: 0.35; filter: grayscale(1); transition: opacity var(--fz-dur); }
.fz-press__item:hover img { opacity: 0.6; }
.fz-press__name { font-family: var(--fz-font-serif); font-size: 1rem; font-weight: 400; color: var(--fz-muted); }

/* ═══════════════════════════════════════════════════
   VALUE PROPS (4-column grid)
   ═══════════════════════════════════════════════════ */
.fz-value-props {
    background: var(--color-bg-alt);
    padding: var(--space-section) 0;
}
.fz-value-props__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.fz-value-props__item {
    padding: var(--sp-8);
    text-align: center;
    position: relative;
}
.fz-value-props__item + .fz-value-props__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--color-border);
}
.fz-value-props__num {
    font-family: var(--fz-font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-border);
    margin-bottom: var(--sp-3);
}
.fz-value-props__title {
    font-family: var(--fz-font-sans);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--sp-2);
}
.fz-value-props__text {
    font-size: var(--text-small);
    color: var(--fz-muted);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .fz-value-props__grid { grid-template-columns: repeat(2, 1fr); }
    .fz-value-props__item:nth-child(odd)::before { display: none; }
}
@media (max-width: 480px) {
    .fz-value-props__grid { grid-template-columns: 1fr; }
    .fz-value-props__item::before { display: none; }
}

/* ═══════════════════════════════════════════════════
   CATEGORY NAV (Shop by Room)
   ═══════════════════════════════════════════════════ */
.fz-category-nav { padding: var(--space-section) 0; }
.fz-category-nav__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--grid-gap);
}
.fz-category-nav__card {
    display: block;
    position: relative;
    overflow: hidden;
}
.fz-category-nav__image {
    aspect-ratio: var(--ratio-category);
    min-width: 280px;
    overflow: hidden;
}
.fz-category-nav__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.fz-category-nav__card:hover .fz-category-nav__image img {
    transform: scale(1.03);
}
.fz-category-nav__card:hover .fz-category-nav__overlay {
    background: rgba(0,0,0,.2);
}
.fz-category-nav__overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.05);
    transition: background 0.3s ease;
}
.fz-category-nav__info {
    padding: var(--sp-4) 0;
}
.fz-category-nav__name {
    font-family: var(--fz-font-sans);
    font-size: 1rem;
    font-weight: 600;
}
.fz-category-nav__count {
    font-size: var(--text-small);
    color: var(--fz-muted);
}
@media (max-width: 1024px) {
    .fz-category-nav__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .fz-category-nav__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: var(--sp-4);
        -webkit-overflow-scrolling: touch;
    }
    .fz-category-nav__card {
        flex: 0 0 calc(43vw);
        scroll-snap-align: start;
    }
    .fz-category-nav__image { min-width: auto; }
}

/* ═══════════════════════════════════════════════════
   CATEGORY LINK BAR
   ═══════════════════════════════════════════════════ */
.fz-cat-links {
    padding: var(--sp-8) 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.fz-cat-links__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.fz-cat-links__item a {
    font-family: var(--fz-font-sans);
    font-size: var(--text-small);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: var(--sp-2) var(--sp-4);
    transition: color var(--fz-dur);
}
.fz-cat-links__item a:hover { color: var(--color-accent); }
.fz-cat-links__item + .fz-cat-links__item::before {
    content: '|';
    color: var(--color-border);
    margin-right: var(--sp-2);
}

/* ═══════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════ */
.fz-newsletter {
    background: var(--color-bg-dark);
    padding: var(--space-section) 0;
}
.fz-newsletter__inner { max-width: 520px; margin: 0 auto; text-align: center; }
.fz-newsletter__title {
    font-family: var(--fz-font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: var(--sp-3);
}
.fz-newsletter__text {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
    margin-bottom: var(--sp-6);
    line-height: 1.6;
}
.fz-newsletter__field { display: flex; gap: 0; }
.fz-newsletter__field input {
    flex: 1; border: 1px solid rgba(255,255,255,.2); border-right: none;
    padding: 0 16px; height: 52px; font-size: 0.875rem; outline: none;
    background: transparent; color: var(--color-white);
}
.fz-newsletter__field input::placeholder { color: rgba(255,255,255,.4); }
.fz-newsletter__field input:focus { border-color: rgba(255,255,255,.5); }
.fz-newsletter__field .fz-btn {
    border-radius: 0;
    background: var(--color-white);
    color: var(--color-bg-dark);
    border-color: var(--color-white);
    height: 52px;
    padding: 0 32px;
}
.fz-newsletter__field .fz-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}
.fz-newsletter__privacy {
    font-size: 0.6875rem;
    color: rgba(255,255,255,.35);
    opacity: 0.6;
    margin-top: var(--sp-3);
    line-height: 1.5;
}
.fz-newsletter__privacy a { text-decoration: underline; color: rgba(255,255,255,.5); }
.fz-newsletter__status { margin-top: 12px; padding: 12px 16px; font-size: var(--text-small); line-height: 1.5; text-align: center; }
.fz-newsletter__status--success { background: #f0faf0; color: #2d6a2d; border: 1px solid #c3e6c3; }
.fz-newsletter__status--error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
@media (max-width: 480px) {
    .fz-newsletter__field { flex-direction: column; }
    .fz-newsletter__field input { border-right: 1px solid rgba(255,255,255,.2); border-bottom: none; }
}

/* ═══════════════════════════════════════════════════
   FOOTER — Premium Luxury Level (RH / Rove / Article)
   ═══════════════════════════════════════════════════ */
.fz-footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,.6);
}

/* Newsletter Band */
.fz-footer__newsletter {
    background: #222222;
    padding: clamp(48px, 6vw, 80px) 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.fz-footer__newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 4vw, 64px);
    align-items: center;
}
.fz-footer__newsletter-title {
    font-family: var(--fz-font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.fz-footer__newsletter-text {
    font-size: 0.9375rem;
    color: rgba(255,255,255,.55);
    line-height: 1.6;
    max-width: 400px;
}
.fz-footer__newsletter-field {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255,255,255,.15);
    transition: border-color 0.2s ease;
}
.fz-footer__newsletter-field:focus-within {
    border-color: rgba(255,255,255,.4);
}
.fz-footer__newsletter-field input {
    flex: 1;
    border: none;
    padding: 0 20px;
    height: 54px;
    font-size: 0.875rem;
    font-family: var(--fz-font-sans);
    outline: none;
    background: transparent;
    color: var(--color-white);
    min-width: 0;
}
.fz-footer__newsletter-field input::placeholder {
    color: rgba(255,255,255,.35);
}
.fz-footer__newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
    height: 54px;
    background: var(--color-white);
    color: var(--color-bg-dark);
    border: none;
    font-family: var(--fz-font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}
.fz-footer__newsletter-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
}
.fz-footer__newsletter-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.fz-footer__newsletter-btn svg {
    flex-shrink: 0;
}
.fz-footer__newsletter-privacy {
    font-size: 0.6875rem;
    color: rgba(255,255,255,.3);
    margin-top: 12px;
    line-height: 1.5;
}
.fz-footer__newsletter-privacy a {
    color: rgba(255,255,255,.5);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.fz-footer__newsletter-privacy a:hover {
    color: rgba(255,255,255,.8);
}
.fz-footer__newsletter-status {
    margin-top: 12px;
    padding: 10px 16px;
    font-size: 0.8125rem;
    line-height: 1.5;
}
.fz-footer__newsletter-status--success {
    background: rgba(74, 124, 89, .15);
    color: #8bc9a0;
    border: 1px solid rgba(74, 124, 89, .3);
}
.fz-footer__newsletter-status--error {
    background: rgba(153, 27, 27, .15);
    color: #f87171;
    border: 1px solid rgba(153, 27, 27, .3);
}

/* Main Footer */
.fz-footer__main {
    padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
}
.fz-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: clamp(24px, 3vw, 48px);
}

/* Brand Column */
.fz-footer__logo {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
}
.fz-footer__logo-text {
    font-family: var(--fz-font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--color-white);
}
.fz-footer__tagline {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255,255,255,.5);
    margin-bottom: 24px;
    max-width: 280px;
}

/* Contact Info */
.fz-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
.fz-footer__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color 0.2s ease;
}
a.fz-footer__contact-item:hover {
    color: var(--color-white);
}
.fz-footer__contact-item svg {
    flex-shrink: 0;
    opacity: 0.6;
}

/* Social Icons */
.fz-footer__social {
    display: flex;
    gap: 16px;
    align-items: center;
}
.fz-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.6);
    transition: all 0.2s ease;
}
.fz-footer__social-link:hover {
    border-color: rgba(255,255,255,.4);
    color: var(--color-white);
    background: rgba(255,255,255,.05);
}
.fz-footer__social-link svg {
    width: 16px;
    height: 16px;
}

/* Column Headings */
.fz-footer__heading {
    font-family: var(--fz-font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 20px;
    padding-bottom: 0;
}

/* Links */
.fz-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fz-footer__links li {
    margin-bottom: 12px;
}
.fz-footer__links li:last-child {
    margin-bottom: 0;
}
.fz-footer__links a {
    font-size: 0.8125rem;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}
.fz-footer__links a:hover {
    color: var(--color-white);
    padding-left: 4px;
}

/* Bottom Bar */
.fz-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 24px 0;
}
.fz-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.fz-footer__copyright {
    font-size: 0.6875rem;
    color: rgba(255,255,255,.3);
    letter-spacing: 0.02em;
}
.fz-footer__credit {
    font-size: 0.625rem;
    color: rgba(255,255,255,.22);
    letter-spacing: 0.02em;
    margin-top: 4px;
}
.fz-footer__credit a {
    color: rgba(255,255,255,.35);
    text-decoration: none;
    transition: color 0.2s ease;
}
.fz-footer__credit a:hover {
    color: rgba(255,255,255,.7);
}
.fz-footer__legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.fz-footer__legal a {
    font-size: 0.6875rem;
    color: rgba(255,255,255,.3);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}
.fz-footer__legal a:hover {
    color: rgba(255,255,255,.7);
}

/* Payment Icons */
.fz-footer__payments {
    display: flex;
    gap: 8px;
    align-items: center;
}
.fz-footer__payment-icon {
    display: inline-flex;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}
.fz-footer__payment-icon:hover {
    opacity: 0.9;
}
.fz-footer__payment-icon svg {
    border-radius: 3px;
}

/* ─── Footer Responsive ─── */
@media (max-width: 1024px) {
    .fz-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
    }
    .fz-footer__col:last-child {
        grid-column: 2 / -1;
    }
}
@media (max-width: 768px) {
    .fz-footer__newsletter-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .fz-footer__newsletter-text {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
    .fz-footer__newsletter-field {
        flex-direction: column;
        gap: 12px;
        border: none;
        max-width: 100%;
    }
    .fz-footer__newsletter-field input {
        width: 100%;
        box-sizing: border-box;
        border: 1px solid rgba(255,255,255,.15);
        height: 52px;
        padding: 0 16px;
    }
    .fz-footer__newsletter-btn {
        width: 100%;
        height: 52px;
        justify-content: center;
        box-sizing: border-box;
    }
    .fz-footer__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .fz-footer__col:last-child {
        grid-column: auto;
    }
    /* Brand col stays open */
    .fz-footer__col--brand {
        padding-bottom: 32px;
        margin-bottom: 8px;
        border-bottom: 1px solid rgba(255,255,255,.06);
        text-align: center;
    }
    .fz-footer__col--brand .fz-footer__tagline {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
    .fz-footer__col--brand .fz-footer__contact {
        align-items: center;
    }
    .fz-footer__col--brand .fz-footer__social {
        justify-content: center;
    }
    /* Accordion columns */
    .fz-footer__col[data-footer-accordion] {
        border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .fz-footer__col[data-footer-accordion]:last-child {
        border-bottom: none;
    }
    .fz-footer__col[data-footer-accordion] .fz-footer__heading {
        position: relative;
        cursor: pointer;
        padding: 18px 0;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 44px;
    }
    .fz-footer__col[data-footer-accordion] .fz-footer__heading::after {
        content: '+';
        font-size: 1.25rem;
        font-weight: 300;
        color: rgba(255,255,255,.4);
        transition: transform 0.3s ease;
        line-height: 1;
    }
    .fz-footer__col[data-footer-accordion].is-open .fz-footer__heading::after {
        content: '\2212';
    }
    .fz-footer__col[data-footer-accordion] .fz-footer__links {
        transition: max-height 0.35s ease, padding 0.35s ease;
        padding-bottom: 0;
    }
    .fz-footer__col[data-footer-accordion].is-open .fz-footer__links {
        padding-bottom: 16px;
    }
    /* Bottom bar mobile */
    .fz-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .fz-footer__legal {
        justify-content: center;
    }
    .fz-footer__payments {
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════
   COLLECTION (PLP)
   ═══════════════════════════════════════════════════ */
.fz-collection { padding-bottom: var(--space-section); }
.fz-collection__title { margin-bottom: var(--sp-6); padding-top: var(--sp-4); }

/* Toolbar */
.fz-toolbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: var(--sp-4) 0;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--sp-8);
}
.fz-toolbar__count { font-size: 0.75rem; color: var(--fz-muted); letter-spacing: 0.02em; }
.fz-toolbar__right { display: flex; align-items: center; gap: var(--sp-6); }
.fz-toolbar__filters { display: flex; gap: var(--sp-4); }
.fz-toolbar__checkbox {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.75rem; cursor: pointer; color: var(--fz-muted);
}
.fz-toolbar__checkbox input { accent-color: var(--color-bg-dark); }
.woocommerce-ordering { margin: 0 !important; }
.woocommerce-ordering select {
    border: 1px solid var(--color-border); padding: 7px 12px;
    font-size: 0.75rem; background: var(--color-white); outline: none; cursor: pointer;
    font-family: var(--fz-font-sans);
}

/* Pagination */
.fz-pagination { padding: var(--sp-12) 0 0; text-align: center; }
.fz-pagination .woocommerce-pagination { display: flex; justify-content: center; }
.fz-pagination .page-numbers { display: inline-flex; gap: var(--sp-1); }
.fz-pagination .page-numbers li a,
.fz-pagination .page-numbers li span {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; font-size: var(--text-small);
    border: 1px solid var(--color-border); transition: all var(--fz-dur);
}
.fz-pagination .page-numbers li span.current,
.fz-pagination .page-numbers li a:hover {
    background: var(--color-bg-dark); color: var(--color-white); border-color: var(--color-bg-dark);
}
.fz-no-products { text-align: center; padding: var(--sp-20) 0; color: var(--fz-muted); }

/* Load More */
.fz-load-more { text-align: center; padding: var(--sp-12) 0; }
.fz-load-more .fz-btn {
    min-width: 200px;
}

/* ═══════════════════════════════════════════════════
   PDP — SINGLE PRODUCT
   ═══════════════════════════════════════════════════ */
.fz-pdp { padding-bottom: 0; background: var(--color-white); }
.fz-pdp__notices { background: var(--color-bg); }
.fz-pdp__notices:empty { display: none; }
.fz-pdp__notices .woocommerce-message,
.fz-pdp__notices .woocommerce-info,
.fz-pdp__notices .woocommerce-error {
    max-width: var(--fz-container);
    margin: 0 auto;
    padding: var(--sp-4) var(--fz-gutter);
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS — Intersection Observer driven
   ═══════════════════════════════════════════════════ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.fade-in-up.visible:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up.visible:nth-child(3) { transition-delay: 0.2s; }
.fade-in-up.visible:nth-child(4) { transition-delay: 0.3s; }
.fade-in-up.visible:nth-child(5) { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════ */
.fz-marquee {
    overflow: hidden;
    padding: var(--sp-6) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.fz-marquee__track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}
.fz-marquee__item {
    font-family: var(--fz-font-serif);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    white-space: nowrap;
    padding: 0 var(--sp-12);
    color: var(--fz-muted);
}
.fz-marquee__item span {
    color: var(--color-accent);
    margin: 0 var(--sp-6);
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   ACCORDION (Global)
   ═══════════════════════════════════════════════════ */
.fz-accordion__item {
    border-bottom: 1px solid var(--color-border);
}
.fz-accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--sp-6) 0;
    font-family: var(--fz-font-sans);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color var(--fz-dur);
}
.fz-accordion__trigger:hover { color: var(--color-accent); }
.fz-pdp-faq .fz-accordion__trigger:hover { color: var(--fz-text); }
.fz-pdp-faq .fz-accordion__item.is-open { border-left-color: var(--fz-black); }
.fz-pdp-faq .fz-accordion__item.is-open .fz-accordion__trigger { color: var(--fz-text); }
.fz-pdp-faq .fz-accordion__content a { color: var(--fz-text); }
.fz-accordion__trigger svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.fz-accordion__trigger[aria-expanded="true"] svg {
    transform: rotate(45deg);
}
.fz-accordion__item.is-open {
    border-left: 3px solid var(--color-accent);
    padding-left: 16px;
}
.fz-accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--fz-muted);
}
.fz-accordion__item.is-open .fz-accordion__content {
    max-height: 600px;
    padding: 0 0 var(--sp-6);
}
.fz-accordion__content a { color: var(--color-accent); text-decoration: underline; }

/* ═══════════════════════════════════════════════════
   UTILITY: Focus visible
   ═══════════════════════════════════════════════════ */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
}

/* ═══════════════════════════════════════════════════
   UTILITY: Screen reader only
   ═══════════════════════════════════════════════════ */
.sr-only,
.screen-reader-text {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}


/* ═══════════════════════════════════════════════════
   GLOBAL POLISH — Phase 2
   ═══════════════════════════════════════════════════ */

/* 4.4 Selection / Highlight */
::selection {
    background-color: var(--color-accent);
    color: white;
}
::-moz-selection {
    background-color: var(--color-accent);
    color: white;
}

/* 4.5 Custom Scrollbar (Webkit) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-text-muted); }

/* 4.1 Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.15s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }

/* 4.3 Image Loading Placeholder + Fade-in */
.fz-product-card__image-wrap,
.fz-ugc__cell,
.fz-rooms__card-image,
.fz-bestsellers__slide .fz-product-card__image-wrap {
    background-color: #F0EDE7;
}
.fz-img-lazy {
    opacity: 0;
    transition: opacity 0.4s ease;
}
.fz-img-lazy.is-loaded {
    opacity: 1;
}

/* 4.6 Link Hover Styles */
a:not(.fz-btn):not(.fz-product-card):not(.fz-product-card__link):not([class*="nav"]):not([class*="menu"]) {
    transition: color 0.2s ease;
}
a:not(.fz-btn):not(.fz-product-card):not(.fz-product-card__link):not([class*="nav"]):not([class*="menu"]):hover {
    color: var(--color-accent);
}

/* ═══════════════════════════════════════════════════
   CART DRAWER — Slide-in from right
   ═══════════════════════════════════════════════════ */
.fz-cart-drawer {
    position: fixed; inset: 0; z-index: 1200;
    visibility: hidden; pointer-events: none;
}
.fz-cart-drawer.is-open { visibility: visible; pointer-events: auto; }
.fz-cart-drawer__overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.35); opacity: 0;
    transition: opacity 0.3s ease;
}
.fz-cart-drawer.is-open .fz-cart-drawer__overlay { opacity: 1; }
.fz-cart-drawer__panel {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 420px; max-width: 90vw;
    background: var(--color-white, #fff);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
    display: flex; flex-direction: column;
}
.fz-cart-drawer.is-open .fz-cart-drawer__panel { transform: translateX(0); }
.fz-cart-drawer__header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; border-bottom: 1px solid var(--color-divider, rgba(0,0,0,.08));
    flex-shrink: 0;
}
.fz-cart-drawer__title {
    font-family: var(--fz-font-sans); font-size: 0.8125rem;
    font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.fz-cart-drawer__close {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; background: none; border: none;
    color: var(--color-muted, #888); cursor: pointer; transition: color 0.15s;
}
.fz-cart-drawer__close:hover { color: var(--color-text, #1a1a1a); }
.fz-cart-drawer__shipping {
    padding: 16px 24px; background: var(--color-bg-alt, #F3F0EA);
    flex-shrink: 0;
}
.fz-cart-drawer__shipping-text {
    font-size: 0.75rem; color: var(--color-muted, #888);
    margin-bottom: 8px; text-align: center;
}
.fz-cart-drawer__shipping-text--done { color: #2d6a2d; }
.fz-cart-drawer__progress {
    height: 4px; background: var(--color-border, rgba(0,0,0,.08)); overflow: hidden; border-radius: 2px;
}
.fz-cart-drawer__progress-fill {
    height: 100%; background: var(--color-accent, #8B7355);
    transition: width 0.5s ease;
}
.fz-cart-drawer__body {
    flex: 1; overflow-y: auto; padding: 0;
    -webkit-overflow-scrolling: touch;
}
.fz-cart-drawer__item {
    display: flex; gap: 16px; padding: 20px 24px;
    border-bottom: 1px solid var(--color-divider, rgba(0,0,0,.08));
    position: relative;
}
.fz-cart-drawer__item-img {
    width: 80px; height: 80px; flex-shrink: 0; overflow: hidden;
    background: var(--color-bg-alt, #F3F0EA); border-radius: 4px;
}
.fz-cart-drawer__item-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.fz-cart-drawer__item-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.fz-cart-drawer__item-name {
    font-size: 14px; font-weight: 500; color: var(--color-text, #1a1a1a);
    line-height: 1.4; text-decoration: none;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.fz-cart-drawer__item-name:hover { text-decoration: underline; }
.fz-cart-drawer__item-price { font-size: 14px; color: var(--color-muted, #888); }
.fz-cart-drawer__item-qty {
    display: inline-flex; align-items: center;
    border: 1px solid rgba(0,0,0,.12); height: 32px; margin-top: 4px; width: fit-content;
}
.fz-cart-drawer__qty-btn {
    width: 32px; height: 100%; display: flex; align-items: center; justify-content: center;
    font-size: 0.875rem; background: none; border: none; cursor: pointer;
    color: var(--color-text, #1a1a1a); transition: background 0.15s;
}
.fz-cart-drawer__qty-btn:hover { background: rgba(0,0,0,.04); }
.fz-cart-drawer__qty-val {
    width: 32px; text-align: center; font-size: 0.75rem; font-weight: 500;
    border-left: 1px solid rgba(0,0,0,.12); border-right: 1px solid rgba(0,0,0,.12);
    line-height: 32px;
}
.fz-cart-drawer__item-remove {
    position: absolute; top: 20px; right: 24px;
    background: none; border: none; padding: 4px;
    color: var(--color-muted, #888); cursor: pointer; opacity: 0;
    transition: opacity 0.15s, color 0.15s;
}
.fz-cart-drawer__item:hover .fz-cart-drawer__item-remove { opacity: 1; }
.fz-cart-drawer__item-remove:hover { color: var(--color-sale, #8B2500); }
.fz-cart-drawer__empty {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 64px 24px; gap: 24px; text-align: center;
    color: var(--color-muted, #888); font-size: 0.9375rem;
}
.fz-cart-drawer__footer {
    padding: 20px 24px; border-top: 1px solid var(--color-divider, rgba(0,0,0,.08));
    flex-shrink: 0; background: var(--color-white, #fff);
}
.fz-cart-drawer__subtotal {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 1rem; font-weight: 600; margin-bottom: 8px;
}
.fz-cart-drawer__tax-note {
    font-size: 0.6875rem; color: var(--color-muted, #888);
    margin-bottom: 16px; text-align: center;
}
.fz-cart-drawer__checkout { margin-bottom: 8px; }
.fz-cart-drawer__checkout .fz-btn {
    height: 52px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8125rem;
}
.fz-cart-drawer__view-cart {
    display: block; text-align: center;
    font-size: 0.75rem; color: var(--color-muted, #888);
    text-decoration: underline; text-underline-offset: 3px;
    transition: color 0.15s;
}
.fz-cart-drawer__view-cart:hover { color: var(--color-text, #1a1a1a); }

/* ═══════════════════════════════════════════════════
   MOBILE — Phase 2 Critical Checks
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Cart drawer: 85% width on mobile */
    .fz-cart-drawer__panel { width: 85vw; max-width: 85vw; }

    /* Touch targets: min 44px */
    .fz-btn, button, a[class*="btn"],
    .fz-accordion__trigger,
    .fz-nav__item a,
    .fz-drawer__nav a,
    .fz-footer__links a { min-height: 44px; }

    /* Product grid: 2 columns, 12px gap, 160px min card height */
    .fz-product-grid--3,
    .fz-product-grid--4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .fz-product-card__image-wrap { min-height: unset; }

    /* Hero CTA mobile */
    .fz-hero__cta {
        padding: 14px 32px;
        font-size: 12px;
    }

    /* PDP gallery mobile — full width */
    .fz-pdp__hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Split section mobile padding */
    .fz-split__content {
        padding: 40px 20px;
    }

    /* Newsletter: stacked */
    .fz-newsletter__field {
        flex-direction: column;
        gap: 12px;
    }
    .fz-newsletter__field input {
        border-right: 1px solid rgba(255,255,255,.2);
        border-bottom: none;
        height: 52px;
        width: 100%;
        box-sizing: border-box;
    }
    .fz-newsletter__field .fz-btn {
        height: 52px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Sticky bar: full width */
    .fz-sticky-bar { z-index: 1050; }
    .fz-sticky-bar__action .fz-btn--sm { width: auto; }
}

@media (max-width: 480px) {
    /* Cart drawer: full screen on small mobile */
    .fz-cart-drawer__panel { width: 100vw; max-width: 100vw; }

    .fz-product-card__image-wrap { min-height: unset; }

    /* Hero title readable on small screens */
    .fz-hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    /* Horizontal scroll indicators */
    .fz-rooms__scroll,
    .fz-bestsellers__track,
    .fz-testimonials__scroll {
        scroll-padding: 0 16px;
    }
}


/* ═══════════════════════════════════════════════════
   ADIM 14: Stagger Reveal Animations
   ═══════════════════════════════════════════════════ */
[data-reveal] .fz-product-card,
[data-reveal] .fz-rooms__card,
[data-reveal] .fz-value-props__item,
[data-reveal] .fz-reviews__card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible .fz-product-card,
[data-reveal].is-visible .fz-rooms__card,
[data-reveal].is-visible .fz-value-props__item,
[data-reveal].is-visible .fz-reviews__card {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   ADIM 15: General Polish
   ═══════════════════════════════════════════════════ */

/* Smooth image load */
.fz-product-card__image--primary,
.fz-rooms__card-image img,
.fz-cat-grid__card-img img {
    opacity: 0;
    transition: opacity 0.5s ease;
}
.fz-product-card__image--primary.is-loaded,
.fz-rooms__card-image img.is-loaded,
.fz-cat-grid__card-img img.is-loaded,
.fz-product-card__image--primary[src],
.fz-rooms__card-image img[src],
.fz-cat-grid__card-img img[src] {
    opacity: 1;
}

/* Global link hover — consistent SVG arrow shift */
.fz-editorial-v2__link:hover svg,
.fz-split__link:hover svg,
.fz-split-v2__link:hover svg,
.fz-featured__link:hover svg,
.fz-rooms__link:hover svg {
    transform: translateX(4px);
}

/* PDP tabs — active tab underline thicker */
.fz-pdp-tabs__btn.is-active {
    border-bottom-width: 2px;
}

/* Newsletter input focus ring */
.fz-newsletter__field input:focus {
    border-color: rgba(255,255,255,.6);
    box-shadow: 0 0 0 1px rgba(255,255,255,.15);
}


/* ═══════════════════════════════════════════════════
   DESIGN CENTER — External nav link
   ═══════════════════════════════════════════════════ */
.fz-nav__item--external a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}
.fz-nav__external-icon {
    opacity: 0.5;
    transition: opacity 0.2s;
}
.fz-nav__item--external a:hover .fz-nav__external-icon {
    opacity: 1;
}

/* Phase 3: Serif font custom property */
:root {
    --fz-font-serif: 'DM Sans', 'Helvetica Neue', sans-serif;
}
