/*
 * The free-shipping strip. It sits above the site header on the homepage
 * only, so it has to earn its place in one line: quiet ground, one figure
 * carrying the weight, and no button pretending there is more to do.
 */
.ship-strip {
    background: color-mix(in srgb, var(--accent) 10%, var(--surface));
    border-bottom: 1px solid color-mix(in srgb, var(--accent) 22%, var(--border));
}

.ship-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.55rem 1.5rem;
    font-size: 0.8125rem;
    line-height: 1.4;
    text-align: center;
    color: var(--accent-hover);
}

.ship-strip-icon {
    display: inline-flex;
    flex-shrink: 0;
    color: var(--accent);
}

.ship-strip-amount {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
    color: var(--text);
}

/* A qualifier, not a second message. */
.ship-strip-note {
    position: relative;
    padding-left: 0.85rem;
    color: var(--text-muted);
}

.ship-strip-note::before {
    content: '';
    position: absolute;
    left: 0.35rem;
    top: 50%;
    width: 3px;
    height: 3px;
    margin-top: -1.5px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0.6;
}

/* Stacked, the divider dot reads as a bullet on a list of one. */
@media (max-width: 480px) {
    .ship-strip-note {
        padding-left: 0;
    }

    .ship-strip-note::before {
        display: none;
    }
}

[data-theme='dark'] .ship-strip {
    background: color-mix(in srgb, var(--accent) 16%, var(--surface));
    border-bottom-color: color-mix(in srgb, var(--accent) 30%, var(--border));
}

/*
 * Le carrousel de la page d'accueil. Trois panneaux, un seul visible à la
 * fois. La coque porte le cadre et les commandes ; chaque panneau garde le
 * style du hero d'origine, pour qu'ils ne divergent pas à la première
 * retouche.
 */
.home .home-carousel {
    position: relative;
    margin-top: 1.25rem;
}

.home .home-carousel-viewport {
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.home .home-carousel-track {
    display: flex;
    /* La translation est posée par le script ; sans lui la piste reste une
       bande que l'on fait défiler au doigt. */
    transform: translate3d(calc(var(--carousel-offset, 0) * -100%), 0, 0);
    transition: transform 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.home .home-carousel-panel {
    flex: 0 0 100%;
    /* Le cadre et l'ombre appartiennent à la coque : un panneau qui les
       reprendrait les empilerait à chaque glissement. Plus spécifique que
       `.home-hero`, sinon sa marge du haut perce le cadre. */
    margin-top: 0;
    border: 0;
    box-shadow: none;
}

.home .home-carousel .home-hero {
    margin-top: 0;
    border: 0;
    box-shadow: none;
}

/* Un panneau sorti de l'écran ne doit pas rester tabulable. */
.home .home-carousel-panel[aria-hidden='true'] {
    visibility: hidden;
}

.home .home-carousel-panel[aria-hidden='true'] .home-hero-copy {
    /* Le contenu remonte doucement quand le panneau arrive. */
    opacity: 0;
    transform: translateY(0.6rem);
}

.home .home-carousel-panel .home-hero-copy {
    opacity: 1;
    transform: none;
    transition:
        opacity 520ms ease 120ms,
        transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1) 120ms;
}

.home .home-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    margin-top: -1.3rem;
    padding: 0;
    font-family: inherit;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text);
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border);
    cursor: pointer;
    transition:
        background 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.home .home-carousel-arrow span {
    /* Le chevron ne tombe pas sur la ligne de base tout seul. */
    display: block;
    margin-top: -0.18em;
}

.home .home-carousel-arrow:hover {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
}

.home .home-carousel-arrow:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.home .home-carousel-arrow--prev {
    left: 0.9rem;
}

.home .home-carousel-arrow--next {
    right: 0.9rem;
}

.home .home-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.85rem;
}

.home .home-carousel-dot {
    width: 2.1rem;
    height: 0.3rem;
    padding: 0;
    background: color-mix(in srgb, var(--text) 18%, transparent);
    border: 0;
    cursor: pointer;
    transition:
        background 220ms ease,
        width 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.home .home-carousel-dot:hover {
    background: color-mix(in srgb, var(--accent) 55%, transparent);
}

.home .home-carousel-dot.is-current {
    width: 3.4rem;
    background: var(--accent);
}

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

@media (max-width: 640px) {
    .home .home-carousel-arrow {
        display: none;
    }
}

/* Rien ne bouge pour qui a demandé que rien ne bouge : le script coupe la
   rotation, le CSS coupe les transitions. */
@media (prefers-reduced-motion: reduce) {
    .home .home-carousel-track,
    .home .home-carousel-panel .home-hero-copy,
    .home .home-carousel-dot {
        transition: none;
    }

    .home .home-carousel-panel[aria-hidden='true'] .home-hero-copy {
        opacity: 1;
        transform: none;
    }
}

.home .home-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 28rem;
    margin-top: 1.25rem;
    padding: 3.5rem 3rem 3.1rem;
    overflow: hidden;
    background-color: var(--surface);
    background-image: var(--hero-image);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

/*
 * Un panneau sur deux est le miroir du précédent : image à gauche, texte à
 * droite. Rien d'autre ne change — même bloc, même dégradé, retourné.
 */
.home .home-hero--mirrored {
    justify-content: flex-end;
    background-position: center left;
}

.home .home-hero--mirrored .home-hero-overlay {
    transform: scaleX(-1);
}

.home .home-hero--mirrored .home-hero-text {
    /* Le texte est calé à droite : sa largeur maximale doit se mesurer
       depuis ce bord, sinon la colonne se décroche du titre. */
    margin-left: auto;
}

/* Empilé, le miroir n'a plus de sens : il ne ferait que déplacer le texte
   d'un bord à l'autre sans qu'aucune image ne l'accompagne. */
@media (max-width: 720px) {
    .home .home-hero--mirrored {
        justify-content: flex-start;
        background-position: center right;
    }

    .home .home-hero--mirrored .home-hero-overlay {
        transform: none;
    }

    .home .home-hero--mirrored .home-hero-text {
        margin-left: 0;
    }
}

.home .home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            var(--surface) 0%,
            var(--surface) 26%,
            color-mix(in srgb, var(--surface) 92%, transparent) 38%,
            color-mix(in srgb, var(--surface) 42%, transparent) 54%,
            color-mix(in srgb, var(--surface) 8%, transparent) 72%,
            transparent 84%
        ),
        linear-gradient(
            180deg,
            color-mix(in srgb, var(--surface) 18%, transparent) 0%,
            transparent 28%,
            transparent 72%,
            color-mix(in srgb, var(--surface) 22%, transparent) 100%
        );
}

.home .home-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 28rem;
    padding: 1.65rem 1.7rem 1.75rem;
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    backdrop-filter: blur(6px);
}

.home .home-hero-kicker {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5b5c3b;
}

.home .home-hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.12em;
    margin: 0;
    font-size: clamp(2.2rem, 4.4vw, 3.45rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.94;
    text-transform: uppercase;
}

.home .home-hero-title-line {
    display: block;
}

.home .home-hero-title-accent {
    position: relative;
    display: inline-block;
    width: fit-content;
    color: #5b5c3b;
}

.home .home-hero-title-accent::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.06em;
    height: 0.18em;
    background: color-mix(in srgb, #5b5c3b 22%, transparent);
    z-index: -1;
}

.home .home-hero-text {
    margin-top: 1.1rem;
    max-width: 23rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.home .home-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 1.15rem 0 0;
    padding: 0;
    list-style: none;
}

.home .home-hero-tags li {
    padding: 0.35rem 0.65rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5b5c3b;
    background: color-mix(in srgb, #5b5c3b 8%, var(--surface));
    border: 1px solid color-mix(in srgb, #5b5c3b 28%, var(--border));
}

.home .home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.45rem;
}

.home .home-hero-actions .btn {
    min-height: 2.7rem;
    padding: 0.65rem 1.15rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.home .home-hero-ghost {
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    color: var(--text);
    border: 1px solid var(--border);
}

.home .home-hero-ghost:hover {
    border-color: var(--accent);
    background: var(--surface);
}

[data-theme='dark'] .home .home-hero-kicker,
[data-theme='dark'] .home .home-hero-title-accent,
[data-theme='dark'] .home .home-hero-tags li {
    color: var(--accent);
}

[data-theme='dark'] .home .home-hero-title-accent::after {
    background: color-mix(in srgb, var(--accent) 24%, transparent);
}

[data-theme='dark'] .home .home-hero-tags li {
    background: color-mix(in srgb, var(--accent) 10%, var(--surface));
    border-color: color-mix(in srgb, var(--accent) 28%, var(--border));
}

[data-theme='dark'] .home .home-hero-copy {
    background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.home .home-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    list-style: none;
    margin: 0.85rem 0 0;
    padding: 0;
    background: transparent;
}

.home .home-trust-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.9rem;
    min-height: 5.6rem;
    padding: 1.1rem 1.15rem;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.home .home-trust-item:hover {
    border-color: color-mix(in srgb, #5b5c3b 32%, var(--border));
    box-shadow: var(--shadow-hover);
    transform: translateY(-1px);
    background: color-mix(in srgb, var(--bg) 32%, var(--surface));
}

.home .home-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    flex-shrink: 0;
    color: #5b5c3b;
    background: color-mix(in srgb, var(--bg) 70%, var(--surface));
    border: 1.5px solid color-mix(in srgb, #5b5c3b 38%, var(--border));
    border-radius: 50%;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.home .home-trust-item:hover .home-trust-icon {
    background: var(--surface);
    border-color: color-mix(in srgb, #5b5c3b 52%, var(--border));
    color: #35372a;
}

.home .home-trust-copy {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    min-width: 0;
}

.home .home-trust-copy strong {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.25;
    text-transform: uppercase;
}

.home .home-trust-copy span {
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--text-muted);
}

[data-theme='dark'] .home .home-trust-item:hover {
    background: color-mix(in srgb, var(--bg) 40%, var(--surface));
    border-color: color-mix(in srgb, var(--accent) 32%, var(--border));
}

[data-theme='dark'] .home .home-trust-icon {
    color: var(--accent);
    border-color: color-mix(in srgb, var(--accent) 34%, var(--border));
    background: color-mix(in srgb, var(--bg) 55%, var(--surface));
}

[data-theme='dark'] .home .home-trust-item:hover .home-trust-icon {
    color: var(--accent-hover);
    border-color: color-mix(in srgb, var(--accent) 48%, var(--border));
    background: var(--surface);
}

.home .home-cats-section {
    margin-top: 2.75rem;
    padding-bottom: 0.5rem;
}

.home .home-featured {
    margin-top: 2.75rem;
}

.home .home-more {
    margin-top: 2.75rem;
}

.home .product-grid--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.85rem 0.85rem;
}

.home .product-grid--five .card-cart .btn {
    min-height: 2rem;
    padding: 0.4rem 0.65rem;
    font-size: 0.6rem;
    letter-spacing: 0.04em;
}

.home .home-why {
    margin-top: 2.75rem;
    padding: 2.35rem 2.35rem 2.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.home .home-why-header {
    max-width: 36rem;
    margin: 0 auto 1.85rem;
    text-align: center;
}

.home .home-why-kicker {
    margin: 0 0 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5b5c3b;
}

.home .home-why-title {
    margin: 0;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-transform: uppercase;
}

.home .home-why-text {
    margin: 0.75rem auto 0;
    max-width: 32rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.home .home-why-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home .home-why-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    min-height: 100%;
    padding: 1.25rem 1.15rem 1.3rem;
    background: color-mix(in srgb, var(--bg) 72%, var(--surface));
    border: 1px solid var(--border);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.home .home-why-item:hover {
    border-color: color-mix(in srgb, #5b5c3b 35%, var(--border));
    box-shadow: var(--shadow-hover);
    transform: translateY(-1px);
}

.home .home-why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    color: #5b5c3b;
    background: var(--surface);
    border: 1.5px solid color-mix(in srgb, #5b5c3b 42%, var(--border));
    border-radius: 50%;
}

.home .home-why-index {
    position: absolute;
    top: 1.15rem;
    right: 1.1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    color: color-mix(in srgb, var(--text-muted) 70%, transparent);
    font-variant-numeric: tabular-nums;
}

.home .home-why-copy {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
    padding-right: 1.5rem;
}

.home .home-why-copy strong {
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.25;
    text-transform: uppercase;
}

.home .home-why-copy span {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--text-muted);
}

[data-theme='dark'] .home .home-why-item {
    background: color-mix(in srgb, var(--bg) 55%, var(--surface));
}

[data-theme='dark'] .home .home-why-kicker,
[data-theme='dark'] .home .home-why-icon {
    color: var(--accent);
}

[data-theme='dark'] .home .home-why-icon {
    border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
}

.home .home-about {
    display: grid;
    grid-template-columns: 0.95fr 1.15fr;
    align-items: stretch;
    min-height: 22rem;
    margin-top: 2.75rem;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.home .home-about-media {
    position: relative;
    min-height: 17rem;
    background: color-mix(in srgb, var(--bg) 70%, var(--surface));
}

.home .home-about-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.home .home-about-media::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent 40%,
        color-mix(in srgb, var(--surface) 35%, transparent) 72%,
        var(--surface) 100%
    );
}

.home .home-about-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 2.4rem 2.5rem 2.4rem 1.75rem;
}

.home .home-about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5b5c3b;
}

.home .home-about-kicker::before {
    content: '';
    width: 1.35rem;
    height: 1.5px;
    background: #5b5c3b;
}

.home .home-about-title {
    margin: 0.7rem 0 0;
    max-width: 15em;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    text-transform: uppercase;
}

.home .home-about-lead {
    margin: 1rem 0 0;
    max-width: 34rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.home .home-about-points {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
    max-width: 34rem;
}

.home .home-about-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0.95rem;
    background: color-mix(in srgb, var(--bg) 72%, var(--surface));
    border: 1px solid var(--border);
}

.home .home-about-point-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    flex-shrink: 0;
    color: #5b5c3b;
    background: var(--surface);
    border: 1.5px solid color-mix(in srgb, #5b5c3b 40%, var(--border));
    border-radius: 50%;
}

.home .home-about-points span:last-child {
    font-size: 0.875rem;
    line-height: 1.45;
    color: var(--text);
    padding-top: 0.15rem;
}

.home .home-about-cta {
    align-self: flex-start;
    margin-top: 1.45rem;
    min-height: 2.7rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

[data-theme='dark'] .home .home-about-kicker {
    color: var(--accent);
}

[data-theme='dark'] .home .home-about-kicker::before {
    background: var(--accent);
}

[data-theme='dark'] .home .home-about-point-mark {
    color: var(--accent);
    border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
}

[data-theme='dark'] .home .home-about-points li {
    background: color-mix(in srgb, var(--bg) 55%, var(--surface));
}

.home .home-ship-banner {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    margin-top: 2.75rem;
    padding: 1.15rem 1.35rem;
    background: var(--surface);
}

.home .home-ship-banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
    color: #5b5c3b;
    border: 1.5px solid color-mix(in srgb, #5b5c3b 45%, var(--border));
    border-radius: 50%;
}

.home .home-ship-banner-copy {
    flex: 1;
    min-width: 0;
}

.home .home-ship-banner-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home .home-ship-banner-text {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.home .home-ship-banner-cta {
    flex-shrink: 0;
    min-height: 2.7rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

@media (max-width: 700px) {
    .home .home-ship-banner {
        flex-wrap: wrap;
    }

    .home .home-ship-banner-cta {
        width: 100%;
    }
}

.home .home-cats-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.home .home-cats-title {
    margin: 0;
    font-size: clamp(1.25rem, 1.8vw, 1.55rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.home .home-cats-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color 0.15s ease;
}

.home .home-cats-link:hover {
    color: var(--text);
}

.home .home-cats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.home .home-cat {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.05rem;
    min-height: 7.5rem;
    padding: 1.2rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    color: inherit;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.home .home-cat:hover {
    border-color: color-mix(in srgb, #5b5c3b 35%, var(--border));
    box-shadow: var(--shadow-hover);
    transform: translateY(-1px);
    background: color-mix(in srgb, var(--bg) 35%, var(--surface));
}

.home .home-cat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3.75rem;
    height: 3.75rem;
    color: #5b5c3b;
    background: color-mix(in srgb, var(--bg) 70%, var(--surface));
    border: 1.5px solid color-mix(in srgb, #5b5c3b 28%, var(--border));
    border-radius: 50%;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.home .home-cat-icon svg {
    width: 2.15rem;
    height: 2.15rem;
}

.home .home-cat:hover .home-cat-icon {
    color: #35372a;
    border-color: color-mix(in srgb, #5b5c3b 50%, var(--border));
    background: var(--surface);
}

.home .home-cat-copy {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
    flex: 1;
    padding-right: 1.25rem;
}

.home .home-cat-name {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
}

.home .home-cat-desc {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--text-muted);
}

.home .home-cat-arrow {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%) translateX(0);
    font-size: 1rem;
    font-weight: 600;
    color: color-mix(in srgb, var(--text-muted) 65%, transparent);
    transition: color 0.15s ease, transform 0.15s ease;
}

.home .home-cat:hover .home-cat-arrow {
    color: #5b5c3b;
    transform: translateY(-50%) translateX(3px);
}

[data-theme='dark'] .home .home-cat {
    background: var(--surface);
}

[data-theme='dark'] .home .home-cat:hover {
    background: color-mix(in srgb, var(--bg) 40%, var(--surface));
    border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}

[data-theme='dark'] .home .home-cat-icon {
    color: var(--accent);
    border-color: color-mix(in srgb, var(--accent) 30%, var(--border));
    background: color-mix(in srgb, var(--bg) 55%, var(--surface));
}

[data-theme='dark'] .home .home-cat:hover .home-cat-icon {
    color: var(--accent-hover);
    border-color: color-mix(in srgb, var(--accent) 48%, var(--border));
    background: var(--surface);
}

[data-theme='dark'] .home .home-cat:hover .home-cat-arrow {
    color: var(--accent);
}

[data-theme='dark'] .home .home-hero {
    background-color: var(--surface);
}

[data-theme='dark'] .home .home-hero-ghost {
    background: color-mix(in srgb, var(--surface) 86%, transparent);
    border-color: var(--border);
    color: var(--text);
}

@media (max-width: 1100px) {
    .home .product-grid--five {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .home .home-hero {
        min-height: 0;
        margin-top: 0;
        padding: 1.5rem 1.15rem 1.5rem;
        background-position: center top;
        background-size: cover;
        align-items: flex-end;
    }

    .home .home-hero-overlay {
        background: linear-gradient(
            180deg,
            color-mix(in srgb, var(--surface) 8%, transparent) 0%,
            color-mix(in srgb, var(--surface) 55%, transparent) 42%,
            var(--surface) 78%
        );
    }

    .home .home-hero-copy {
        max-width: none;
        width: 100%;
        padding: 1.25rem 1.15rem 1.3rem;
    }

    .home .home-why {
        padding: 1.6rem 1.25rem 1.75rem;
    }

    .home .home-why-list {
        grid-template-columns: 1fr 1fr;
    }

    .home .home-about {
        grid-template-columns: 1fr;
    }

    .home .home-about-media {
        min-height: 15rem;
    }

    .home .home-about-media::after {
        background: linear-gradient(180deg, transparent 45%, var(--surface) 100%);
    }

    .home .home-about-copy {
        padding: 0.35rem 1.25rem 1.6rem;
    }

    .home .home-cats {
        grid-template-columns: 1fr 1fr;
    }

    .home .home-trust {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}

@media (max-width: 700px) {
    .home .product-grid--five {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home .home-why-header {
        margin-bottom: 1.35rem;
        text-align: left;
    }

    .home .home-why-text {
        margin-left: 0;
    }

    .home .home-why-list {
        grid-template-columns: 1fr;
    }

    .home .home-hero-title {
        font-size: 2rem;
    }

    .home .home-cats {
        grid-template-columns: 1fr;
    }

    .home .home-cats-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .home .home-trust {
        grid-template-columns: 1fr;
    }

    .home .home-trust-item {
        min-height: 0;
        padding: 1rem 1.15rem;
    }
}
