:root {
    --paper: #f7f4ed;
    --surface: #fffdf8;
    --ink: #211b18;
    --ink-soft: #493f3a;
    --muted: #665b56;
    --brand: #087f5b;
    --brand-dark: #066747;
    --brand-deep: #044a35;
    --brand-soft: #dff1e9;
    --rocket: #f58634;
    --rocket-dark: #9a3f0c;
    --rocket-soft: #ffead9;
    --line: #d9d1c9;
    --font-display: "Sora", Arial, sans-serif;
    --font-body: "Manrope", Arial, sans-serif;
    --container: 1180px;
    --z-sticky: 20;
    --z-banner: 40;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.62;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body,
button,
a {
    font-family: var(--font-body);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--rocket);
    outline-offset: 3px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    text-wrap: balance;
}

h1,
h2 {
    letter-spacing: -0.035em;
}

h1,
h2,
h3,
h4 {
    overflow-wrap: anywhere;
}

h1 {
    max-width: 12ch;
    margin-bottom: 24px;
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.07;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 600;
    line-height: 1.12;
}

h3 {
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

p {
    text-wrap: pretty;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: calc(var(--z-banner) + 1);
    transform: translateY(-160%);
    border-radius: 8px;
    padding: 10px 14px;
    background: var(--surface);
    color: var(--brand-deep);
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    border-bottom: 1px solid rgba(33, 27, 24, 0.12);
    background: rgba(255, 253, 248, 0.96);
}

.header-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.brand img {
    width: 220px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 15px;
    font-weight: 700;
}

.main-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.main-nav a:hover {
    color: var(--brand);
}

.nav-label-mobile {
    display: none;
}

.nav-support {
    border-radius: 8px;
    padding: 0 16px;
    background: var(--brand);
    color: white;
}

.main-nav .nav-support:hover {
    background: var(--brand-deep);
    color: white;
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--brand-deep);
    color: white;
}

.hero::after {
    position: absolute;
    right: -80px;
    bottom: -170px;
    width: 430px;
    height: 430px;
    border: 76px solid rgba(245, 134, 52, 0.2);
    border-radius: 50%;
    content: "";
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 610px;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    align-items: center;
    gap: clamp(48px, 8vw, 110px);
    padding-block: clamp(72px, 10vw, 126px);
}

.hero-kicker,
.section-label {
    margin-bottom: 16px;
    color: var(--rocket-soft);
    font-weight: 800;
}

.hero-lead {
    max-width: 62ch;
    margin-bottom: 30px;
    color: #eef8f3;
    font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 220ms ease-out, color 220ms ease-out, border-color 220ms ease-out, transform 220ms ease-out;
}

.button:hover {
    transform: translateY(-2px);
}

.button-light {
    background: white;
    color: var(--brand-deep);
}

.button-light:hover {
    background: var(--rocket-soft);
}

.button-quiet {
    border-color: rgba(255, 255, 255, 0.48);
    color: white;
}

.button-quiet:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.08);
}

.button-dark {
    background: var(--brand);
    color: white;
}

.button-dark:hover {
    background: var(--brand-deep);
}

.button-outline {
    border-color: var(--brand);
    background: transparent;
    color: var(--brand-deep);
}

.button-outline:hover {
    background: var(--brand-soft);
}

.hero-shelf {
    transform: rotate(-3deg);
}

.shelf-row {
    display: flex;
    width: 86%;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    border-radius: 12px;
    padding: 16px 18px;
    background: var(--surface);
    color: var(--ink);
    box-shadow: 7px 7px 0 var(--rocket);
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.22rem);
    font-weight: 600;
}

.shelf-row-wide {
    width: 100%;
}

.shelf-row-shift {
    margin-left: 12%;
}

.shelf-row i {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--brand);
}

.hero-shelf > p {
    margin: 22px 0 0;
    color: #d2ebe0;
    font-weight: 700;
    text-align: right;
}

.trust-bar {
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.trust-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.trust-list p {
    margin: 0;
    padding: 24px 28px;
    border-right: 1px solid var(--line);
}

.trust-list p:first-child {
    padding-left: 0;
}

.trust-list p:last-child {
    border-right: 0;
}

.trust-list strong,
.trust-list span {
    display: block;
}

.trust-list strong {
    color: var(--brand-deep);
    font-size: 15px;
}

.trust-list span {
    color: var(--muted);
    font-size: 14px;
}

.catalog-section,
.steps-section,
.clarity-section,
.faq-section {
    padding-block: clamp(76px, 10vw, 132px);
}

.section-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: clamp(32px, 7vw, 100px);
    margin-bottom: 44px;
}

.section-intro h2 {
    max-width: 18ch;
    margin-bottom: 0;
}

.section-intro > p {
    max-width: 48ch;
    margin-bottom: 6px;
    color: var(--muted);
}

.section-label {
    color: var(--rocket-dark);
}

.catalog-filters {
    position: relative;
    z-index: calc(var(--z-sticky) - 1);
    margin-bottom: 30px;
    border-block: 1px solid var(--line);
    padding-block: 14px 10px;
}

.catalog-filters[hidden] {
    display: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.catalog-toolbar {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) repeat(3, minmax(150px, 0.34fr));
    align-items: stretch;
    gap: 8px;
}

.catalog-search {
    display: block;
    min-width: 0;
}

.search-field {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0 16px;
    background: var(--surface);
    color: var(--muted);
}

.search-field:focus-within {
    border-color: var(--brand);
    outline: 3px solid var(--brand-soft);
}

.search-field svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
}

.search-field input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 14px 0;
    background: transparent;
    color: var(--ink);
    font: 600 16px var(--font-body);
}

.search-field input::placeholder {
    color: #6d625d;
    opacity: 1;
}

.filter-disclosure {
    position: relative;
    min-width: 0;
}

.filter-disclosure summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    grid-template-rows: auto auto;
    align-content: center;
    column-gap: 8px;
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 7px 12px;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.filter-disclosure summary::-webkit-details-marker {
    display: none;
}

.filter-disclosure summary:hover,
.filter-disclosure[data-active="true"] summary,
.filter-disclosure[open] summary {
    border-color: var(--brand);
    background: var(--brand-soft);
    color: var(--brand-deep);
}

.filter-disclosure summary:focus-visible {
    outline: 3px solid var(--rocket);
    outline-offset: 2px;
}

.filter-disclosure summary span,
.filter-disclosure summary strong {
    grid-column: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.filter-disclosure summary span {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.1;
}

.filter-disclosure summary strong {
    font-size: 0.82rem;
    line-height: 1.25;
}

.filter-disclosure summary svg {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    width: 18px;
    height: 18px;
    transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-disclosure[open] summary svg {
    transform: rotate(180deg);
}

.filter-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 20;
    display: grid;
    width: max-content;
    min-width: 220px;
    max-height: min(390px, calc(100vh - 180px));
    gap: 4px;
    overflow-y: auto;
    border-radius: 12px;
    padding: 8px;
    background: var(--surface);
    box-shadow: 0 8px 20px rgba(33, 27, 24, 0.16);
    animation: filter-menu-in 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.filter-menu-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(390px, calc(100vw - 32px));
}

.filter-disclosure-end .filter-menu {
    right: 0;
    left: auto;
}

.filter-menu button {
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    padding: 9px 11px;
    background: transparent;
    color: var(--ink-soft);
    font: 700 0.82rem/1.3 var(--font-body);
    text-align: left;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.filter-menu button:hover,
.filter-menu button:focus-visible {
    background: #f0ece4;
    color: var(--ink);
    outline: 0;
}

.filter-menu button[aria-pressed="true"] {
    background: var(--brand-soft);
    color: var(--brand-deep);
}

.filter-menu button:active {
    transform: translateY(1px);
}

@keyframes filter-menu-in {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.catalog-filter-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 34px;
    margin-top: 6px;
}

.catalog-result-count {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.clear-filters {
    min-height: 34px;
    border: 0;
    padding: 8px 0;
    background: transparent;
    color: var(--brand-deep);
    font: 800 14px var(--font-body);
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
}

.clear-filters[hidden] {
    display: none;
}

.catalog-status {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 112px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px;
    background: var(--surface);
}

.catalog-status[hidden],
.catalog-groups[hidden] {
    display: none;
}

.catalog-status p {
    margin: 2px 0 0;
    color: var(--muted);
}

.loading-mark {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    border: 4px solid var(--brand-soft);
    border-top-color: var(--brand);
    border-radius: 50%;
    animation: spin 900ms linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.catalog-error {
    align-items: flex-start;
    justify-content: space-between;
    border-color: #d7a275;
    background: var(--rocket-soft);
}

.error-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.catalog-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 18px;
}

.catalog-group {
    scroll-margin-top: 110px;
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.catalog-group.is-large {
    grid-column: 1 / -1;
}

.group-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
}

.group-heading h3 {
    margin: 0;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.group-heading span {
    color: var(--muted);
    font-size: 14px;
}

.product-grid {
    display: grid;
    flex: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 18px;
}

.catalog-group.is-single .product-grid {
    grid-template-columns: 1fr;
}

.product-card {
    display: flex;
    height: 100%;
    min-width: 0;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    transition: border-color 220ms ease-out, transform 220ms ease-out;
}

.product-card[hidden] {
    display: none;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand);
}

.product-card.is-featured {
    border-color: var(--brand);
    box-shadow: 0 6px 0 var(--brand-soft);
}

.product-visual {
    position: relative;
    display: flex;
    min-height: 116px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    border-radius: 13px 13px 0 0;
    padding: 18px;
    background: #f0f3ef;
}

.product-mark {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 12px;
    background: var(--surface);
    color: var(--brand-deep);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
}

.product-identity {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
}

.product-identity img,
.product-mark {
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 10px;
    padding: 4px;
    background: transparent;
    object-fit: contain;
}

.product-identity-name {
    display: block;
    max-width: 14ch;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.product-duration {
    position: relative;
    z-index: 1;
    max-width: 17ch;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 800;
    text-align: right;
}

.product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 12px;
}

.product-meta span {
    border-radius: 999px;
    padding: 4px 9px;
    background: #eee8e1;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 800;
}

.product-body h4 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.product-summary {
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 15px;
}

.product-benefits-title {
    margin: 2px 0 6px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.product-highlights {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.product-highlights li {
    position: relative;
    margin-top: 7px;
    padding-left: 19px;
    color: var(--ink-soft);
    font-size: 14px;
}

.product-highlights li::before {
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rocket);
    content: "";
}

.product-conditions {
    margin: 0 0 18px;
    border-top: 1px solid var(--line);
    padding-top: 12px;
}

.product-conditions summary {
    min-height: 44px;
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.product-conditions p {
    margin: 0 0 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.product-footer {
    margin-top: auto;
    border-top: 1px solid var(--line);
    padding-top: 18px;
}

.product-delivery {
    margin-bottom: 14px;
    font-size: 13px;
}

.product-delivery span,
.product-delivery strong {
    display: block;
}

.product-delivery span {
    color: var(--muted);
}

.product-delivery strong {
    color: var(--ink-soft);
    font-weight: 800;
}

.product-price {
    display: flex;
    min-height: 54px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.product-price span {
    color: var(--muted);
    font-size: 13px;
}

.product-price strong {
    display: block;
    color: var(--brand-deep);
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 4vw, 2.1rem);
    line-height: 1;
}

.product-card .button {
    width: 100%;
}

.product-actions {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 8px;
}

.product-actions .button {
    min-height: 46px;
    padding-inline: 12px;
    font-size: 14px;
}

.product-details-button {
    appearance: none;
}

.proof-section {
    border-block: 1px solid rgba(4, 74, 53, 0.2);
    padding-block: clamp(70px, 9vw, 112px);
    background: var(--brand-soft);
}

.proof-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
    align-items: end;
    gap: 36px 80px;
    margin-bottom: 44px;
}

.proof-heading h2 {
    max-width: 17ch;
    margin-bottom: 0;
}

.proof-heading > p {
    margin: 0 0 8px;
    color: #285647;
}

.proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 0.91fr));
    align-items: stretch;
    gap: 18px;
}

.proof-grid figure {
    display: flex;
    min-width: 0;
    min-height: 280px;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    border: 1px solid rgba(4, 74, 53, 0.18);
    border-radius: 14px;
    padding: clamp(26px, 4vw, 38px);
    background: var(--surface);
}

.proof-grid figure::before {
    display: block;
    width: 38px;
    height: 5px;
    margin-bottom: 28px;
    background: var(--rocket);
    content: "";
}

.proof-grid .proof-featured {
    background: var(--brand-deep);
    color: white;
    box-shadow: 7px 7px 0 var(--rocket);
}

.proof-grid blockquote {
    margin: 0 0 34px;
    font-family: var(--font-display);
    font-size: clamp(1.18rem, 2.2vw, 1.6rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.4;
    text-wrap: pretty;
}

.proof-grid .proof-featured blockquote {
    font-size: clamp(1.4rem, 2.7vw, 2rem);
}

.proof-grid figcaption {
    color: var(--brand-deep);
    font-size: 14px;
    font-weight: 800;
}

.proof-grid .proof-featured figcaption {
    color: #dff1e9;
}

.proof-note {
    margin: 24px 0 0;
    color: #3e6458;
    font-size: 13px;
}

.steps-section {
    background: var(--surface);
}

.steps-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    gap: clamp(48px, 9vw, 124px);
}

.steps-heading {
    align-self: center;
}

.steps-heading .steps-promise {
    max-width: 36ch;
    margin-bottom: 18px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    font-weight: 600;
    line-height: 1.4;
}

.steps-heading p:last-child {
    max-width: 50ch;
    color: var(--muted);
}

.steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps li {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
}

.steps li:first-child {
    padding-top: 0;
}

.steps li:last-child {
    border-bottom: 0;
}

.steps li > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: var(--brand);
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
}

.steps h3 {
    margin: 0 0 4px;
}

.steps p {
    max-width: 50ch;
    margin: 0;
    color: var(--muted);
}

.clarity-section {
    background: var(--ink);
    color: white;
}

.clarity-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: end;
    gap: clamp(30px, 7vw, 90px);
    margin-bottom: 48px;
}

.clarity-heading h2 {
    max-width: 20ch;
    margin-bottom: 0;
}

.clarity-heading p {
    max-width: 50ch;
    margin-bottom: 7px;
    color: #e3dad4;
}

.access-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    border-top: 1px solid #655b55;
}

.access-types div {
    min-height: 150px;
    border-bottom: 1px solid #655b55;
    padding: 24px 32px 24px 0;
}

.access-types div:nth-child(odd) {
    border-right: 1px solid #655b55;
}

.access-types div:nth-child(even) {
    padding-left: 32px;
}

.access-types dt {
    margin-bottom: 8px;
    color: var(--rocket);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.access-types dd {
    max-width: 52ch;
    margin: 0;
    color: #e3dad4;
}

.transparency-note {
    display: grid;
    grid-template-columns: 0.35fr 1fr;
    gap: 24px;
    margin-top: 36px;
    border-radius: 12px;
    padding: 22px 24px;
    background: var(--rocket);
    color: var(--ink);
}

.transparency-note p {
    margin: 0;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
    gap: clamp(42px, 8vw, 110px);
}

.faq-layout > div:first-child {
    align-self: start;
    position: sticky;
    top: 120px;
}

.text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--brand-deep);
    font-weight: 800;
    text-underline-offset: 4px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    min-height: 64px;
    padding: 20px 46px 20px 0;
    font-family: var(--font-display);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    position: absolute;
    top: 19px;
    right: 3px;
    color: var(--brand);
    font-size: 24px;
    content: "+";
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    max-width: 68ch;
    padding: 0 42px 22px 0;
    color: var(--muted);
}

.site-footer {
    padding-top: 64px;
    background: var(--brand-deep);
    color: white;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 1fr;
    gap: 44px;
    padding-bottom: 48px;
}

.footer-main > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-logo {
    width: 240px;
    margin-bottom: 12px;
}

.footer-main p {
    max-width: 45ch;
    margin: 0;
    color: #d6e9e1;
}

.footer-main a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: #d6e9e1;
    text-underline-offset: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-block: 22px 34px;
}

.footer-bottom p {
    max-width: 62ch;
    margin: 0;
    color: #bcd7cc;
    font-size: 13px;
}

.footer-bottom p:last-child {
    text-align: right;
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: calc(var(--z-banner) - 1);
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 12px 18px;
    background: #167a55;
    color: white;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 5px 0 rgba(4, 74, 53, 0.24);
    transition: background-color 220ms ease-out, transform 220ms ease-out;
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    background: var(--brand-deep);
}

.floating-whatsapp svg {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
}

.noscript {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: var(--z-banner);
    border-radius: 10px;
    padding: 14px;
    background: var(--rocket-soft);
    color: var(--ink);
    text-align: center;
}

@media (max-width: 900px) {
    .main-nav {
        gap: 8px;
        font-size: 14px;
    }

    .main-nav > a[href^="#"] {
        display: none;
    }

    .main-nav .nav-offers {
        display: inline-flex;
    }

    .full-catalog-page .main-nav > a[href="/"] {
        display: none;
    }

    .nav-label-desktop {
        display: none;
    }

    .nav-label-mobile {
        display: inline;
    }

    .nav-catalog {
        min-height: 44px;
        padding: 12px 8px;
    }

    .hero-layout,
    .section-intro,
    .proof-heading,
    .steps-layout,
    .clarity-heading,
    .faq-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-layout {
        min-height: auto;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-shelf {
        width: min(100%, 560px);
    }

    .section-intro,
    .clarity-heading {
        align-items: start;
    }

    .section-intro > p,
    .clarity-heading p {
        margin-bottom: 0;
    }

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

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .proof-grid figure {
        min-height: 230px;
    }

    .trust-list p,
    .trust-list p:first-child {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 17px 0;
    }

    .trust-list p:last-child {
        border-bottom: 0;
    }

    .steps-layout {
        gap: 36px;
    }

    .faq-layout > div:first-child {
        position: static;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-main > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .header-inner {
        min-height: 68px;
    }

    .brand img {
        width: 172px;
    }

    .nav-support {
        padding-inline: 13px;
    }

    .proof-grid figure:not(.proof-featured) {
        min-height: auto;
    }

    .hero::after {
        right: -150px;
        bottom: -210px;
    }

    .hero-layout {
        gap: 48px;
        padding-block: 62px 74px;
    }

    h1 {
        font-size: clamp(2.55rem, 13vw, 3.55rem);
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-shelf {
        transform: rotate(-2deg);
    }

    .shelf-row {
        width: 92%;
        min-height: 62px;
        box-shadow: 5px 5px 0 var(--rocket);
    }

    .shelf-row-wide {
        width: 100%;
    }

    .shelf-row-shift {
        margin-left: 8%;
    }

    .catalog-section,
    .proof-section,
    .steps-section,
    .clarity-section,
    .faq-section {
        padding-block: 72px;
    }

    .section-intro {
        margin-bottom: 32px;
    }

    .filter-options {
        width: 100%;
        max-width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 2px 14px 8px 2px;
        scrollbar-width: thin;
    }

    .filter-options button {
        flex: 0 0 auto;
    }

    .catalog-error {
        display: block;
    }

    .error-actions {
        display: grid;
        margin-top: 18px;
    }

    .catalog-groups {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .group-heading {
        align-items: flex-start;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card:hover,
    .button:hover {
        transform: none;
    }

    .access-types {
        grid-template-columns: 1fr;
    }

    .access-types div,
    .access-types div:nth-child(even) {
        min-height: auto;
        border-right: 0;
        padding: 22px 0;
    }

    .transparency-note {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-main > div:first-child {
        grid-column: auto;
    }

    .footer-bottom {
        display: grid;
    }

    .footer-bottom p:last-child {
        text-align: left;
    }

}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Home comercial por categoria e catálogo completo */
[hidden] {
    display: none !important;
}

.home-catalog-section,
.full-catalog {
    padding-block: clamp(68px, 9vw, 112px);
}

.home-catalog-section {
    background: var(--surface);
    padding-bottom: 0;
}

.home-offers-section {
    border-bottom: 1px solid var(--line);
    padding-bottom: clamp(48px, 7vw, 84px);
    background: #f2f8f5;
    scroll-margin-top: 84px;
}

.home-offers-section .home-category-list {
    border-top: 0;
}

.home-offer-band:first-child {
    border-top: 1px solid var(--line);
}

.full-catalog-page .full-catalog {
    padding-top: clamp(32px, 4vw, 48px);
}

.home-catalog-intro {
    margin-bottom: clamp(28px, 4vw, 48px);
}

.home-category-list {
    border-top: 1px solid var(--line);
}

.home-category-band {
    scroll-margin-top: 96px;
    display: grid;
    grid-template-columns: minmax(210px, 0.48fr) minmax(0, 1.52fr);
    gap: clamp(28px, 5vw, 72px);
    border-bottom: 1px solid var(--line);
    padding-block: clamp(42px, 6vw, 72px);
}

.home-category-heading {
    align-self: start;
}

.home-category-heading h3 {
    max-width: 17ch;
    margin: 0;
    font-size: clamp(1.55rem, 2vw, 1.95rem);
    hyphens: none;
    line-height: 1.1;
    overflow-wrap: normal;
    text-wrap: balance;
    word-break: normal;
}

.home-category-heading p {
    max-width: 34ch;
    margin: 14px 0 20px;
    color: var(--muted);
}

.home-category-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--brand-deep);
    font-weight: 800;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.home-carousel-hint {
    display: none;
}

.home-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.home-category-grid .product-card {
    height: 100%;
}

.home-category-band.is-short .home-category-grid {
    justify-content: start;
}

.catalog-feedback {
    padding-top: 28px;
}

.product-grid,
.catalog-groups {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: auto;
    align-items: stretch;
    column-gap: 16px;
    row-gap: 30px;
}

.product-grid {
    padding-top: 16px;
}

.catalog-product-grid .product-card {
    height: 100%;
}

.home-category-band .home-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
    position: relative;
    display: flex;
    height: auto;
    min-width: 0;
    min-height: 0;
    flex-direction: column;
    overflow: visible;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px 18px 18px;
    background: var(--surface);
    box-shadow: 0 5px 0 rgba(4, 74, 53, 0.1);
    transition: border-color 220ms ease-out, box-shadow 220ms ease-out, transform 220ms ease-out;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: #9fc8b8;
    box-shadow: 0 8px 0 rgba(4, 74, 53, 0.12);
}

.product-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.coupon-availability-badge {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 50%;
    display: inline-flex;
    width: fit-content;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid #e99a5c;
    border-radius: 999px;
    padding: 3px 8px 3px 3px;
    background: linear-gradient(110deg, #fff1e6 0%, #ffe1c9 100%);
    color: var(--rocket-dark);
    box-shadow: 0 3px 9px rgba(154, 63, 12, 0.1);
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.2;
    transform: translate(-50%, -50%);
}

.coupon-availability-badge.is-automatic-discount {
    border-color: #72ad96;
    background: linear-gradient(110deg, #eef9f4 0%, #d9f1e7 100%);
    color: var(--brand-deep);
}

.coupon-availability-badge.is-automatic-discount .coupon-discount-icon {
    background: var(--brand);
}

.coupon-availability-badge::after {
    position: absolute;
    z-index: -1;
    top: -50%;
    bottom: -50%;
    left: -45%;
    width: 24%;
    transform: skewX(-18deg);
    background: rgba(255, 255, 255, 0.68);
    content: '';
}

.coupon-discount-icon {
    display: inline-grid;
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 6px;
    background: var(--rocket);
    color: #fff;
    box-shadow: 0 2px 5px rgba(154, 63, 12, 0.24);
    font-family: Sora, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
    transform: rotate(-6deg);
}

.coupon-availability-label {
    white-space: nowrap;
}

.coupon-availability-badge.is-coupon-visible {
    animation: coupon-badge-enter 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.coupon-availability-badge.is-coupon-visible .coupon-discount-icon {
    animation: coupon-icon-enter 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.coupon-availability-badge.is-coupon-visible::after {
    animation: coupon-badge-shine 720ms 170ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.coupon-availability-badge[hidden] {
    display: none;
}

@keyframes coupon-badge-enter {
    0% { opacity: 0; transform: translate(-50%, calc(-50% + 6px)) scale(0.94); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes coupon-icon-enter {
    0% { opacity: 0; transform: rotate(-24deg) scale(0.72); }
    100% { opacity: 1; transform: rotate(-6deg) scale(1); }
}

@keyframes coupon-badge-shine {
    0% { left: -45%; }
    100% { left: 130%; }
}

.product-identity {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.product-identity img,
.product-mark {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: white;
    object-fit: contain;
}

.product-mark {
    display: grid;
    place-items: center;
    color: var(--brand-deep);
    font: 700 0.9rem/1 var(--font-display);
}

.product-overline {
    margin: 0 0 3px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 800;
}

.product-card h3 {
    margin: 0;
    font-size: clamp(1.05rem, 1.5vw, 1.22rem);
    line-height: 1.18;
}

.product-summary {
    display: -webkit-box;
    min-height: 68px;
    margin: 16px 0 14px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.product-card.is-home-card .product-summary {
    min-height: 46px;
    -webkit-line-clamp: 2;
}

.product-card-facts {
    display: grid;
    gap: 4px;
    border-block: 1px solid var(--line);
    padding-block: 12px;
}

.product-card-facts > div {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    padding-block: 3px;
}

.product-card-facts span,
.product-card-facts strong,
.product-delivery-line {
    display: block;
}

.product-card-facts span {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
}

.product-card-facts strong,
.product-delivery-line {
    max-width: none;
    color: var(--ink-soft);
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;
}

.product-card-footer {
    display: grid;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
}

.product-price {
    display: grid;
    min-height: 76px;
    align-items: stretch;
    padding: 0;
    background: transparent;
}

.product-price.has-original-price {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 10px;
}

.product-price-original {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    color: var(--muted);
    line-height: 1.3;
}

.product-price-original-label,
.product-price-prefix {
    display: block;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.product-price-original s {
    display: block;
    margin-top: 3px;
    color: var(--ink-soft);
    font-family: var(--font-display);
    font-size: clamp(0.82rem, 1.28vw, 1.05rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    text-decoration-color: currentColor;
    text-decoration-thickness: 1.5px;
    white-space: nowrap;
}

.product-price-original.has-long-value s {
    font-size: clamp(0.72rem, 0.95vw, 0.84rem);
}

.product-price-rocket {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    padding: 9px 8px;
    background: var(--brand-soft);
}

.product-price .product-price-value {
    color: var(--brand-deep);
    font: 700 clamp(1.25rem, 1.55vw, 1.5rem)/1.05 var(--font-display);
    letter-spacing: -0.035em;
    white-space: nowrap;
}

@media (max-width: 1080px) {
    .product-price-original s,
    .product-price-original.has-long-value s {
        font-size: clamp(0.9rem, 2.2vw, 1.05rem);
    }
}

.product-actions {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 8px;
}

.product-actions .button {
    width: 100%;
    min-height: 44px;
    min-width: 0;
    padding: 10px 7px;
    font-size: 0.8rem;
    white-space: normal;
}

.catalog-hero {
    background: var(--brand-deep);
    color: white;
}

.catalog-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: end;
    gap: clamp(36px, 8vw, 110px);
    padding-block: clamp(58px, 8vw, 92px);
}

.catalog-hero h1 {
    max-width: 12ch;
    margin-bottom: 0;
    font-size: clamp(2.6rem, 6vw, 4.9rem);
}

.catalog-hero-layout > p {
    max-width: 52ch;
    margin: 0 0 8px;
    color: #dff1e9;
}

.full-catalog .catalog-filters {
    margin-bottom: 30px;
}

.full-catalog .catalog-groups {
    display: block;
}

.full-catalog .filter-options {
    flex-wrap: wrap;
    overflow: visible;
    padding: 0;
}

.full-catalog .catalog-result-count {
    grid-column: 1 / -1;
}

.catalog-product-grid {
    margin-top: 0;
}

.catalog-category-section + .catalog-category-section {
    margin-top: clamp(52px, 7vw, 84px);
}

.catalog-category-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
}

.catalog-category-heading h3 {
    max-width: none;
    margin: 0;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.catalog-category-heading p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.catalog-empty-state {
    max-width: 680px;
    border-block: 1px solid var(--line);
    padding-block: 32px;
}

.catalog-empty-state strong {
    color: var(--ink);
    font: 700 clamp(1.25rem, 2.5vw, 1.75rem)/1.25 var(--font-display);
}

.catalog-empty-state p {
    margin: 8px 0 20px;
    color: var(--muted);
}

@media (max-width: 1080px) {
    .home-category-band {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .product-grid,
    .catalog-groups {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-category-band .home-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .home-catalog-section,
    .full-catalog {
        padding-block: 66px;
    }

    .home-catalog-section {
        padding-top: 56px;
        padding-bottom: 0;
    }

    .home-catalog-intro {
        margin-bottom: 24px;
    }

    .product-grid,
    .catalog-groups,
    .catalog-hero-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-category-band {
        scroll-margin-top: 76px;
        padding-block: 36px;
    }

    .home-category-band.has-carousel {
        gap: 18px;
    }

    .home-carousel-hint {
        display: flex;
        min-height: 24px;
        align-items: center;
        gap: 8px;
        margin: -2px 0 0;
        color: var(--brand-deep);
        font-size: 0.9rem;
        font-weight: 800;
        transition: opacity 220ms ease-out;
    }

    .home-carousel-hint::after {
        content: "\2192";
        display: inline-block;
        font-size: 1.15em;
        animation: home-carousel-hint-shift 1.25s ease-in-out 3;
    }

    .home-carousel-hint.is-used {
        opacity: 0.58;
    }

    .home-category-band .home-category-grid {
        display: flex;
        width: 100%;
        gap: 14px;
        grid-template-columns: none;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        padding: 4px 30px 10px 0;
        scroll-padding-inline: 0 30px;
        scroll-snap-type: inline mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .home-category-grid::-webkit-scrollbar {
        display: none;
    }

    .home-category-grid .product-card {
        width: calc(100% - 30px);
        height: auto;
        flex: 0 0 calc(100% - 30px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .home-category-grid.is-single {
        overflow: visible;
        padding-right: 0;
        scroll-snap-type: none;
    }

    .home-category-grid.is-single .product-card {
        width: 100%;
        flex-basis: 100%;
    }

    .home-category-grid:focus-visible {
        border-radius: 14px;
        outline: 3px solid var(--rocket);
        outline-offset: 6px;
    }

    .home-category-heading h3 {
        max-width: 18ch;
    }

    .home-category-heading p {
        margin-bottom: 8px;
    }

    .catalog-toolbar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .catalog-search {
        grid-column: 1 / -1;
    }

    .filter-disclosure {
        position: static;
    }

    .filter-disclosure summary {
        grid-template-rows: minmax(0, 1fr);
    }

    .filter-disclosure summary span {
        grid-row: 1;
        align-self: center;
        color: currentColor;
        font-size: 0.8rem;
    }

    .filter-disclosure summary strong {
        display: none;
    }

    .filter-disclosure[data-active="true"] summary span {
        display: none;
    }

    .filter-disclosure[data-active="true"] summary strong {
        display: block;
        grid-row: 1;
        align-self: center;
        font-size: 0.78rem;
    }

    .filter-disclosure summary svg {
        grid-row: 1;
    }

    .filter-menu,
    .filter-menu-wide,
    .filter-disclosure-end .filter-menu {
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        width: auto;
        max-height: min(390px, calc(100vh - 170px));
    }

    .catalog-category-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .result-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .product-card {
        min-height: 0;
        padding: 18px;
    }

    .product-summary {
        min-height: 0;
        font-size: 0.95rem;
    }

    .catalog-hero-layout {
        align-items: start;
        gap: 22px;
    }

    .full-catalog .filter-options {
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        overflow: visible;
    }

    .full-catalog .filter-options button {
        flex: 1 1 145px;
        white-space: normal;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 54px;
        min-height: 54px;
        justify-content: center;
        padding: 15px;
    }

    .floating-whatsapp span {
        display: none;
    }
}

@keyframes home-carousel-hint-shift {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(7px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-carousel-hint::after {
        animation: none;
    }

    .coupon-availability-badge,
    .coupon-availability-badge::after,
    .coupon-discount-icon {
        animation: none !important;
    }
}

@media (max-width: 360px) {
    .home-category-grid:not(.is-single) .product-card {
        width: 100%;
        flex-basis: 100%;
    }
}

@media (max-width: 390px) {
    .filter-menu-wide {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-card-facts > div {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 10px;
    }
}
