/**
 * Rotateur vertical + typewriter (todo Eleshop) — page d’accueil marketplace
 */

.ecom-text-rotator-viewport {
    display: inline-block;
    vertical-align: bottom;
    overflow: hidden;
    position: relative;
    text-align: left;
}

.ecom-text-rotator-track {
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.ecom-text-rotator-line {
    display: block;
    line-height: 1.12;
    white-space: nowrap;
}

/* Hero : bloc titre + rotateur sur la même ligne visuelle */
.ecom-hero-headline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
}

@media (min-width: 640px) {
    .ecom-hero-headline {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 0.35rem 0.65rem;
    }
}

.ecom-hero-h1-static {
    margin: 0;
    line-height: 1.05;
}

.ecom-hero-rotator-wrap {
    display: inline-block;
    min-height: 1.05em;
}

.ecom-hero-rotator-wrap .ecom-text-rotator-viewport {
    min-width: 2ch;
}

.ecom-hero-rotator-line {
    font-size: clamp(1.75rem, 5vw, 3.25rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffb3b3 0%, #ff3b3b 45%, #fecaca 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Verbes expérience (panneau droit) */
.ecom-verb-strip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.ecom-verb-rotator .ecom-text-rotator-viewport {
    height: 1.35em;
}

.ecom-verb-line {
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ecom-verb-line:nth-child(5n + 1) {
    color: #f87171;
}
.ecom-verb-line:nth-child(5n + 2) {
    color: #34d399;
}
.ecom-verb-line:nth-child(5n + 3) {
    color: #60a5fa;
}
.ecom-verb-line:nth-child(5n + 4) {
    color: #fbbf24;
}

/* Lottie hero */
.ecom-hero-lottie-wrap {
    position: relative;
    width: 100%;
    max-width: 20rem;
    margin: 0 auto 1.25rem;
    aspect-ratio: 1;
    border-radius: 1.35rem;
    background: radial-gradient(ellipse at 50% 40%, rgba(255, 59, 59, 0.12), transparent 65%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.ecom-hero-lottie {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecom-hero-lottie svg {
    width: 88% !important;
    height: auto !important;
    max-height: 100%;
}

@media (min-width: 1024px) {
    .ecom-hero-aside .ecom-hero-lottie-wrap {
        margin-bottom: 0;
    }
}

/* Typewriter — bloc dédié : n’empile pas le reste du paragraphe sur la même ligne */
.ecom-typewriter {
    display: block;
    width: 100%;
    min-height: 1.35em;
    margin-bottom: 0.6rem;
}

h1 .ecom-typewriter,
h2 .ecom-typewriter,
h3 .ecom-typewriter,
.mp-annonce-title .ecom-typewriter {
    margin-bottom: 0;
}

.ecom-typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    margin-left: 2px;
    vertical-align: -0.12em;
    background: rgba(255, 59, 59, 0.85);
    animation: ecom-cursor-blink 0.95s step-end infinite;
}

@keyframes ecom-cursor-blink {
    50% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ecom-typewriter-cursor {
        animation: none;
        opacity: 0.6;
    }
}

/* Section catalogue — sous-titre rotatif discret */
.ecom-catalog-rotator .ecom-text-rotator-viewport {
    height: 1.25em;
    vertical-align: middle;
}

.ecom-catalog-rotator-line {
    font-size: 0.875rem;
    color: rgba(209, 213, 219, 0.95);
    font-weight: 500;
}

.ecom-catalog-lead {
    display: inline;
}

/* ——— Hero aside (Lottie + carte) ——— */
.ecom-hero-aside {
    position: relative;
}

.ecom-hero-lottie-card {
    position: relative;
    border-radius: 1.75rem;
    padding: 1.25rem 1rem 1.5rem;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(0, 0, 0, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 1px rgba(255, 59, 59, 0.08),
        0 28px 80px rgba(0, 0, 0, 0.45);
}

.ecom-hero-lottie-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(125deg, rgba(255, 59, 59, 0.35), transparent 40%, rgba(52, 211, 153, 0.12));
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

.ecom-hero-lottie-card .ecom-hero-lottie-wrap {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 22rem;
    aspect-ratio: 1 / 1;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: radial-gradient(ellipse 80% 70% at 50% 100%, rgba(255, 59, 59, 0.14), transparent 55%);
}

@media (min-width: 1024px) {
    .ecom-hero-lottie-card .ecom-hero-lottie-wrap {
        max-width: min(100%, 26rem);
    }
}

.ecom-hero-panel {
    position: relative;
    z-index: 1;
}

.ecom-hero-ghost-btn {
    border-color: rgba(255, 255, 255, 0.18) !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

.ecom-hero-store-row {
    margin-top: 1.25rem;
}

/* ——— Store badges ——— */
.ecom-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 1rem 0.55rem 0.75rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-size: 0.8125rem;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ecom-store-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    opacity: 0.98;
}

.ecom-store-badge--google {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
}

.ecom-store-badge--apple {
    background: linear-gradient(145deg, #2a2a2a 0%, #111 100%);
}

.ecom-store-badge__icon {
    width: 1.65rem;
    height: 1.65rem;
    flex-shrink: 0;
    opacity: 0.95;
}

.ecom-store-badge__small {
    display: block;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.72;
}

.ecom-store-badge__strong {
    display: block;
    font-weight: 800;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

/* ——— Sections page d’accueil ——— */
.ecom-home-section {
    padding: 4.5rem 0;
    position: relative;
}

.ecom-home-section--app {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 59, 59, 0.04) 35%, transparent 100%);
}

.ecom-home-section-head {
    max-width: 40rem;
    margin-bottom: 2.75rem;
}

.ecom-home-section-head--compact {
    margin-bottom: 2rem;
}

.ecom-home-eyebrow {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 0.75rem;
}

.ecom-home-title {
    font-size: clamp(1.75rem, 4vw, 2.65rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 0.85rem;
}

.ecom-home-subtitle {
    margin: 0;
    color: rgba(209, 213, 219, 0.88);
    font-size: 1.02rem;
    line-height: 1.6;
}

.ecom-app-benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.15rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ecom-app-benefit__icon {
    font-size: 1.35rem;
    line-height: 1;
    filter: grayscale(0.2);
}

.ecom-feature-tile {
    padding: 1.35rem 1.25rem;
    border-radius: 1.35rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.ecom-feature-tile:hover {
    border-color: rgba(255, 59, 59, 0.35);
    transform: translateY(-3px);
}

.ecom-feature-tile__num {
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(248, 113, 113, 0.95);
    letter-spacing: 0.12em;
    margin-bottom: 0.65rem;
}

.ecom-feature-tile__title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
}

.ecom-feature-tile__desc {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(156, 163, 175, 0.95);
    line-height: 1.55;
}

.ecom-step-card {
    padding: 1.5rem 1.35rem;
    border-radius: 1.4rem;
    background: rgba(10, 10, 10, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    overflow: hidden;
}

.ecom-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff3b3b, #fbbf24, #34d399);
    opacity: 0.85;
}

.ecom-step-card__badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.75rem;
}

.ecom-step-card__title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
}

.ecom-step-card__text {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(163, 163, 163, 0.95);
    line-height: 1.55;
}

/* Bandeau téléchargement */
.ecom-download-cta {
    padding: 3.25rem 0;
    margin: 0 1rem 2rem;
    border-radius: 1.75rem;
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.22) 0%, rgba(15, 15, 15, 0.95) 48%, rgba(16, 185, 129, 0.12) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.ecom-download-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 0 1rem;
}

.ecom-download-cta__title {
    margin: 0;
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
}

.ecom-download-cta__lead {
    margin: 0.35rem 0 0;
    color: rgba(229, 231, 235, 0.88);
    font-size: 1rem;
    max-width: 28rem;
}

.ecom-download-cta__stores {
    justify-content: center;
}

.ecom-download-cta__link {
    font-size: 0.875rem;
    color: rgba(252, 165, 165, 0.95);
    text-decoration: none;
    font-weight: 600;
}

.ecom-download-cta__link:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Teaser accueil (renvoi vers Fonctionnalités) */
.ecom-home-teaser__card {
    border-radius: 1.65rem;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
    .ecom-home-teaser__card {
        padding: 2.25rem 2.5rem;
    }
}

.ecom-home-teaser__grid {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

@media (min-width: 768px) {
    .ecom-home-teaser__grid {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 2rem;
    }
}

.ecom-home-teaser__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.ecom-home-teaser__stores {
    flex-wrap: wrap;
}

/* Page Fonctionnalités */
.ecom-feat-page {
    min-height: 50vh;
}

.ecom-feat-hero {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ecom-feat-rot-line {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(248, 113, 113, 0.95);
}

.ecom-feat-band {
    padding: 3.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ecom-feat-band--alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.ecom-feat-band__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 900px) {
    .ecom-feat-band__inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .ecom-feat-band__inner--flip .ecom-feat-band__text {
        order: 2;
    }

    .ecom-feat-band__inner--flip .ecom-feat-band__media {
        order: 1;
    }
}

.ecom-feat-band__title {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.ecom-feat-band__desc {
    margin: 0 0 1rem;
    color: rgba(196, 200, 208, 0.95);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 36rem;
}

.ecom-feat-band__link {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(252, 165, 165, 0.98);
    text-decoration: none;
}

.ecom-feat-band__link:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ecom-feat-band__media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ecom-feat-lottie {
    width: 100%;
    max-width: 280px;
    min-height: 200px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecom-feat-lottie svg {
    width: 100% !important;
    height: auto !important;
    max-height: 280px;
}

@media (min-width: 900px) {
    .ecom-feat-lottie {
        max-width: 320px;
        min-height: 240px;
    }

    .ecom-feat-lottie svg {
        max-height: 320px;
    }
}

/* =============================================================================
   Accueil — design moderne (bento, confiance, recherche animée, révélation scroll)
   ============================================================================= */

.ecom-hero-v2 {
    min-height: min(92vh, 56rem);
    padding-top: 5.5rem;
    padding-bottom: 4rem;
}

.ecom-hero-v2__mesh {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background:
        radial-gradient(ellipse 100% 80% at 15% 20%, rgba(255, 59, 59, 0.16), transparent 50%),
        radial-gradient(ellipse 80% 60% at 85% 60%, rgba(52, 211, 153, 0.1), transparent 45%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(99, 102, 241, 0.08), transparent 55%);
    pointer-events: none;
    mix-blend-mode: screen;
}

.ecom-hero-v2 .ecom-hero-headline .ecom-hero-h1-static {
    margin-bottom: 0;
}

.ecom-hero-v2__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .ecom-hero-v2__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 3rem 2.5rem;
        align-items: center;
    }
}

.ecom-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem 0.35rem 0.55rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.25rem;
    backdrop-filter: blur(10px);
}

.ecom-hero-pill__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 12px rgba(52, 211, 153, 0.85);
    animation: ecom-pill-pulse 2.4s ease-in-out infinite;
}

@keyframes ecom-pill-pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.65;
        transform: scale(0.92);
    }
}

.ecom-hero-lead {
    max-width: 32rem;
    font-size: 1.05rem;
}

.ecom-hero-lead__after-tw {
    display: block;
}

.ecom-hero-search {
    margin: 1.35rem 0 1.5rem;
    max-width: 26rem;
}

.ecom-hero-search__label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 0.45rem;
}

.ecom-search-with-rotator {
    position: relative;
}

/* Texte masqué tant que le rotateur joue (pas d’édition / pas de contenu) */
.ecom-search-with-rotator:not(.ecom-search-with-rotator--editing) .boutique-search {
    color: transparent;
    caret-color: transparent;
    cursor: text;
}

.ecom-search-with-rotator--editing .boutique-search {
    cursor: text;
}

.ecom-search-with-rotator [data-ecom-text-rotator] {
    position: absolute;
    left: 2.65rem;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
    z-index: 2;
    pointer-events: none;
    text-align: left;
    transition: opacity 0.22s ease;
    opacity: 1;
}

.ecom-search-with-rotator--editing [data-ecom-text-rotator] {
    opacity: 0;
}

.ecom-text-rotator-viewport--search {
    height: 1.35em;
}

.ecom-text-rotator-line--search {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.ecom-hero-bento {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.ecom-hero-bento__visual .ecom-hero-lottie-card {
    margin: 0;
}

.ecom-glass-panel {
    position: relative;
    border-radius: 1.5rem;
    padding: 1.35rem 1.4rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(14px);
}

.ecom-glass-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(125deg, rgba(255, 59, 59, 0.4), transparent 45%, rgba(52, 211, 153, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.85;
}

.ecom-glass-panel__eyebrow {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: rgba(255, 255, 255, 0.38);
    margin: 0 0 0.65rem;
}

.ecom-glass-panel__verb {
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.55;
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.92);
}

.ecom-quick-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}

.ecom-quick-links a {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(209, 213, 219, 0.88);
    text-decoration: none;
    padding: 0.35rem 0;
    border-radius: 0.5rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.ecom-quick-links a:hover {
    color: #fff;
    transform: translateX(2px);
}

.ecom-quick-links__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ecom-quick-links__dot--rose {
    background: #f87171;
    box-shadow: 0 0 10px rgba(248, 113, 113, 0.5);
}
.ecom-quick-links__dot--emerald {
    background: #34d399;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.45);
}
.ecom-quick-links__dot--amber {
    background: #fbbf24;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.45);
}
.ecom-quick-links__dot--sky {
    background: #38bdf8;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.45);
}

.ecom-btn-glow {
    position: relative;
    box-shadow: 0 4px 24px rgba(255, 59, 59, 0.35);
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.ecom-btn-glow:hover {
    box-shadow: 0 8px 32px rgba(255, 59, 59, 0.45);
    transform: translateY(-1px);
}

.ecom-hero-stat {
    margin-top: 1.75rem;
    background: rgba(0, 0, 0, 0.25);
}

@keyframes ecom-hero-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.ecom-anim-in {
    animation: ecom-hero-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ecom-anim-in--2 {
    animation-delay: 0.08s;
}
.ecom-anim-in--3 {
    animation-delay: 0.14s;
}
.ecom-anim-in--4 {
    animation-delay: 0.2s;
}
.ecom-anim-in--5 {
    animation-delay: 0.26s;
}
.ecom-anim-in--6 {
    animation-delay: 0.32s;
}
.ecom-anim-in--7 {
    animation-delay: 0.38s;
}

/* Révélation au scroll */
[data-ecom-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-ecom-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.ecom-trust {
    padding: 2.5rem 0 1rem;
    position: relative;
}

.ecom-trust__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .ecom-trust__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.15rem;
    }
}

.ecom-trust__card {
    padding: 1.35rem 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.ecom-trust__card:hover {
    border-color: rgba(255, 59, 59, 0.25);
    transform: translateY(-2px);
}

.ecom-trust__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    color: #fecaca;
    background: rgba(255, 59, 59, 0.12);
    border: 1px solid rgba(255, 59, 59, 0.2);
}

.ecom-trust__icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.ecom-trust__title {
    font-size: 0.98rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.4rem;
    letter-spacing: -0.02em;
}

.ecom-trust__text {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.55;
    color: rgba(163, 163, 163, 0.95);
}

.ecom-promo__shell {
    border-radius: 1.85rem;
    padding: 1px;
    background: linear-gradient(130deg, rgba(255, 59, 59, 0.35), rgba(255, 255, 255, 0.08), rgba(52, 211, 153, 0.2));
}

.ecom-promo__bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
    border-radius: 1.8rem;
    background: linear-gradient(165deg, rgba(12, 12, 14, 0.97), rgba(8, 8, 10, 0.99));
}

@media (min-width: 900px) {
    .ecom-promo__bento {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 2.5rem;
        padding: 2.5rem 2.25rem;
        align-items: center;
    }
}

.ecom-promo__title {
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0 0 0.85rem;
}

.ecom-promo__lead {
    margin: 0 0 1.35rem;
    color: rgba(196, 200, 208, 0.95);
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 36rem;
}

.ecom-promo__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.15rem;
}

.ecom-promo-lottie {
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 59, 59, 0.12), transparent 55%);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ecom-promo-lottie__inner {
    width: 100%;
    max-width: 220px;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecom-promo-lottie__inner svg {
    width: 100% !important;
    height: auto !important;
    max-height: 200px;
}

.ecom-promo__side-caption {
    margin: 0.75rem 0 0;
    font-size: 0.75rem;
    color: rgba(115, 115, 115, 0.95);
    text-align: center;
}

@media (min-width: 900px) {
    .ecom-promo__side-caption {
        text-align: left;
    }
}

.ecom-catalog-section {
    position: relative;
}

.ecom-catalog-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(72rem, 100%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.ecom-catalog-head {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .ecom-catalog-head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.ecom-catalog-head__badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(52, 211, 153, 0.95);
    padding: 0.25rem 0.6rem;
    border-radius: 0.35rem;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.25);
    margin-bottom: 0.5rem;
}

.ecom-catalog-head__badge--pro {
    color: rgba(253, 230, 138, 0.98);
    background: linear-gradient(135deg, rgba(180, 120, 40, 0.22), rgba(212, 175, 55, 0.14));
    border-color: rgba(251, 191, 36, 0.35);
}

.ecom-catalog-head__title {
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 900;
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
}

.ecom-catalog-head__sub {
    margin: 0;
    line-height: 1.55;
}

.ecom-catalog-lead-wrap {
    display: block;
}

.ecom-catalog-toolbar {
    margin-bottom: 1.35rem;
}

.ecom-catalog-toolbar .boutique-search-wrap {
    margin: 0 auto;
}

@media (min-width: 640px) {
    .ecom-catalog-toolbar .boutique-search-wrap {
        margin: 0;
    }
}

.ecom-catalog-loading {
    margin-bottom: 1.5rem;
}

.ecom-catalog-grid {
    margin-top: 0.25rem;
}

@media (prefers-reduced-motion: reduce) {
    .ecom-feature-tile:hover,
    .ecom-store-badge:hover {
        transform: none;
    }

    .ecom-anim-in {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .ecom-hero-pill__dot {
        animation: none;
    }

    [data-ecom-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .ecom-btn-glow:hover {
        transform: none;
    }

    .ecom-trust__card:hover {
        transform: none;
    }
}
