/* ============================================================
   Fashion Demo — Component Overrides
   ALL rules scoped to [data-demo="fashion"] — zero impact on
   electronics / herbal or any future demo.
   ============================================================ */


/* ── Design Tokens: Kids Fashion ───────────────────────────── */
/* Colors come from DB palette — only non-color tokens here     */

[data-demo="fashion"] {
    --font-primary:    'Nunito', 'Poppins', system-ui, sans-serif;
    --transition-base: 260ms cubic-bezier(0.34, 1.4, 0.64, 1);
    --transition-slow: 500ms cubic-bezier(0.34, 1.2, 0.64, 1);
}

/* ── Homepage Section Backgrounds: no dark sections ────────── */

[data-demo="fashion"] .homepage-section--featured {
    background: color-mix(in srgb, var(--color-primary) 6%, #fff);
}

[data-demo="fashion"] .homepage-section--featured .section-header,
[data-demo="fashion"] .homepage-section--featured .category-strip-header,
[data-demo="fashion"] .homepage-section--featured .flash-sale-header,
[data-demo="fashion"] .homepage-section--featured .section-header *:not(.btn),
[data-demo="fashion"] .homepage-section--featured .category-strip-header *:not(.btn) {
    color: var(--color-text-primary);
}

[data-demo="fashion"] .homepage-section--featured .section-title,
[data-demo="fashion"] .homepage-section--featured .category-strip-title,
[data-demo="fashion"] .homepage-section--featured .flash-sale-title {
    color: var(--color-text-primary);
    font-size: clamp(1.4rem, 3vw, 1.875rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

[data-demo="fashion"] .homepage-section--featured .section-title::after,
[data-demo="fashion"] .homepage-section--featured .category-strip-title::after {
    background: var(--color-primary);
    margin-left: 0;
    margin-right: 0;
}

[data-demo="fashion"] .homepage-section--featured .section-cta .btn-outline-primary,
[data-demo="fashion"] .homepage-section--featured .category-strip-cta {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

[data-demo="fashion"] .homepage-section--featured .section-cta .btn-outline-primary:hover,
[data-demo="fashion"] .homepage-section--featured .category-strip-cta:hover {
    background: var(--color-primary);
    color: #fff;
}

[data-demo="fashion"] .homepage-section--featured .product-card {
    border-color: var(--color-border-light);
    box-shadow: var(--shadow-md);
}

/* Remove left accent bar from soft sections — kids fashion = centered */
[data-demo="fashion"] .homepage-section--soft .section-title,
[data-demo="fashion"] .homepage-section--soft .category-strip-title {
    padding-inline-start: 0;
    border-inline-start: none;
}

[data-demo="fashion"] .homepage-section--soft {
    background-color: color-mix(in srgb, var(--color-primary) 5%, #fff);
}

/* ── Banner Cards: keep subtle radius, lose heavy shadow ───── */

[data-demo="fashion"] .banner-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ── Product Grid: 3-col on desktop (overrides col-6 col-md-3) */

@media (min-width: 768px) {
    [data-demo="fashion"] .products-showcase-section .col-md-3 {
        width: 33.3333%;
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}


/* ── Category Showcase ─────────────────────────────────────── */

[data-demo="fashion"] .category-strip-section {
    padding: 3rem 0 3.5rem;
}

/* Strip wrapper: remove card-box look, stack vertically */
[data-demo="fashion"] .category-strip-wrapper {
    flex-direction: column;
    gap: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    overflow: visible;
}

/* Centered, editorial-style header */
[data-demo="fashion"] .category-strip-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 0;
    border: none;
    min-width: unset;
    max-width: unset;
    width: 100%;
}

/* Hide the vertical/horizontal divider element */
[data-demo="fashion"] .category-strip-divider {
    display: none;
}

[data-demo="fashion"] .category-strip-title {
    font-size: clamp(1.4rem, 3vw, 1.875rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--color-text-primary);
    position: relative;
    padding-bottom: 0.875rem;
    margin: 0;
}

/* Thin decorative underline centered below title */
[data-demo="fashion"] .category-strip-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}

/* Pill-shaped CTA button */
[data-demo="fashion"] .category-strip-header .btn {
    border-radius: 50px;
    padding: 0.4rem 1.75rem;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

/* ── Grid: replace horizontal scroll with CSS grid ─────────── */

[data-demo="fashion"] .category-strip-scroll {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    /* Reset all horizontal-scroll behaviour */
    overflow: visible !important;
    padding: 0 !important;
    scroll-snap-type: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    flex: none;
    width: 100%;
}

/* ── Card: portrait, full-bleed image ──────────────────────── */

[data-demo="fashion"] .category-strip-item {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    background: var(--color-primary-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* grid blowout prevention */
    min-width: 0;
    /* reset strip flex sizing */
    flex: none;
    width: auto;
    padding: 0;
    scroll-snap-align: none;
}

[data-demo="fashion"] .category-strip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
}

/* ── Thumbnail: stretch to fill card completely ─────────────── */

[data-demo="fashion"] .category-strip-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
    background: transparent;
    flex-shrink: unset;
}

/* Reset thumb border/glow on hover — card lift handles the effect */
[data-demo="fashion"] .category-strip-item:hover .category-strip-thumb {
    border-color: transparent;
    box-shadow: none;
}

[data-demo="fashion"] .category-strip-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.5s ease;
    /* Reset strip thumbnail sizing */
    max-width: none;
    max-height: none;
}

[data-demo="fashion"] .category-strip-item:hover .category-strip-thumb img {
    transform: scale(1.07);
}

/* ── Gradient overlay for text legibility ───────────────────── */

[data-demo="fashion"] .category-strip-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.60) 0%,
        rgba(0, 0, 0, 0.18) 40%,
        transparent 68%
    );
    border-radius: 16px;
    pointer-events: none;
}

/* ── Category name: overlaid at card bottom ─────────────────── */

[data-demo="fashion"] .category-strip-name {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    z-index: 2;
    color: var(--color-white);
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
    padding: 0 10px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
    letter-spacing: 0.025em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Reset strip label */
    margin-top: 0;
    width: auto;
}

/* ── Placeholder (category has no image) ────────────────────── */

[data-demo="fashion"] .category-strip-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-primary-light);
    /* Reset fixed-size strip placeholder */
    border-radius: 0;
    min-width: unset;
    min-height: unset;
}


/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 1199.98px) {
    [data-demo="fashion"] .category-strip-scroll {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 991.98px) {
    [data-demo="fashion"] .category-strip-scroll {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.875rem;
    }
}

@media (max-width: 575.98px) {
    [data-demo="fashion"] .category-strip-section {
        padding: 2rem 0 2.5rem;
    }

    [data-demo="fashion"] .category-strip-scroll {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
    }

    [data-demo="fashion"] .category-strip-name {
        font-size: 0.75rem;
        bottom: 10px;
    }
}


/* ── Product Showcase ───────────────────────────────────────── */

/* Section header: centered editorial, same pattern as category */
[data-demo="fashion"] .products-showcase-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

[data-demo="fashion"] .products-showcase-section .section-header-text {
    min-width: 0;
    max-width: 100%;
    text-align: center;
}

[data-demo="fashion"] .products-showcase-section .section-title {
    font-weight: var(--weight-normal);
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.875rem;
    color: var(--color-text-primary);
}

[data-demo="fashion"] .products-showcase-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}

[data-demo="fashion"] .products-showcase-section .section-cta .btn {
    border-radius: var(--radius-full);
    padding: 0.4rem 1.75rem;
    font-size: var(--text-xs);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

/* Grid: more breathing room between portrait cards */
[data-demo="fashion"] .products-showcase-section .row {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.25rem;
}

/* ── Product Card Frame ─────────────────────────────────────── */

[data-demo="fashion"] .product-card {
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[data-demo="fashion"] .product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

/* ── Image Area: portrait 3:4, cover fit ────────────────────── */

[data-demo="fashion"] .product-image-wrapper {
    aspect-ratio: 4 / 5;
    background: var(--color-primary-light);
    border-radius: 0;
}

[data-demo="fashion"] .product-image {
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

[data-demo="fashion"] .product-card:hover .product-image {
    transform: scale(1.05);
}

/* Overlay: lighter default, fades in more on hover */
[data-demo="fashion"] .product-card-overlay {
    background: rgba(0, 0, 0, 0.3);
}

/* ── Card Content ───────────────────────────────────────────── */

[data-demo="fashion"] .product-category {
    color: var(--color-primary);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: 0.08em;
}

[data-demo="fashion"] .product-title .product-link {
    font-weight: var(--weight-medium);
    color: var(--color-text-primary);
}

/* Brand hidden — cleaner fashion card */
[data-demo="fashion"] .product-brand {
    display: none;
}

[data-demo="fashion"] .product-price {
    color: var(--color-text-primary);
    font-weight: var(--weight-semibold);
}

/* ── Add to Cart Button: outlined pill ──────────────────────── */

/* Hide amber icon strip */
[data-demo="fashion"] .btn-cart-icon {
    display: none;
}

[data-demo="fashion"] .btn-add-to-cart {
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    border-radius: 0;
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    letter-spacing: 0.04em;
    transition: background var(--transition-base), color var(--transition-base);
}

[data-demo="fashion"] .btn-add-to-cart:hover,
[data-demo="fashion"] .btn-add-to-cart:focus-visible {
    background: var(--color-primary);
    color: var(--color-button-text);
    border-color: var(--color-primary);
}

/* View options button (variable products): same pill style */
[data-demo="fashion"] .btn-view-options {
    border-radius: 0;
    font-size: var(--text-sm);
    letter-spacing: 0.04em;
}

/* ── Mobile ─────────────────────────────────────────────────── */

@media (max-width: 575.98px) {
    [data-demo="fashion"] .products-showcase-section .row {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }
}


/* ── Brand Showcase ─────────────────────────────────────────── */

/* Centered editorial header */
[data-demo="fashion"] .brand-showcase-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

[data-demo="fashion"] .brand-showcase-section .section-header-text {
    text-align: center;
    min-width: 0;
    max-width: 100%;
}

[data-demo="fashion"] .brand-showcase-section .section-title {
    font-weight: var(--weight-normal);
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.875rem;
    color: var(--color-text-primary);
}

[data-demo="fashion"] .brand-showcase-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}

[data-demo="fashion"] .brand-showcase-section .section-cta .btn {
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

/* Marquee track: elegant spacing */
[data-demo="fashion"] .brand-marquee-track {
    gap: 0;
}

/* Brand item: inline-flex with dot separator after */
[data-demo="fashion"] .brand-logo-item {
    display: inline-flex;
    align-items: center;
    padding-inline: 2rem;
    border-inline-end: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
    text-decoration: none;
}

/* Brand name text: uppercase, editorial, spaced */
[data-demo="fashion"] .brand-logo-text {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    white-space: nowrap;
    opacity: 0.65;
    transition: color var(--transition-base), opacity var(--transition-base);
}

[data-demo="fashion"] .brand-logo-item:hover .brand-logo-text {
    color: var(--color-primary);
    opacity: 1;
}

/* Brand logo image: grayscale → color on hover */
[data-demo="fashion"] .brand-logo-img {
    height: 26px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: filter var(--transition-base), opacity var(--transition-base);
}

[data-demo="fashion"] .brand-logo-item:hover .brand-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Fade edges match white background */
[dir="ltr"] [data-demo="fashion"] .brand-marquee-wrapper::before {
    background: linear-gradient(to right, var(--color-white), transparent);
}
[dir="ltr"] [data-demo="fashion"] .brand-marquee-wrapper::after {
    background: linear-gradient(to left, var(--color-white), transparent);
}
[dir="rtl"] [data-demo="fashion"] .brand-marquee-wrapper::before {
    background: linear-gradient(to left, var(--color-white), transparent);
}
[dir="rtl"] [data-demo="fashion"] .brand-marquee-wrapper::after {
    background: linear-gradient(to right, var(--color-white), transparent);
}


/* ── Categories Index Page ──────────────────────────────────── */

/* Hero: minimal editorial — white bg, no color wash */
[data-demo="fashion"] .cat-hero {
    background: var(--color-surface);
    padding: 3rem 0 2.5rem;
}

/* Remove dot-grid texture and diagonal overlay */
[data-demo="fashion"] .cat-hero::before,
[data-demo="fashion"] .cat-hero::after {
    display: none;
}

/* Center the inner content */
[data-demo="fashion"] .cat-hero__inner {
    text-align: center;
}

/* Breadcrumb: dark muted text on white bg */
[data-demo="fashion"] .cat-hero__breadcrumb .breadcrumb-item,
[data-demo="fashion"] .cat-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before,
[data-demo="fashion"] .cat-hero__breadcrumb .breadcrumb-item.active {
    color: var(--color-text-muted);
}

[data-demo="fashion"] .cat-hero__breadcrumb .breadcrumb-item a {
    color: var(--color-text-muted);
}

[data-demo="fashion"] .cat-hero__breadcrumb .breadcrumb-item a:hover {
    color: var(--color-primary);
}

/* Title: editorial, light weight, letter-spaced */
[data-demo="fashion"] .cat-hero__title {
    color: var(--color-text-primary);
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: var(--space-4);
}

/* Thin centered underline */
[data-demo="fashion"] .cat-hero__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}

/* Count pill: ghost style */
[data-demo="fashion"] .cat-hero__count {
    background: transparent;
    color: var(--color-text-muted);
    font-weight: var(--weight-normal);
    letter-spacing: 0.08em;
    font-size: var(--text-xs);
    text-transform: uppercase;
    border: 1px solid var(--color-border-light);
}

/* ── Groups section → portrait grid of root categories ───────── */

[data-demo="fashion"] .cat-groups-section {
    background: var(--color-white);
    padding-block: 2.5rem 4rem;
}

/* Turn container into a 3-col grid — each .cat-group is a cell */
[data-demo="fashion"] .cat-groups-section > .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

/* Each group: card + subcategory pills stacked */
[data-demo="fashion"] .cat-group {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

[data-demo="fashion"] .cat-group:last-child {
    margin-bottom: 0;
}

/* ── Banner: portrait 3:4 card ───────────────────────────────── */

[data-demo="fashion"] .cat-group__banner {
    aspect-ratio: 3 / 4;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Remove accent bar animation — lift effect is enough */
[data-demo="fashion"] .cat-group__banner::after {
    display: none;
}

/* Lighter gradient — fashion images are key, don't wash them out */
[data-demo="fashion"] .cat-group__banner::before {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.18) 50%,
        transparent 78%
    );
}

/* Hover: clean lift with deeper shadow */
@media (hover: hover) {
    [data-demo="fashion"] .cat-group__banner:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
    }
}

/* Body: stacked column at bottom-left */
[data-demo="fashion"] .cat-group__banner-body {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-5);
}

/* Title: minimal uppercase */
[data-demo="fashion"] .cat-group__banner-title {
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: clamp(0.7rem, 1.1vw, 0.875rem);
}

/* Sub-count meta */
[data-demo="fashion"] .cat-group__banner-meta {
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}

/* CTA pill: compact */
[data-demo="fashion"] .cat-group__banner-cta {
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: var(--space-1) var(--space-3);
    margin-top: var(--space-1);
}

/* ── Subcategory strip → text pill badges ────────────────────── */

/* Override the desktop CSS-grid that .cat-group__subs gets at 992px */
[data-demo="fashion"] .cat-group__subs {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.375rem;
    overflow-x: visible !important;
    padding: 0 !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

/* Sub card → text-only pill */
[data-demo="fashion"] .cat-sub {
    flex: 0 0 auto;
    width: auto !important;
    aspect-ratio: unset;
    height: auto;
    border-radius: 50px;
    background: transparent;
    border: 1px solid var(--color-border-light);
    box-shadow: none;
    overflow: visible;
    transition:
        background var(--transition-fast),
        border-color var(--transition-fast);
}

/* Kill pseudo-element overlays */
[data-demo="fashion"] .cat-sub::after,
[data-demo="fashion"] .cat-sub::before {
    display: none !important;
}

/* Hide image — text only */
[data-demo="fashion"] .cat-sub__bg {
    display: none;
}

/* Text label padding */
[data-demo="fashion"] .cat-sub__body {
    position: static;
    padding: 0.25rem 0.75rem;
    text-align: left;
}

/* Name: small, muted, nowrap */
[data-demo="fashion"] .cat-sub__name {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
    color: var(--color-text-muted);
    font-size: 0.6875rem;
    font-weight: var(--weight-medium);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1.5;
}

@media (hover: hover) {
    [data-demo="fashion"] .cat-sub:hover {
        transform: none;
        box-shadow: none;
        background: var(--color-primary);
        border-color: var(--color-primary);
    }

    [data-demo="fashion"] .cat-sub:hover .cat-sub__name {
        color: var(--color-button-text);
    }
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 991.98px) {
    [data-demo="fashion"] .cat-groups-section > .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    [data-demo="fashion"] .cat-hero {
        padding: 2rem 0 1.75rem;
    }

    [data-demo="fashion"] .cat-groups-section {
        padding-block: 1.75rem 3rem;
    }

    [data-demo="fashion"] .cat-groups-section > .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    [data-demo="fashion"] .cat-group__banner-body {
        padding: var(--space-3) var(--space-3);
        gap: var(--space-1);
    }

    [data-demo="fashion"] .cat-group__banner-title {
        font-size: 0.6875rem;
    }

    [data-demo="fashion"] .cat-group__banner-cta {
        display: none;
    }
}


/* ── Mega Menu: Portrait promo images ───────────────────────────── */

[data-demo="fashion"] .mega-menu__promo-img {
    aspect-ratio: 4 / 5;
    max-height: 320px;
    object-position: center top;
}

/* ── Homepage Visual Rhythm ─────────────────────────────────────── */

/* Section title font-size (weight/spacing already set above) */
[data-demo="fashion"] .products-showcase-section .section-title,
[data-demo="fashion"] .brand-showcase-section .section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
}

/* Featured: dramatic editorial title */
[data-demo="fashion"] .homepage-section--featured .section-title,
[data-demo="fashion"] .homepage-section--featured .category-strip-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Featured: generous breathing room */
[data-demo="fashion"] .homepage-section--featured .products-showcase-section,
[data-demo="fashion"] .homepage-section--featured .category-strip-section,
[data-demo="fashion"] .homepage-section--featured .brand-showcase-section,
[data-demo="fashion"] .homepage-section--featured .banners-grid-section {
    padding-block: calc(var(--section-spacing) * 1.5);
}

/* Section separators — thin line between sections */
[data-demo="fashion"] .homepage-section + .homepage-section {
    border-top: 1px solid var(--color-border-light);
}

/* No separator when transitioning to/from featured (dark bg handles visual break) */
[data-demo="fashion"] .homepage-section--featured + .homepage-section,
[data-demo="fashion"] .homepage-section + .homepage-section--featured {
    border-top: none;
}

/* Section header bottom spacing */
[data-demo="fashion"] .products-showcase-section .section-header {
    margin-bottom: var(--space-8);
}

[data-demo="fashion"] .homepage-section--featured .section-header {
    margin-bottom: var(--space-10);
}

/* Product title: bump from text-sm (14px) to text-base (16px) */
[data-demo="fashion"] .product-title {
    font-size: var(--text-base);
}

/* Product price: match title size, already semibold from above */
[data-demo="fashion"] .product-price,
[data-demo="fashion"] .product-price-current {
    font-size: var(--text-base);
}

/* ── Editorial Product Card — Remove Chrome ─────────────────────── */

/* Hide noise: rating stars, category label, savings badge */
[data-demo="fashion"] .product-card-rating { display: none; }
[data-demo="fashion"] .product-meta        { display: none; }
[data-demo="fashion"] .product-save-badge  { display: none; }

/* Content: horizontal padding for text readability */
[data-demo="fashion"] .product-content {
    padding: var(--space-3) var(--space-2);
}

/* CTA: hidden until hover — touch devices always show */
@media (hover: hover) {
    [data-demo="fashion"] .btn-add-to-cart,
    [data-demo="fashion"] .btn-view-options {
        opacity: 0;
        transition: opacity 0.2s ease, background var(--transition-base), color var(--transition-base);
    }

    [data-demo="fashion"] .product-card:hover .btn-add-to-cart,
    [data-demo="fashion"] .product-card:hover .btn-view-options {
        opacity: 1;
    }
}
