/* ===== ALDOS HOMEPAGE — PREMIUM LUXURY ===== */
body.is-shop-home {
    /* Editorial luxury palette */
    --home-paper: #f4f1ec;
    --home-surface: #ffffff;
    --home-ink: #1a1816;
    --home-ink-soft: #4a4642;
    --home-stone: #9a948c;
    --home-line: #e8e4de;
    --home-accent: #901E50;
    --home-accent-deep: #6d133c;
    --home-champagne: #b8956b;
    --home-gold: #c4a574;
    --home-sale: #901E50;
    --home-cream: var(--home-paper);
    --home-serif: 'Cormorant Garamond', Georgia, serif;
    --home-sans: 'DM Sans', 'Inter', system-ui, sans-serif;
    --brand: #901E50;
    --brand-dark: #6d133c;
    --brand-light: #b84472;
    --brand-tint: rgba(144, 30, 80, 0.1);
    --brand-surface: #faf5f8;
    --orange: var(--brand);
    --orange-light: var(--brand-light);
    --orange-dark: var(--brand-dark);
    background: var(--home-paper);
    color: var(--home-ink);
}

/* Reinforced in shop-header.css + public-theme.css */

/* ----- Hero (extends under sticky header so glass mode shows media) ----- */
.home-hero-section {
    padding: 0;
    width: 100%;
}

body.is-shop-home .home-hero-section {
    margin-top: -108px;
}

@media (max-width: 767px) {
    body.is-shop-home .home-hero-section {
        margin-top: -168px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .home-category-tile--has-image {
        background-position: 95% center;
    }
}

.home-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #1a1218;
}

.home-hero-track {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 90vh;
    max-height: 90vh;
}

.home-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.9s;
    z-index: 0;
}

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

.home-hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.home-hero-img,
.home-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-hero-slide.is-active .home-hero-img {
    animation: homeHeroKenBurns 8s ease-out forwards;
}

@keyframes homeHeroKenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

.home-hero-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a1520 0%, #901E50 45%, #4a2035 100%);
}

.home-hero-fallback--brand {
    background: linear-gradient(160deg, #1a1816 0%, var(--home-accent-deep) 45%, #3d2832 100%);
}

.home-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.15) 45%,
        rgba(0, 0, 0, 0.25) 100%
    );
    pointer-events: none;
}

.home-hero-copy {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 0 0 48px;
    z-index: 2;
    pointer-events: none;
}

.home-hero-copy-inner {
    pointer-events: auto;
}

.home-hero-title {
    font-family: var(--home-serif);
    font-size: clamp(2rem, 6vw, 3.25rem);
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    letter-spacing: 0.02em;
    margin: 0 0 10px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.home-hero-subtitle {
    font-family: var(--home-sans);
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 20px;
    max-width: 28rem;
    line-height: 1.5;
}

.home-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--home-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--home-accent);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 8px 28px rgba(61, 40, 50, 0.35);
}

.home-hero-cta:hover {
    background: var(--home-accent-deep);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(61, 40, 50, 0.45);
}

.home-hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 5;
}

.home-hero-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--home-gold);
    transition: width 0.1s linear;
}

.home-hero-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.home-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: width 0.3s, background 0.3s;
}

.home-hero-dot.is-active {
    width: 28px;
    border-radius: 4px;
    background: #fff;
}

/* ----- Section heads ----- */
.home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.home-section-title {
    font-family: var(--home-serif);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: 0.02em;
}

.home-section-title .home-accent {
    color: var(--home-accent);
}

.home-section-link {
    font-family: var(--home-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--home-accent);
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.04em;
}

.home-section-link:hover {
    color: var(--home-accent-deep);
}

/* ----- Categories (full-width, minimal side padding) ----- */
.home-categories-section {
    padding: 12px 0 12px;
}

.home-categories-section:has(+ .home-discover-section) {
    padding-bottom: 2px;
}

.home-categories-section > .container {
    width: 100%;
    max-width: none;
    padding-left: 8px;
    padding-right: 8px;
}

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
}

@media (min-width: 768px) {
    .home-categories-section > .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .home-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (min-width: 992px) {
    .home-categories-section > .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .home-category-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }
}

.home-category-tile {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    text-decoration: none;
    background: #e8e4df;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(16px);
}

.home-category-tile--has-image {
    background-size: cover;
    background-position: right center;
}

.home-category-tile.animate-in {
    animation: homeFadeUp 0.7s ease-out forwards;
}

.home-category-tile:nth-child(1) { animation-delay: 0.05s; }
.home-category-tile:nth-child(2) { animation-delay: 0.1s; }
.home-category-tile:nth-child(3) { animation-delay: 0.15s; }
.home-category-tile:nth-child(4) { animation-delay: 0.2s; }
.home-category-tile:nth-child(5) { animation-delay: 0.25s; }
.home-category-tile:nth-child(6) { animation-delay: 0.3s; }
.home-category-tile:nth-child(7) { animation-delay: 0.35s; }
.home-category-tile:nth-child(8) { animation-delay: 0.4s; }

.home-category-tile-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-category-tile-ph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2rem, 8vw, 3rem);
    color: rgba(144, 30, 80, 0.35);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.06));
}

.home-category-tile-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.55) 100%);
    transition: opacity 0.4s ease;
}

.home-category-tile-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 14px 12px;
    font-family: var(--home-sans);
    font-size: clamp(0.9rem, 2.8vw, 1.05rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.home-category-tile:hover .home-category-tile-img,
.home-category-tile:focus-visible .home-category-tile-img {
    transform: scale(1.05);
}

.home-category-tile:hover .home-category-tile-scrim,
.home-category-tile:focus-visible .home-category-tile-scrim {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.65) 100%);
}

/* ----- Discover carousel (fullscreen menu tiles) ----- */
.home-discover-section {
    padding: 2px 0 4px;
    overflow: hidden;
}

.home-discover-section .home-section-head {
    margin-bottom: 6px;
}

.home-discover-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    -webkit-overflow-scrolling: touch;
}

.home-discover-marquee__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
}

.home-discover-marquee.is-auto-scrolling .home-discover-marquee__inner {
    animation: homeDiscoverMarquee var(--home-discover-duration, 48s) linear infinite;
    will-change: transform;
}

.home-discover-marquee.is-auto-scrolling .home-discover-marquee__inner.is-paused {
    animation-play-state: paused;
}

.home-discover-track {
    display: flex;
    flex-shrink: 0;
    flex-wrap: nowrap;
    gap: 14px;
    padding: 0 16px 12px;
    width: max-content;
}

.home-discover-marquee:not(.is-auto-scrolling) .home-discover-marquee__inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
}

.home-discover-marquee:not(.is-auto-scrolling) .home-discover-marquee__inner::-webkit-scrollbar {
    display: none;
}

.home-discover-marquee.is-scroll-scrolling .home-discover-marquee__inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
    animation: none;
    transform: none;
    will-change: auto;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
}

.home-discover-marquee.is-scroll-scrolling .home-discover-marquee__inner::-webkit-scrollbar {
    display: none;
}

.home-discover-card {
    position: relative;
    flex: 0 0 min(78vw, 280px);
    width: min(78vw, 280px);
    aspect-ratio: 3 / 4;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 18px rgba(26, 24, 22, 0.12);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.home-discover-card:focus-visible {
    outline: 2px solid var(--home-accent);
    outline-offset: 3px;
}

.home-discover-card:hover {
    box-shadow: 0 6px 20px rgba(26, 24, 22, 0.16);
    transform: translateY(-2px);
}

.home-discover-card__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.home-discover-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-discover-card__ph {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 28px;
    color: rgba(144, 30, 80, 0.35);
    background: rgba(255, 255, 255, 0.45);
}

.home-discover-card__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.42) 32%,
        rgba(0, 0, 0, 0.08) 58%,
        transparent 72%
    );
    pointer-events: none;
}

.home-discover-card__copy {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 12px 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.home-discover-card__label {
    font-family: var(--home-sans);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.home-discover-card__sub {
    font-family: var(--home-sans);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.25;
    opacity: 0.92;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.home-discover-card--serif .home-discover-card__label,
.home-discover-card--serif .home-discover-card__sub {
    font-family: var(--home-serif);
}

.home-discover-card--serif .home-discover-card__label {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.home-discover-card--heavy .home-discover-card__label {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.8rem;
}

.home-discover-card:hover .home-discover-card__img,
.home-discover-card:focus-visible .home-discover-card__img {
    transform: scale(1.05);
}

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

@media (prefers-reduced-motion: reduce) {
    .home-discover-marquee.is-auto-scrolling .home-discover-marquee__inner {
        animation: none;
        transform: none;
    }
}

@media (min-width: 768px) {
    .home-discover-section {
        padding: 6px 0 6px;
    }

    .home-discover-section .home-section-head {
        margin-bottom: 6px;
    }

    .home-discover-card {
        flex: 0 0 300px;
        width: 300px;
        border-radius: 18px;
    }

    .home-discover-track {
        gap: 20px;
        padding: 0 24px 16px;
    }

    .home-discover-card__copy {
        padding: 18px 16px 20px;
    }

    .home-discover-card__label {
        font-size: 1.15rem;
    }

    .home-discover-card__sub {
        font-size: 0.85rem;
    }

    .home-discover-card--serif .home-discover-card__label {
        font-size: 1.35rem;
    }
}

@media (min-width: 1200px) {
    .home-discover-card {
        flex: 0 0 320px;
        width: 320px;
    }

    .home-discover-track {
        gap: 24px;
    }
}

/* ----- Testimonials (carousel + premium cards) ----- */
.home-testimonials-section {
    position: relative;
    padding: 6px 0 14px;
    overflow: visible;
    background:
        radial-gradient(ellipse 90% 60% at 50% 0%, rgba(144, 30, 80, 0.06) 0%, transparent 55%),
        var(--home-paper);
}

.home-section-head--stacked {
    align-items: flex-start;
}

.home-testimonials-head {
    margin-bottom: 10px;
}

.home-testimonials-title.home-section-title {
    position: relative;
    padding-bottom: 10px;
}

.home-testimonials-title.home-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--home-accent), transparent);
}

.home-testimonials-subtitle {
    margin: 10px 0 0;
    font-family: var(--home-sans);
    font-size: 0.92rem;
    color: var(--home-ink-soft);
    line-height: 1.5;
    max-width: 36em;
}

.home-testimonials-carousel {
    position: relative;
    padding: 12px 0 36px;
}

.home-testimonials-carousel__viewport {
    overflow: hidden;
    width: 100%;
    padding: 4px 0;
}

.home-testimonials-carousel__track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .home-testimonials-carousel__track {
        transition: none;
    }
}

.home-testimonials-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    padding: 0 6px;
    box-sizing: border-box;
    opacity: 0.45;
    transition: opacity 0.3s ease;
}

.home-testimonials-slide.is-active {
    opacity: 1;
}

@media (min-width: 992px) {
    .home-testimonials-slide {
        flex: 0 0 50%;
        width: 50%;
    }
}

.home-testimonials-carousel__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0;
}

.home-testimonials-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--home-line);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.home-testimonials-dot.is-active {
    width: 28px;
    border-radius: 4px;
    background: var(--home-accent);
}

.home-testimonial-card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    outline: none;
}

.home-testimonial-card:hover,
.home-testimonial-card:focus-within {
    box-shadow: none;
    outline: none;
}

.home-testimonial-card__inner {
    position: relative;
    height: 100%;
    min-height: 220px;
    padding: 26px 22px 22px;
    background: var(--home-surface);
    border: none;
    border-radius: 20px;
    box-shadow: none;
    outline: none;
    overflow: hidden;
}

.home-testimonial-card:hover .home-testimonial-card__inner,
.home-testimonial-card:focus-within .home-testimonial-card__inner {
    box-shadow: none;
    outline: none;
}

.home-testimonial-card__quote-mark {
    position: absolute;
    top: 8px;
    right: 16px;
    font-family: var(--home-serif);
    font-size: 4.5rem;
    line-height: 1;
    color: var(--home-accent);
    opacity: 0.12;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.home-testimonial-card:hover .home-testimonial-card__quote-mark {
    opacity: 0.22;
    transform: scale(1.05) translateY(-2px);
}

.home-testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--home-accent);
    font-size: 0.88rem;
}

.home-testimonial-card__star {
    transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
    transition-delay: calc(var(--star-i, 1) * 40ms);
}

.home-testimonial-card:hover .home-testimonial-card__star:not(.home-testimonial-card__star--off) {
    transform: scale(1.15) translateY(-1px);
}

.home-testimonial-card__star--off {
    color: var(--home-line);
}

.home-testimonial-card__quote {
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
    padding: 0;
    border: none;
    font-family: var(--home-serif);
    font-size: 1.08rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    color: var(--home-ink);
    letter-spacing: 0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-testimonial-card__footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.home-testimonial-card__avatar {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    box-shadow: none;
    outline: none;
}

.home-testimonial-card:hover .home-testimonial-card__avatar,
.home-testimonial-card:focus-within .home-testimonial-card__avatar {
    box-shadow: none;
    outline: none;
}

.home-testimonial-card__avatar--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(144, 30, 80, 0.14), rgba(184, 149, 107, 0.2));
    color: var(--home-accent);
    font-family: var(--home-sans);
    font-size: 1rem;
    font-weight: 700;
    font-style: normal;
}

.home-testimonial-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.home-testimonial-card__name {
    font-family: var(--home-sans);
    font-size: 1rem;
    font-weight: 700;
    font-style: normal;
    color: var(--home-ink);
    line-height: 1.2;
}

.home-testimonial-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--home-sans);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--home-accent-deep);
    line-height: 1.3;
}

.home-testimonial-card__verified i {
    font-size: 0.85rem;
    color: var(--home-accent);
}

.home-testimonial-card__role {
    font-family: var(--home-sans);
    font-size: 0.8rem;
    color: var(--home-ink-soft);
    line-height: 1.35;
}

@media (min-width: 768px) {
    .home-testimonials-section {
        padding: 8px 0 16px;
    }

    .home-testimonial-card__inner {
        min-height: 240px;
        padding: 28px 26px 24px;
    }

    .home-testimonial-card__quote {
        font-size: 1.15rem;
    }

    .home-testimonials-carousel {
        padding: 0 0 40px;
    }
}

@media (max-width: 575px) {
    .home-testimonials-carousel {
        padding: 0 0 32px;
    }

    .home-testimonials-carousel__dots {
        margin-top: 20px;
    }
}

/* ----- New arrivals grid (4 per row desktop) ----- */
.home-arrivals-section {
    padding: 14px 0 10px;
}

.home-testimonials-section + .products-section,
.home-arrivals-section + .home-testimonials-section {
    /* spacing handled per-section */
}

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

@media (min-width: 768px) {
    .home-product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px 6px;
    }
}

.home-product-grid .lux-product-card {
    width: 100%;
    min-width: 0;
}

body.is-shop-home .group-section .products-row .lux-product-card {
    width: 200px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    body.is-shop-home .group-section .products-row .lux-product-card {
        width: 220px;
    }
}

/* ----- Product card — home entrance animation ----- */
body.is-shop-home .lux-product-card {
    opacity: 0;
    transform: translateY(14px);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

body.is-shop-home .lux-product-card.animate-in {
    animation: homeFadeUp 0.65s ease-out forwards;
}

body.is-shop-home .lux-product-card:hover,
body.is-shop-home .lux-product-card:focus-within {
    transform: translateY(0);
}

.home-product-grid .lux-product-card:nth-child(1) { animation-delay: 0.04s; }
.home-product-grid .lux-product-card:nth-child(2) { animation-delay: 0.08s; }
.home-product-grid .lux-product-card:nth-child(3) { animation-delay: 0.12s; }
.home-product-grid .lux-product-card:nth-child(4) { animation-delay: 0.16s; }
.home-product-grid .lux-product-card:nth-child(5) { animation-delay: 0.2s; }
.home-product-grid .lux-product-card:nth-child(6) { animation-delay: 0.24s; }
.home-product-grid .lux-product-card:nth-child(7) { animation-delay: 0.28s; }
.home-product-grid .lux-product-card:nth-child(8) { animation-delay: 0.32s; }

@keyframes homeFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-empty-note {
    font-family: var(--home-sans);
    color: var(--text-muted);
    text-align: center;
    padding: 32px 0;
}

/* Group sections — phase 2 spacing on home */
body.is-shop-home .group-section {
    padding: 12px 0;
}

body.is-shop-home .group-section .section-title h2 {
    font-family: var(--home-serif);
    font-weight: 600;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .home-hero-slide.is-active .home-hero-img {
        animation: none;
    }

    .home-hero-slide,
    .home-category-tile,
    .home-product-card {
        transition: none;
    }
}

/* Dark mode */

