/* ═══════════════════════════════════════════════════
   FEROZZI — Homepage 2026 US Premium
   References: RH, Rove Concepts, CB2, Article
   Massive type, zero chrome, kinetic, immersive
   ═══════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════
   HERO — Full viewport cinematic
   ═══════════════════════════════════════════════════ */
.fz-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    overflow: hidden;
    background: #0a0a0a;
    box-sizing: border-box;
}
.fz-hero__slides {
    position: relative;
    width: 100%;
    height: 100%;
}
.fz-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.4s;
}
.fz-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.fz-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fz-hero__slide.is-active .fz-hero__media:not(video) {
    animation: fzKenBurns 12s ease-out forwards;
}
@keyframes fzKenBurns {
    from { transform: scale(1.08); }
    to   { transform: scale(1); }
}
.fz-hero__media--placeholder {
    background: linear-gradient(160deg, #1a1816 0%, #2d2924 40%, #1a1816 100%);
}
.fz-hero__gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,.1) 0%, transparent 30%),
        linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 60%);
    z-index: 2;
}
.fz-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 0 clamp(24px, 5vw, 80px);
    padding-bottom: clamp(60px, 12vh, 140px);
    max-width: 800px;
    text-align: left;
}
.fz-hero__title {
    font-family: var(--fz-font-heading);
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.fz-hero__subtitle {
    font-family: var(--fz-font-body);
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    font-weight: 400;
    color: rgba(255,255,255,.8);
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 480px;
}
.fz-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.85);
    padding: 16px 40px;
    transition: all 0.3s ease;
}
.fz-hero__cta:hover {
    background: #fff;
    color: var(--fz-black);
    border-color: #fff;
    gap: 14px;
}
.fz-hero__cta svg {
    transition: transform 0.3s ease;
}
.fz-hero__cta:hover svg {
    transform: translateX(4px);
}

/* Progress bars + Counter */
.fz-hero__controls {
    position: absolute;
    bottom: 40px;
    right: clamp(24px, 5vw, 80px);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}
.fz-hero__counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--fz-font-heading);
    color: rgba(255,255,255,.5);
    font-size: 0.8125rem;
}
.fz-hero__counter-current {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}
.fz-hero__counter-sep {
    margin: 0 2px;
}
.fz-hero__progress {
    display: flex;
    gap: 6px;
}
.fz-hero__progress-bar {
    width: 48px;
    height: 2px;
    background: rgba(255,255,255,.2);
    cursor: pointer;
    overflow: hidden;
}
.fz-hero__progress-fill {
    width: 0;
    height: 100%;
    background: #fff;
}
.fz-hero__progress-bar.is-active .fz-hero__progress-fill {
    animation: fzProgressFill 6s linear forwards;
}
@keyframes fzProgressFill {
    from { width: 0; }
    to   { width: 100%; }
}

/* Scroll hint */
.fz-hero__scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.15);
    overflow: hidden;
}
.fz-hero__scroll-dot {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,.8);
    animation: fzScrollDot 2s ease-in-out infinite;
}
@keyframes fzScrollDot {
    0%   { transform: translateY(-12px); }
    50%  { transform: translateY(40px); }
    100% { transform: translateY(40px); }
}


/* ═══════════════════════════════════════════════════
   MARQUEE — Infinite scroll trust bar
   ═══════════════════════════════════════════════════ */
.fz-marquee {
    background: var(--fz-black);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
}
.fz-marquee__track {
    display: flex;
    animation: fzMarquee 30s linear infinite;
}
.fz-marquee__group {
    display: flex;
    flex-shrink: 0;
}
.fz-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
    font-size: 0.6875rem;
    color: rgba(255,255,255,.7);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
}
.fz-marquee__item svg {
    opacity: 0.3;
}
@keyframes fzMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-33.333%); }
}

/* ═══════════════════════════════════════════════════
   ROOMS — Horizontal scroll category cards
   ═══════════════════════════════════════════════════ */
.fz-rooms {
    padding: 88px 0 0;
    background: var(--fz-bg);
}
.fz-rooms__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 32px;
}
.fz-rooms__title {
    font-family: var(--fz-font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}
.fz-rooms__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fz-muted);
    transition: color 0.2s;
}
.fz-rooms__link:hover { color: var(--fz-text); }
.fz-rooms__link svg { transition: transform 0.3s ease; }
.fz-rooms__link:hover svg { transform: translateX(4px); }

.fz-rooms__scroll {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    padding-bottom: 80px;
}
.fz-rooms__scroll::-webkit-scrollbar { display: none; }
.fz-rooms__scroll:active { cursor: grabbing; }

.fz-rooms__track {
    display: flex;
    gap: 20px;
    padding: 0 max(24px, calc((100vw - var(--fz-container)) / 2 + 24px));
}
.fz-rooms__card {
    flex: 0 0 clamp(300px, 24vw, 380px);
    display: block;
    position: relative;
}
.fz-rooms__card-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    min-height: 320px;
    overflow: hidden;
    background: var(--fz-bg-warm);
}
.fz-rooms__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), filter 0.5s ease;
}
.fz-rooms__card:hover .fz-rooms__card-image img {
    transform: scale(1.03);
    filter: brightness(0.92);
}
.fz-rooms__card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--fz-bg-warm) 0%, #d0cbc3 100%);
}
.fz-rooms__card-content {
    padding: 16px 0;
}
.fz-rooms__card-title {
    font-family: var(--fz-font-heading);
    font-size: 1.375rem;
    font-weight: 400;
    margin-bottom: 6px;
}
.fz-rooms__card-count {
    font-size: 12px;
    color: var(--fz-muted);
}
.fz-rooms__card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fz-muted);
    transition: color 0.2s;
}
.fz-rooms__card:hover .fz-rooms__card-link { color: var(--fz-text); }
.fz-rooms__card-link svg { transition: transform 0.3s ease; }
.fz-rooms__card:hover .fz-rooms__card-link svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════
   FEATURED — New Arrivals
   ═══════════════════════════════════════════════════ */
.fz-home .fz-featured {
    padding: 80px 0 96px;
    background: var(--fz-bg);
}
.fz-featured__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 40px;
}
.fz-featured__title {
    font-family: var(--fz-font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}
.fz-featured__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fz-muted);
    transition: color 0.2s;
}
.fz-featured__link:hover { color: var(--fz-text); }
.fz-featured__link svg { transition: transform 0.3s ease; }
.fz-featured__link:hover svg { transform: translateX(4px); }

/* Featured eyebrow */
.fz-featured__eyebrow {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 8px;
}


/* ═══════════════════════════════════════════════════
   EDITORIAL V2 — Full-bleed immersive
   ═══════════════════════════════════════════════════ */
.fz-editorial-v2 {
    position: relative;
    height: 65vh;
    min-height: 480px;
    max-height: 740px;
    overflow: hidden;
    margin: 80px 0;
}
.fz-editorial-v2__media {
    position: absolute;
    inset: 0;
}
.fz-editorial-v2__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fz-editorial-v2__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2520 0%, #4a3f35 30%, #2a2520 60%, #1a1815 100%);
}
.fz-editorial-v2__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(0,0,0,.6) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
.fz-editorial-v2__content {
    padding: 60px clamp(24px, 5vw, 80px);
    max-width: 520px;
    color: #fff;
}
.fz-editorial-v2__title {
    font-family: var(--fz-font-heading);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.fz-editorial-v2__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255,255,255,.75);
    margin-bottom: 28px;
}
.fz-editorial-v2__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255,255,255,.4);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}
.fz-editorial-v2__link:hover {
    text-decoration-color: #fff;
    gap: 12px;
}
.fz-editorial-v2__link svg {
    transition: transform 0.3s ease;
}
.fz-editorial-v2__link:hover svg {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════
   BESTSELLERS — Full-bleed horizontal scroll
   ═══════════════════════════════════════════════════ */
.fz-bestsellers {
    padding: 80px 0;
    background: var(--fz-white);
}
.fz-bestsellers__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
.fz-bestsellers__title {
    font-family: var(--fz-font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}
.fz-bestsellers__nav {
    display: flex;
    align-items: center;
    gap: 20px;
}
.fz-bestsellers__drag-hint {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fz-gray-300);
}
.fz-bestsellers__arrows {
    display: flex;
    gap: 4px;
}

/* Shared arrow button */
.fz-arrow-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--fz-divider);
    color: var(--fz-text);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}
.fz-arrow-btn:hover {
    background: var(--fz-black);
    color: var(--fz-white);
    border-color: var(--fz-black);
}

.fz-bestsellers__carousel {
    position: relative;
}
.fz-bestsellers__fade {
    display: none;
    position: absolute;
    top: 0;
    bottom: 8px;
    width: 56px;
    z-index: 2;
    pointer-events: none;
}
.fz-bestsellers__fade--end {
    right: 0;
    background: linear-gradient(to left, var(--fz-white) 0%, rgba(255, 255, 255, 0.92) 40%, transparent 100%);
}
.fz-bestsellers__carousel.fz-bestsellers--at-end .fz-bestsellers__fade--end {
    opacity: 0;
}
.fz-bestsellers__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    padding: 0 max(24px, calc((100vw - var(--fz-container)) / 2 + 24px));
    padding-bottom: 8px;
}
.fz-bestsellers__track::-webkit-scrollbar { display: none; }
.fz-bestsellers__track:active { cursor: grabbing; }
.fz-bestsellers__slide {
    flex: 0 0 clamp(280px, 22vw, 340px);
    scroll-snap-align: start;
}
.fz-bestsellers__slide .fz-product-card__image-wrap {
    aspect-ratio: 3 / 4;
    min-height: 340px;
}
.fz-bestsellers__slide .fz-badge {
    max-width: 48px;
    max-height: 22px;
    font-size: 0.625rem;
    padding: 2px 8px;
    border-radius: 2px;
}
.fz-bestsellers__slide .fz-product-card__badges {
    gap: 4px;
}

/* ═══════════════════════════════════════════════════
   VALUE PROPS — Number-led 4-column
   ═══════════════════════════════════════════════════ */
.fz-values {
    padding: 80px 0;
    background: var(--fz-bg);
    border-top: 1px solid var(--fz-divider);
    border-bottom: 1px solid var(--fz-divider);
}
.fz-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}
.fz-values__number {
    display: block;
    font-family: var(--fz-font-heading);
    font-size: 48px;
    font-weight: 400;
    color: rgba(0,0,0,0.08);
    line-height: 1;
    margin-bottom: 20px;
}
.fz-values__heading {
    font-family: var(--fz-font-sans);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.fz-values__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--fz-muted);
}


/* ═══════════════════════════════════════════════════
   SPLIT V2 — Asymmetric 55/45
   ═══════════════════════════════════════════════════ */
.fz-split-v2 {
    background: var(--fz-bg);
}
.fz-split-v2__inner {
    display: grid;
    grid-template-columns: 55fr 45fr;
    min-height: 560px;
}
.fz-split-v2__image {
    overflow: hidden;
}
.fz-split-v2__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 560px;
}
.fz-split-v2__placeholder {
    width: 100%;
    height: 100%;
    min-height: 560px;
    background: var(--fz-bg-warm);
}
.fz-split-v2__content {
    display: flex;
    align-items: center;
    padding: 64px clamp(40px, 5vw, 80px);
    background: var(--fz-bg);
}
.fz-split-v2__eyebrow {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
}
.fz-split-v2__title {
    font-family: var(--fz-font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.15;
}
.fz-split-v2__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--fz-muted);
    margin-bottom: 32px;
}
.fz-split-v2__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fz-text);
    text-decoration: underline;
    text-underline-offset: 4px;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}
.fz-split-v2__link svg {
    transition: transform 0.3s ease;
}
.fz-split-v2__link:hover { gap: 12px; }
.fz-split-v2__link:hover svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════
   UGC — Instagram bento gallery
   ═══════════════════════════════════════════════════ */
.fz-ugc {
    padding: clamp(56px, 8vw, 96px) 0;
    background: var(--fz-bg);
    overflow: hidden;
}
.fz-ugc__header {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 48px);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.fz-ugc__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fz-muted);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.72);
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.fz-ugc__eyebrow:hover {
    color: var(--fz-text);
    border-color: rgba(0, 0, 0, 0.16);
    background: #fff;
}
.fz-ugc__title {
    font-family: var(--fz-font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1.1;
}
.fz-ugc__subtitle {
    font-family: var(--fz-font-body);
    font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
    line-height: 1.65;
    color: var(--fz-muted);
    margin: 0;
}
.fz-ugc__stage {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}
.fz-ugc__bento {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}
.fz-ugc__cell {
    overflow: hidden;
    position: relative;
    isolation: isolate;
    background: #ece8e2;
    border-radius: 3px;
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
}
a.fz-ugc__cell {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.fz-ugc__media {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
}
.fz-ugc__cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.001);
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}
.fz-ugc__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.28) 100%);
    opacity: 0.55;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.fz-ugc__cell-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 18, 18, 0.18);
    opacity: 0;
    transition: opacity 0.35s ease, background 0.35s ease;
    pointer-events: none;
}
.fz-ugc__cell-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.fz-ugc__cell:hover img,
.fz-ugc__cell:focus-visible img {
    transform: scale(1.06);
}
.fz-ugc__cell:hover .fz-ugc__shade,
.fz-ugc__cell:focus-visible .fz-ugc__shade {
    opacity: 0.75;
}
.fz-ugc__cell:hover .fz-ugc__cell-overlay,
.fz-ugc__cell:focus-visible .fz-ugc__cell-overlay {
    opacity: 1;
    background: rgba(18, 18, 18, 0.28);
}
.fz-ugc__cell:hover .fz-ugc__cell-cta,
.fz-ugc__cell:focus-visible .fz-ugc__cell-cta {
    transform: translateY(0);
    opacity: 1;
}
a.fz-ugc__cell:focus-visible {
    outline: 2px solid var(--fz-text);
    outline-offset: 3px;
}
.fz-ugc__placeholder {
    width: 100%;
    height: 100%;
    min-height: 180px;
    background: linear-gradient(135deg, var(--fz-bg-warm) 0%, #cec8be 100%);
}
.fz-ugc__scroll-hint {
    display: none;
    margin: 14px 0 0;
    text-align: center;
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fz-muted);
}
.fz-ugc--live .fz-ugc__cell {
    opacity: 0;
    transform: translateY(18px);
    animation: fzUgcIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--ugc-i, 0) * 90ms + 120ms);
}
@keyframes fzUgcIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fz-ugc__footer {
    text-align: center;
    margin-top: clamp(28px, 4vw, 40px);
}
.fz-ugc__ig-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fz-text);
    border: 1px solid var(--fz-text);
    padding: 14px 36px;
    border-radius: 2px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.fz-ugc__ig-link:hover {
    background: var(--fz-black);
    color: var(--fz-white);
    border-color: var(--fz-black);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS — Horizontal scroll cards
   ═══════════════════════════════════════════════════ */
.fz-testimonials {
    padding: 80px 0;
    background: var(--fz-white);
}
.fz-testimonials__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.fz-testimonials__badge {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    color: #C8A96E;
}
.fz-testimonials__badge span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--fz-text);
    margin-left: 6px;
}
.fz-testimonials__title {
    font-family: var(--fz-font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}
.fz-testimonials__arrows {
    display: flex;
    gap: 4px;
}
.fz-testimonials__arrows .fz-arrow-btn {
    border-radius: 50%;
    background: var(--fz-black);
    color: var(--fz-white);
    border-color: var(--fz-black);
}
.fz-testimonials__arrows .fz-arrow-btn:hover {
    background: var(--fz-text);
    border-color: var(--fz-text);
}
.fz-testimonials__scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 max(24px, calc((100vw - var(--fz-container)) / 2 + 24px));
    padding-bottom: 8px;
}
.fz-testimonials__scroll::-webkit-scrollbar { display: none; }
.fz-testimonials__card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    padding: 36px;
    border: 1px solid var(--fz-divider);
    background: var(--fz-white);
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease;
}
.fz-testimonials__card:hover {
    border-color: var(--fz-gray-300);
}
.fz-testimonials__card-stars {
    display: flex;
    gap: 2px;
    color: #C8A96E;
    margin-bottom: 16px;
}
.fz-testimonials__card-quote {
    font-family: var(--fz-font-body);
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.8;
    color: var(--fz-text);
    flex: 1;
    margin-bottom: 20px;
}
.fz-testimonials__card-meta {
    padding-top: 16px;
    border-top: 1px solid var(--fz-divider);
}
.fz-testimonials__card-name {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.fz-testimonials__card-product {
    font-size: 0.75rem;
    color: var(--fz-muted);
}

/* Verified badge */
.fz-testimonials__card-author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}
.fz-testimonials__card-verified {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2d6a2d;
}
.fz-testimonials__card-verified svg {
    color: #2d6a2d;
}

/* ═══════════════════════════════════════════════════
   PRESS — Homepage context
   ═══════════════════════════════════════════════════ */
.fz-home .fz-press {
    padding: 48px 0;
    background: var(--fz-bg);
    border-top: 1px solid var(--fz-divider);
}

/* ═══════════════════════════════════════════════════
   NEWSLETTER — Homepage: dark, immersive
   ═══════════════════════════════════════════════════ */
.fz-home .fz-newsletter {
    background: var(--fz-black);
    padding: 88px 0;
}
.fz-home .fz-newsletter .fz-newsletter__title {
    color: #fff;
}
.fz-home .fz-newsletter .fz-newsletter__text {
    color: rgba(255,255,255,.5);
}
.fz-home .fz-newsletter .fz-newsletter__field input {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.12);
    color: #fff;
}
.fz-home .fz-newsletter .fz-newsletter__field input::placeholder {
    color: rgba(255,255,255,.3);
}
.fz-home .fz-newsletter .fz-newsletter__field .fz-btn {
    background: #fff;
    color: var(--fz-black);
    border-color: #fff;
}
.fz-home .fz-newsletter .fz-newsletter__field .fz-btn:hover {
    background: rgba(255,255,255,.88);
}
.fz-home .fz-newsletter .fz-newsletter__privacy {
    color: rgba(255,255,255,.25);
}
.fz-home .fz-newsletter .fz-newsletter__privacy a {
    color: rgba(255,255,255,.4);
}
.fz-home .fz-newsletter .fz-newsletter__status--success {
    background: rgba(45,106,45,.15);
    color: #8fdf8f;
    border-color: rgba(45,106,45,.3);
}
.fz-home .fz-newsletter .fz-newsletter__status--error {
    background: rgba(153,27,27,.15);
    color: #fca5a5;
    border-color: rgba(153,27,27,.3);
}


/* ═══════════════════════════════════════════════════
   ADIM 4f: Homepage featured grid gap
   ═══════════════════════════════════════════════════ */
.fz-home .fz-featured .fz-product-grid--4 {
    gap: 28px;
}

/* ═══════════════════════════════════════════════════
   ADIM 4g: Product card image aspect ratio — all homepage grids
   ═══════════════════════════════════════════════════ */
.fz-home .fz-product-card__image-wrap {
    aspect-ratio: 3 / 4;
}

/* ═══════════════════════════════════════════════════
   ADIM 13: Global section titles — tutarlı büyütme
   ═══════════════════════════════════════════════════ */
.fz-rooms__title,
.fz-featured__title,
.fz-bestsellers__title,
.fz-ugc__title,
.fz-split-v2__title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
}
.fz-testimonials__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

/* ═══════════════════════════════════════════════════
   ADIM 14: Global CTA links — tutarlı büyütme
   ═══════════════════════════════════════════════════ */
.fz-rooms__link,
.fz-featured__link,
.fz-editorial-v2__link,
.fz-split-v2__link,
.fz-ugc__ig-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.fz-editorial-v2__link {
    letter-spacing: 2.5px;
}

/* ═══════════════════════════════════════════════════
   ADIM 15: Placeholder gradients — premium
   ═══════════════════════════════════════════════════ */
.fz-rooms__card-placeholder {
    background: linear-gradient(145deg, #EFEBE4 0%, #DDD7CD 40%, #E8E3DB 100%);
}
.fz-ugc__placeholder {
    background: linear-gradient(135deg, #E8E3DB 0%, #D4CFC6 50%, #E8E3DB 100%);
}
.fz-split-v2__placeholder {
    background: linear-gradient(160deg, #EFEBE4 0%, #D4CFC6 50%, #EFEBE4 100%);
}
.fz-editorial-v2__placeholder {
    background: linear-gradient(135deg, #2a2520 0%, #4a3f35 30%, #2a2520 60%, #1a1815 100%);
}

/* ═══════════════════════════════════════════════════
   ADIM 17: Section spacing rhythm
   ═══════════════════════════════════════════════════ */
.fz-home .fz-featured        { padding: 80px 0 88px; }
.fz-home .fz-newsletter      { padding: 88px 0; }

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL — Shared animation
   ═══════════════════════════════════════════════════ */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .fz-ugc--live .fz-ugc__cell {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .fz-ugc__cell img,
    .fz-ugc__cell-overlay,
    .fz-ugc__cell-cta,
    .fz-ugc__shade {
        transition: none;
    }
}

@media (max-width: 1024px) {
    .fz-values__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .fz-ugc__bento {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }
    .fz-testimonials__card {
        flex: 0 0 300px;
    }
    .fz-bestsellers__slide {
        flex: 0 0 280px;
        min-width: 280px;
    }
    .fz-split-v2__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .fz-hero { min-height: 500px; height: 75vh; }
    .fz-hero__content { padding-bottom: clamp(48px, 10vh, 100px); }
    .fz-hero__title { font-size: clamp(2rem, 8vw, 3rem); }
    .fz-hero__subtitle { margin-bottom: 24px; }
    .fz-hero__cta { padding: 14px 32px; font-size: 11px; letter-spacing: 2px; }
    .fz-hero__progress { bottom: 28px; right: 24px; }
    .fz-hero__controls { bottom: 28px; right: 24px; }
    .fz-hero__scroll-hint { display: none; }

    /* Marquee */
    .fz-marquee__item { padding: 0 20px; }

    /* Rooms */
    .fz-rooms { padding: 56px 0 0; }
    .fz-rooms__card { flex: 0 0 280px; min-width: 280px; }
    .fz-rooms__card-image { min-height: 280px; }

    /* Featured */
    .fz-home .fz-featured { padding: 56px 0 64px; }

    /* Editorial */
    .fz-editorial-v2 { height: 50vh; min-height: 360px; margin: 60px 0; }
    .fz-editorial-v2__title { font-size: clamp(1.5rem, 6vw, 2.25rem); }

    /* Bestsellers — one card + clear gap + peek (margin fallback if flex gap fails) */
    .fz-bestsellers { padding: 56px 0; }
    .fz-bestsellers__drag-hint { display: none; }
    .fz-bestsellers__fade--end {
        display: block;
        width: 72px;
    }
    .fz-bestsellers__carousel {
        overflow: hidden;
        position: relative;
    }
    .fz-bestsellers__edge-nav {
        display: none;
        position: absolute;
        right: 12px;
        top: 42%;
        z-index: 4;
        width: 44px;
        height: 44px;
        margin: 0;
        padding: 0;
        border: 1px solid var(--fz-divider);
        border-radius: 50%;
        background: var(--fz-white);
        color: var(--fz-text);
        box-shadow: 0 4px 18px rgba(26, 26, 26, 0.12);
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .fz-bestsellers__edge-nav:not([hidden]) {
        display: flex;
    }
    .fz-bestsellers__track {
        gap: 0;
        padding: 0 var(--fz-gutter) 8px;
        scroll-padding-inline: var(--fz-gutter);
    }
    .fz-bestsellers__slide {
        flex: 0 0 calc(76vw - 8px);
        min-width: calc(76vw - 8px);
        max-width: calc(76vw - 8px);
        margin-right: 20px;
        scroll-snap-align: start;
        box-sizing: border-box;
    }
    .fz-bestsellers__slide:last-child {
        margin-right: var(--fz-gutter);
    }
    .fz-bestsellers__slide .fz-product-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .fz-bestsellers__slide .fz-product-card__image-wrap {
        border-radius: 6px;
    }

    /* Values */
    .fz-values { padding: 64px 0; }
    .fz-values__grid { grid-template-columns: 1fr; gap: 40px; }
    .fz-values__number { font-size: 2.5rem; margin-bottom: 12px; }

    /* Split */
    .fz-split-v2__inner { grid-template-columns: 1fr; }
    .fz-split-v2__image img,
    .fz-split-v2__placeholder { min-height: 320px; }
    .fz-split-v2__content { padding: 48px 24px; }

    /* UGC — square grid on mobile */
    .fz-ugc { padding: 56px 0; }
    .fz-ugc__stage {
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }
    .fz-ugc__bento {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 0;
        overflow: visible;
    }
    .fz-ugc__scroll-hint {
        display: none;
    }

    /* Testimonials */
    .fz-testimonials { padding: 56px 0; }
    .fz-testimonials__card { flex: 0 0 300px; width: 300px; padding: 28px; }
    .fz-testimonials__arrows { display: none; }

    /* Newsletter — stacked with clear gap (no overlap) */
    .fz-home .fz-newsletter { padding: 64px 0; }
    .fz-home .fz-newsletter .fz-newsletter__field {
        flex-direction: column;
        gap: 12px;
    }
    .fz-home .fz-newsletter .fz-newsletter__field input {
        width: 100%;
        box-sizing: border-box;
        border: 1px solid rgba(255,255,255,.12);
        border-right: 1px solid rgba(255,255,255,.12);
        border-bottom: none;
        height: 52px;
    }
    .fz-home .fz-newsletter .fz-newsletter__field .fz-btn {
        width: 100%;
        box-sizing: border-box;
        height: 52px;
    }

    /* Mobile tap targets — 44px minimum (WCAG touch target) */
    .fz-home .fz-btn,
    .fz-home .fz-rooms__link,
    .fz-home .fz-featured__link,
    .fz-home .fz-editorial-v2__link,
    .fz-home .fz-split-v2__link,
    .fz-home .fz-ugc__ig-link,
    .fz-home .fz-hero__cta {
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .fz-hero__content { padding: 0 20px; padding-bottom: 48px; }
    .fz-hero__title { font-size: clamp(1.75rem, 8vw, 2.5rem); }
    .fz-hero__counter { display: none; }
    .fz-rooms__card { flex: 0 0 240px; min-width: 240px; }
    .fz-bestsellers__slide {
        flex: 0 0 calc(78vw - 8px);
        min-width: calc(78vw - 8px);
        max-width: calc(78vw - 8px);
        margin-right: 18px;
    }
    .fz-testimonials__card { flex: 0 0 280px; width: 280px; }
    .fz-bestsellers__arrows { display: none; }
}


/* ═══════════════════════════════════════════════════
   TRUST TICKER — Premium scrolling benefit band
   ═══════════════════════════════════════════════════ */

/* --- 3.1 Design tokens (scoped custom properties) --- */
.fz-trust-ticker {
    --ticker-bg: #F5F3F0;
    --ticker-text: #3A3A3A;
    --ticker-border: #E5E2DE;
    --ticker-gap: 48px;
    --ticker-height: 52px;
    --ticker-font-size: 0.8125rem;
    --ticker-icon-size: 18px;
    --ticker-speed: 35s;
    --ticker-shift: -50%;
}

/* --- 3.2 Base component styles --- */
/* --- 3.4 CLS prevention: min-height reserves space before content renders --- */
.fz-trust-ticker {
    overflow: hidden;
    height: var(--ticker-height);
    min-height: var(--ticker-height);
    background: var(--ticker-bg);
    border-top: 1px solid var(--ticker-border);
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.fz-trust-ticker__track {
    display: flex;
    flex-direction: row;
    width: max-content;
}

.fz-trust-ticker__group {
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
}

.fz-trust-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 calc(var(--ticker-gap) / 2);
    font-family: 'Poppins', sans-serif;
    font-size: var(--ticker-font-size);
    color: var(--ticker-text);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.fz-trust-ticker__icon {
    flex-shrink: 0;
    width: var(--ticker-icon-size);
    height: var(--ticker-icon-size);
    color: inherit;
}

.fz-trust-ticker__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.fz-trust-ticker__prefix {
    font-weight: 500;
}

.fz-trust-ticker__label {
    font-weight: 400;
}

.fz-trust-ticker__sep {
    opacity: 0.3;
    margin: 0 4px;
    font-family: 'Poppins', sans-serif;
    font-size: var(--ticker-font-size);
    color: var(--ticker-text);
}

/* --- 3.3 Responsive breakpoint styles --- */
@media (max-width: 768px) {
    .fz-trust-ticker {
        --ticker-gap: 28px;
        --ticker-height: 44px;
        --ticker-font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .fz-trust-ticker {
        --ticker-gap: 20px;
    }
    .fz-trust-ticker__icon {
        display: none;
    }
}

/* --- 5.1 Ticker scroll animation --- */
@keyframes fzTickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(var(--ticker-shift, -50%)); }
}

.fz-trust-ticker__track {
    animation: fzTickerScroll var(--ticker-speed) linear infinite;
}

/* --- 5.2 Hover pause --- */
.fz-trust-ticker:hover .fz-trust-ticker__track {
    animation-play-state: paused;
}

/* --- 5.3 Reduced-motion fallback --- */
@media (prefers-reduced-motion: reduce) {
    .fz-trust-ticker__track {
        animation: none;
        justify-content: center;
    }
}
