/* Home page layer. Keep page-specific styles out of the global template stylesheet. */

body.impulse-template .home-page {
    --home-container: min(100% - 4rem, 1680px);
    --home-mobile-container: min(100% - 1.5rem, 1680px);
    --home-text-sm: 0.875rem;
    --home-text-md: 1rem;
    --home-text-lg: 1.125rem;
    --home-heading-lg: 2.65rem;
    --home-heading-hero: clamp(3.25rem, 5.5vw, 5.25rem);
    max-width: 100vw;
    overflow-x: clip;
    background: #faf8f4;
    font-size: var(--home-text-md);
    line-height: 1.5;
}

body.impulse-template .home-page .container {
    width: var(--home-container);
    max-width: var(--home-container);
    margin-inline: auto;
    padding-inline: 0;
    box-sizing: border-box;
}

body.impulse-template .home-page p,
body.impulse-template .home-page li,
body.impulse-template .home-category-card__content small,
body.impulse-template .home-review-card p,
body.impulse-template .home-subscribe p,
body.impulse-template .home-consultation__copy p {
    font-size: var(--home-text-md);
    line-height: 1.5;
}

body.impulse-template .home-hero {
    position: relative;
    min-height: clamp(32rem, 48vw, 42rem);
    max-width: 100vw;
    overflow: hidden;
    color: #fff;
}

body.impulse-template .home-hero__media,
body.impulse-template .home-hero__media picture,
body.impulse-template .home-hero__media img,
body.impulse-template .home-hero__shade {
    position: absolute;
    inset: 0;
}

body.impulse-template .home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% 4%;
}

body.impulse-template .home-hero__shade {
    background:
        linear-gradient(90deg, rgba(10, 10, 8, 0.88) 0%, rgba(10, 10, 8, 0.52) 38%, rgba(10, 10, 8, 0.14) 72%),
        linear-gradient(180deg, rgba(7, 7, 6, 0.36), rgba(7, 7, 6, 0.12) 45%, rgba(7, 7, 6, 0.68));
}

body.impulse-template .home-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: inherit;
    padding-top: 0cqmin;
    padding-bottom: 3rem;
}

body.impulse-template .home-hero__body {
    width: min(100%, 39rem);
    min-width: 0;
}

body.impulse-template .home-hero__eyebrow {
    display: inline-block;
    margin-bottom: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: var(--home-text-sm);
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

body.impulse-template .home-hero__title {
    margin-bottom: 1.2rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: var(--home-heading-hero);
    font-weight: 400;
    line-height: 0.98;
}

body.impulse-template .home-hero__text {
    max-width: 32rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.84);
}

body.impulse-template .home-hero__facts {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--home-text-md);
}

body.impulse-template .home-hero__facts li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

body.impulse-template .home-hero__facts span {
    display: inline-grid;
    place-items: center;
    width: 1.25rem;
    height: 1.25rem;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    color: #d8b46b;
    font-size: 0.72rem;
}

body.impulse-template .home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

body.impulse-template .home-hero__actions .button {
    min-width: 0;
}

body.impulse-template .home-hero__secondary-button {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.96);
    color: rgba(15, 14, 13, 0.96);
    cursor: pointer;
}

body.impulse-template .home-hero__secondary-button:hover,
body.impulse-template .home-hero__secondary-button:focus-visible {
    background: #fff;
    border-color: #fff;
    color: rgba(15, 14, 13, 1);
}

body.impulse-template .home-categories {
    position: relative;
    z-index: 2;
    padding: 2rem 0 2.2rem;
}

body.impulse-template .home-categories__grid,
body.impulse-template .home-scenarios__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

body.impulse-template .home-category-card,
body.impulse-template .home-scenario-card {
    position: relative;
    display: block;
    min-height: 13.5rem;
    overflow: hidden;
    border-radius: 0.7rem;
    background: #171412;
    color: #fff;
    box-shadow: 0 1rem 3rem rgba(22, 18, 14, 0.12);
}

body.impulse-template .home-category-card img,
body.impulse-template .home-scenario-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
    transition: transform 0.7s ease, opacity 0.25s ease;
}

body.impulse-template .home-category-card:hover img,
body.impulse-template .home-scenario-card:hover img {
    transform: scale(1.045);
    opacity: 0.92;
}

body.impulse-template .home-category-card__overlay,
body.impulse-template .home-scenario-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.78));
}

body.impulse-template .home-category-card__content,
body.impulse-template .home-category-card__arrow,
body.impulse-template .home-scenario-card span,
body.impulse-template .home-scenario-card strong {
    position: absolute;
    z-index: 1;
}

body.impulse-template .home-category-card__content {
    left: 1.25rem;
    right: 4rem;
    bottom: 1.15rem;
}

body.impulse-template .home-category-card__content strong,
body.impulse-template .home-scenario-card span {
    display: block;
    font-size: var(--home-text-lg);
    font-weight: 700;
    line-height: 1.2;
}

body.impulse-template .home-category-card__content small {
    display: block;
    margin-top: 0.28rem;
    color: rgba(255, 255, 255, 0.82);
}

body.impulse-template .home-category-card__arrow,
body.impulse-template .home-scenario-card strong {
    right: 1rem;
    bottom: 1rem;
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 999px;
}

body.impulse-template .home-section-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: var(--home-heading-lg);
    font-weight: 400;
    line-height: 1.12;
}

body.impulse-template .home-section-title--center {
    margin-bottom: 1.4rem;
    text-align: center;
}

body.impulse-template .home-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.45rem;
}

body.impulse-template .home-advantages {
    padding: 1.8rem 0 3rem;
}

body.impulse-template .home-advantages__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

body.impulse-template .home-advantage {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    color: rgba(33, 29, 27, 0.76);
    font-size: var(--home-text-md);
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
}

body.impulse-template .home-advantage__icon {
    display: grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    color: #8a7455;
}

body.impulse-template .home-advantage__icon .icon {
    width: 2rem;
    height: 2rem;
}

body.impulse-template .home-products.section,
body.impulse-template .home-scenarios.section,
body.impulse-template .home-reviews.section,
body.impulse-template .home-journal.section {
    padding: 2.4rem 0;
}

body.impulse-template .home-rail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

body.impulse-template .home-rail [data-home-rail-track] {
    order: 1;
    flex: 0 0 100%;
}

body.impulse-template .home-rail__button {
    order: 2;
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    border: 1px solid rgba(33, 29, 27, 0.08);
    border-radius: 999px;
    background: #fff;
    color: rgba(15, 14, 13, 0.9);
    box-shadow: 0 0.85rem 1.85rem rgba(33, 29, 27, 0.1);
    cursor: pointer;
    transform: none;
    transition: opacity 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

body.impulse-template .home-rail__button:hover {
    transform: translateY(-1px);
}

body.impulse-template .home-rail__button:disabled {
    opacity: 0.35;
    cursor: default;
}

body.impulse-template .home-products__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

body.impulse-template .home-product-card.product-card {
    min-width: 0;
    cursor: pointer;
    box-shadow: 0 0.8rem 2.4rem rgba(33, 29, 27, 0.07);
}

body.impulse-template .home-products__grid > .product-card {
    min-width: 0;
    cursor: pointer;
    box-shadow: 0 0.8rem 2.4rem rgba(33, 29, 27, 0.07);
}

body.impulse-template .home-product-card .product-card__overlay-link {
    z-index: 2;
    pointer-events: auto;
}

body.impulse-template .home-product-card .product-card__title a {
    color: inherit;
    text-decoration: none;
}

body.impulse-template .home-product-card .product-card__title a:hover {
    color: var(--color-accent);
}

body.impulse-template .home-product-card .product-card__media {
    aspect-ratio: 1 / 1.05;
}

body.impulse-template .home-product-card .product-card__summary,
body.impulse-template .home-product-card .product-card__details {
    display: none;
}

body.impulse-template .home-product-card .product-card__actions {
    gap: 0.5rem;
}

body.impulse-template .home-product-card .product-card__price,
body.impulse-template .product-page__related-grid .product-card__price {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
}

body.impulse-template .home-product-card.product-card:focus-within .product-card__sizes {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.impulse-template .home-product-card.product-card.is-size-required .product-card__sizes,
body.impulse-template .home-product-card.product-card.is-variant-selected .product-card__sizes,
body.impulse-template .home-product-card .product-card__sizes:focus-within {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.impulse-template .home-product-card [data-card-gallery-dots],
body.impulse-template .home-product-card [data-card-gallery-dot] {
    position: relative;
    z-index: 7;
    pointer-events: auto;
}

body.impulse-template .home-products__grid > .product-card [data-card-gallery-dots],
body.impulse-template .home-products__grid > .product-card [data-card-gallery-dot] {
    position: relative;
    z-index: 7;
    pointer-events: auto;
}

body.impulse-template .home-products__grid > .product-card .product-card__badge,
body.impulse-template .home-products__grid > .product-card .product-card__favorite,
body.impulse-template .home-products__grid > .product-card .product-card__media-dots {
    z-index: 8;
}

body.impulse-template .home-products__grid > .product-card .product-card__title a {
    position: relative;
    z-index: 6;
    pointer-events: auto;
    color: inherit;
    text-decoration: none;
}

body.impulse-template .home-products__grid > .product-card .product-card__title a:hover {
    color: var(--color-accent);
}

body.impulse-template .home-products__grid > .product-card .product-card__cta,
body.impulse-template .home-products__grid > .product-card .product-card__cart {
    position: relative;
    z-index: 8;
    pointer-events: auto;
}

body.impulse-template .home-products__grid > .product-card .product-card__favorite {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 8;
    pointer-events: auto;
}

body.impulse-template .home-brands {
    padding: 1rem 0 1.7rem;
    overflow: hidden;
}

body.impulse-template .home-brands__row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(2rem, 4vw, 4.5rem);
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.6rem 0 0.9rem;
    color: rgba(33, 29, 27, 0.55);
    font-family: var(--ui-font-family);
    font-weight: 700;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

body.impulse-template .home-brands__row.is-auto-scrolling {
    cursor: grab;
}

body.impulse-template .home-brands__row::-webkit-scrollbar {
    display: none;
}

body.impulse-template .home-brand-link,
body.impulse-template .home-brands__row span {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
}

body.impulse-template .home-brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    color: inherit;
    text-decoration: none;
}

body.impulse-template .home-brand-link img {
    display: block;
    width: auto;
    max-width: 12rem;
    max-height: 3.25rem;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
    transition: opacity 0.18s ease, filter 0.18s ease;
}

body.impulse-template .home-brand-link:hover img {
    filter: grayscale(0);
    opacity: 1;
}

body.impulse-template .home-brand-link span,
body.impulse-template .home-brands__row span {
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.1;
}

body.impulse-template .home-consultation {
    padding: 1rem 0 2.4rem;
}

body.impulse-template .home-consultation__card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.8fr);
    min-height: 23rem;
    height: auto;
    overflow: hidden;
    border-radius: 0.75rem;
    background: #12100e;
    color: #fff;
}

body.impulse-template .home-consultation__copy {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(2rem, 4vw, 3.4rem);
}

body.impulse-template .home-consultation__copy h2,
body.impulse-template .home-subscribe h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: var(--home-heading-lg);
    font-weight: 400;
    line-height: 1.12;
}

body.impulse-template .home-consultation__copy h2 {
    margin-bottom: 0.75rem;
}

body.impulse-template .home-consultation__copy p {
    max-width: 34rem;
    margin-bottom: 1.4rem;
    color: rgba(255, 255, 255, 0.84);
}

body.impulse-template .home-consultation__copy ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.5rem;
    margin-top: auto;
    padding-top: 1.8rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: var(--home-text-md);
}

body.impulse-template .home-consultation__card>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.72;
}

body.impulse-template .home-scenarios__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.impulse-template .home-scenario-card {
    min-height: 9rem;
}

body.impulse-template .home-scenario-card span {
    left: 1rem;
    right: 3rem;
    bottom: 1rem;
}

body.impulse-template .home-reviews__grid,
body.impulse-template .home-journal__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 1rem;
}

body.impulse-template .home-review-card {
    padding: 1.4rem;
    border: 1px solid rgba(33, 29, 27, 0.08);
    border-radius: 0.55rem;
    background: #fff;
    box-shadow: 0 0.8rem 2rem rgba(33, 29, 27, 0.06);
}

body.impulse-template .home-review-card__stars {
    margin-bottom: 0.75rem;
    color: #d69a2d;
    letter-spacing: 0.08em;
}

body.impulse-template .home-review-card p {
    margin-bottom: 1rem;
    color: rgba(33, 29, 27, 0.74);
}

body.impulse-template .home-review-card strong,
body.impulse-template .home-review-card span {
    display: block;
}

body.impulse-template .home-review-card span {
    color: rgba(33, 29, 27, 0.54);
    font-size: 0.82rem;
}

body.impulse-template .home-journal-card {
    height: 8.75rem;
    overflow: hidden;
    border: 1px solid rgba(33, 29, 27, 0.06);
    border-radius: 0.55rem;
    background: #fff;
    box-shadow: 0 0.8rem 2rem rgba(33, 29, 27, 0.045);
}

body.impulse-template .home-journal-card a {
    display: grid;
    grid-template-columns: 40% 1fr;
    grid-template-rows: 1fr auto 1fr;
    height: 100%;
    min-height: 0;
    color: inherit;
}

body.impulse-template .home-journal-card img {
    grid-row: 1 / -1;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

body.impulse-template .home-journal-card span,
body.impulse-template .home-journal-card strong {
    grid-column: 2;
    padding-inline: 1rem;
}

body.impulse-template .home-journal-card span {
    align-self: end;
    padding-top: 0.9rem;
    padding-bottom: 0.35rem;
    color: rgba(33, 29, 27, 0.54);
    font-size: var(--home-text-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.impulse-template .home-journal-card strong {
    align-self: start;
    padding-bottom: 0.9rem;
    color: rgba(15, 14, 13, 0.96);
    font-size: 1.04rem;
    font-weight: 800;
    line-height: 1.22;
}

body.impulse-template .home-subscribe {
    padding: 2.5rem 0;
    background: linear-gradient(90deg, rgba(9, 8, 7, 0.96), rgba(31, 29, 26, 0.88));
    color: #fff;
}

body.impulse-template .home-subscribe__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1fr);
    gap: 2rem;
    align-items: center;
}

body.impulse-template .home-subscribe h2 {
    max-width: 32rem;
    margin-bottom: 0.55rem;
}

body.impulse-template .home-subscribe p {
    color: rgba(255, 255, 255, 0.74);
}

body.impulse-template .home-subscribe__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem;
}

body.impulse-template .home-subscribe__form input[type="email"] {
    min-height: 3.25rem;
    padding: 0 1rem;
    border: 0;
    border-radius: 0.2rem;
    background: #fff;
}

body.impulse-template .home-subscribe__agree {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: var(--home-text-sm);
}

body.impulse-template .home-subscribe__status {
    grid-column: 1 / -1;
    min-height: 1.2rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.35;
}

@media (min-width: 1025px) {
    body.impulse-template .home-rail--brands .home-rail__button {
        display: none;
    }
}

@media (max-width: 1280px) {
    body.impulse-template .home-products__grid {
        display: flex;
        gap: 1rem;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        padding: 0 0 1.1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    body.impulse-template .home-products__grid::-webkit-scrollbar {
        display: none;
    }

    body.impulse-template .home-products__grid .home-product-card {
        flex: 0 0 clamp(16.25rem, 31vw, 20rem);
        scroll-snap-align: start;
    }

    body.impulse-template .home-products__grid > .product-card {
        flex: 0 0 clamp(16.25rem, 31vw, 20rem);
        scroll-snap-align: start;
    }

    body.impulse-template .home-advantages__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    body.impulse-template .home-page {
        --home-container: var(--home-mobile-container);
        --home-heading-lg: 2.25rem;
        --home-heading-hero: 2.65rem;
    }

    body.impulse-template .home-page,
    body.impulse-template .home-page>*,
    body.impulse-template .home-hero,
    body.impulse-template .home-categories,
    body.impulse-template .home-products,
    body.impulse-template .home-brands,
    body.impulse-template .home-consultation,
    body.impulse-template .home-scenarios,
    body.impulse-template .home-reviews,
    body.impulse-template .home-journal,
    body.impulse-template .home-subscribe {
        width: 100%;
        max-width: 100vw;
        min-width: 0;
        overflow-x: clip;
    }

    body.impulse-template .home-hero__content {
        align-items: center;
        min-height: 36rem;
        padding-top: 4.5rem;
        padding-bottom: 2rem;
    }

    body.impulse-template .home-hero__media img {
        object-position: 62% 10%;
    }

    body.impulse-template .home-hero__body {
        max-width: 32rem;
    }

    body.impulse-template .home-hero__title {
        max-width: 24rem;
    }

    body.impulse-template .home-hero__text,
    body.impulse-template .home-hero__facts {
        max-width: 26rem;
    }

    body.impulse-template .home-hero__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        width: 100%;
        max-width: 32rem;
    }

    body.impulse-template .home-hero__actions .button {
        width: 100%;
        justify-content: center;
        white-space: normal;
    }

    body.impulse-template .home-categories__grid,
    body.impulse-template .home-scenarios__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.impulse-template .home-consultation__card,
    body.impulse-template .home-subscribe__inner {
        grid-template-columns: minmax(0, 1fr);
    }

    body.impulse-template .home-consultation__card>img {
        min-height: 18rem;
    }

    body.impulse-template .home-product-card .product-card__sizes,
    body.impulse-template .home-product-card .product-card__colors {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.impulse-template .home-product-card.product-card.is-size-required .product-card__sizes,
    body.impulse-template .home-product-card.product-card.is-variant-selected .product-card__sizes {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    body.impulse-template .home-product-card [data-card-gallery-dots],
    body.impulse-template .home-product-card [data-card-gallery-dot] {
        touch-action: manipulation;
    }

    body.impulse-template .home-products__grid > .product-card .product-card__sizes,
    body.impulse-template .home-products__grid > .product-card .product-card__colors {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.impulse-template .home-products__grid > .product-card.product-card.is-size-required .product-card__sizes,
    body.impulse-template .home-products__grid > .product-card.product-card.is-variant-selected .product-card__sizes {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    body.impulse-template .home-products__grid > .product-card [data-card-gallery-dots],
    body.impulse-template .home-products__grid > .product-card [data-card-gallery-dot] {
        touch-action: manipulation;
    }
}

@media (max-width: 767px) {
    body.impulse-template .home-page {
        --home-container: min(100% - 3rem, 1680px);
        --home-heading-lg: 1.75rem;
        --home-heading-hero: 2rem;
    }

    body.impulse-template .home-hero__content {
        min-height: 37rem;
        padding-top: 3.25rem;
        padding-bottom: 1.6rem;
    }

    body.impulse-template .home-hero__body {
        max-width: min(100%, 20.5rem);
    }

    body.impulse-template .home-hero__eyebrow {
        margin-bottom: 1rem;
        font-size: var(--home-text-sm);
        line-height: 1.35;
        letter-spacing: 0.14em;
    }

    body.impulse-template .home-hero__title {
        max-width: 16rem;
        line-height: 1.08;
    }

    body.impulse-template .home-hero__text,
    body.impulse-template .home-hero__facts {
        max-width: 20rem;
        font-size: var(--home-text-md);
        line-height: 1.45;
    }

    body.impulse-template .home-hero__actions {
        grid-template-columns: minmax(0, 1fr);
        max-width: 100%;
    }

    body.impulse-template .home-hero__actions .button {
        min-height: 3.35rem;
        font-size: 0.72rem;
        letter-spacing: 0.08em;
    }

    body.impulse-template .home-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.55rem;
        margin-bottom: 1.15rem;
    }

    body.impulse-template .home-categories__grid,
    body.impulse-template .home-scenarios__grid,
    body.impulse-template .home-advantages__grid,
    body.impulse-template .home-reviews__grid,
    body.impulse-template .home-journal__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    body.impulse-template .home-category-card,
    body.impulse-template .home-scenario-card {
        min-height: 10.8rem;
    }

    body.impulse-template .home-products__grid .home-product-card {
        flex: 0 0 min(82vw, 18rem);
        width: min(82vw, 18rem);
        max-width: min(82vw, 18rem);
    }

    body.impulse-template .home-products__grid > .product-card {
        flex: 0 0 min(82vw, 18rem);
        width: min(82vw, 18rem);
        max-width: min(82vw, 18rem);
    }

    body.impulse-template .home-brands {
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;
    }

    body.impulse-template .home-brands__row {
        gap: 2rem;
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
    }

    body.impulse-template .home-brand-link span,
    body.impulse-template .home-brands__row span {
        font-size: 1.25rem;
    }

    body.impulse-template .home-rail {
        gap: 0.65rem;
    }

    body.impulse-template .home-rail__button {
        width: 2.65rem;
        height: 2.65rem;
        font-size: 1.35rem;
    }

    body.impulse-template .home-journal-card a {
        grid-template-columns: 38% 1fr;
    }

    body.impulse-template .home-subscribe__form {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 430px) {
    body.impulse-template .home-page {
        --home-container: min(100% - 2rem, 1680px);
    }

    body.impulse-template .home-hero__body {
        max-width: min(100%, 19.5rem);
    }

    body.impulse-template .home-hero__title {
        max-width: 15.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.impulse-template .home-brands__row {
        scroll-behavior: auto;
    }
}
