:root {
    --bg: #1f2428;
    --bg-soft: #252b30;
    --surface: #2a2f33;
    --surface-hero: #24362f;
    --surface-card: #4a4a4c;
    --surface-notice: #002814;
    --text: #f1f5f3;
    --text-soft: #c8d2cd;
    --text-muted: #9fafaa;
    --primary: #10a15b;
    --primary-dark: #0a7b45;
    --border: rgba(16, 161, 91, 0.22);
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    --radius: 24px;
    --container: 1420px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: #22c26d; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 3.5rem)); margin: 0 auto; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(31, 36, 40, 0.95);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.site-header__inner,
.site-footer__inner,
.hero,
.section,
.faq,
.order-shell,
.trust-strip { padding: 1rem 0; }
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.95rem;
}
.brand-mark__badge {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: transparent;
    color: var(--primary);
    display: inline-grid;
    place-items: center;
    font-size: 1rem;
}
.nav-links { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.nav-links a,
.button,
button,
input,
select { min-height: 44px; }
.nav-links a,
.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0.72rem 1rem;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.nav-links a:hover,
.button:hover,
button:hover { transform: translateY(-1px); }
.button--primary { background: #169a59; color: #fff; }
.button--primary:hover { background: #11884d; color: #fff; }
.button--ghost {
    background: transparent;
    border-color: rgba(255,255,255,0.12);
    color: var(--text-soft);
}
.button--ghost:hover { border-color: rgba(16,161,91,0.45); color: #fff; }
.button--soft {
    background: rgba(16,161,91,0.12);
    border-color: rgba(16,161,91,0.2);
    color: #7ce5a8;
}
.button--whatsapp {
    min-width: 190px;
    font-size: 1.05rem;
    border-radius: 8px;
}
.hero-panel,
.card,
.faq-card,
.trust-card,
.summary-card,
.contact-card,
.notice-card,
.order-card {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius);
    box-shadow: none;
}
.hero-panel {
    padding: clamp(1.7rem, 3.5vw, 3rem);
    margin-top: 0.6rem;
}
.hero-panel--catalog {
    background: linear-gradient(180deg, rgba(36,54,47,0.96), rgba(41,45,46,0.96));
    text-align: center;
}
.hero-grid,
.content-grid,
.product-grid,
.faq-grid,
.footer-grid,
.trust-strip__grid { display: grid; gap: 1.2rem; }
.hero-grid--catalog { grid-template-columns: 1fr; }
.hero-copy--catalog { max-width: 1020px; margin: 0 auto; }
.hero-copy--catalog .lead { margin-inline: auto; }
.hero-actions,
.hero-actions--centered,
.button-row,
.card-actions,
.quantity-wrap,
.modal__footer,
.cart-tools,
.chip-row { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
.hero-actions--centered { justify-content: center; }
.eyebrow {
    display: inline-block;
    color: #42bf76;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 0.9rem; }
h1 { font-size: clamp(2.45rem, 4vw, 3.4rem); color: var(--primary); }
h2 { font-size: clamp(1.45rem, 2.4vw, 2rem); color: #f3f6f4; }
h3 { font-size: 1.05rem; color: #f5f7f6; }
p { margin: 0 0 1rem; color: var(--text-soft); }
.lead {
    font-size: 1.02rem;
    max-width: 720px;
    color: #e5eeea;
}
.chip-row { display: none; }
.hero-media { display: none; }
.notice-inline {
    margin: 1.8rem auto 0;
    padding: 1rem 1.1rem;
    max-width: 640px;
    background: var(--surface-notice);
    border: 1px solid rgba(16,161,91,0.25);
    border-radius: 6px;
    color: #90e0aa;
}
.notice-inline p { color: #89dca4; }
.notice-inline strong { color: #c3f4d3; }
.card,
.summary-card,
.contact-card,
.trust-card,
.faq-card,
.order-card { padding: 1.15rem; }
.trust-strip { display: none; }
.section { margin-top: 1rem; }
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.section-header p { max-width: 760px; color: var(--text-soft); }
.product-grid { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.product-card {
    overflow: hidden;
    background: var(--surface-card);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
}
.product-card figure { margin: 0; background: #f4f4f4; padding: 0.8rem 0.8rem 0; }
.product-card figure img {
    width: 100%;
    aspect-ratio: 1 / 0.8;
    object-fit: contain;
    background: #f7f7f7;
    border-radius: 0;
    border: 0;
    padding: 0.5rem;
}
.product-card figcaption { display: none; }
.product-card__body { padding: 0.95rem 0.9rem 1rem; }
.product-card__meta,
.mini-meta,
.order-note { font-size: 0.88rem; color: #d8dfdb; }
.price { color: #ffffff; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.8rem; }
.product-card__body > p:not(.product-card__meta):not(.price) {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.quantity-control {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.22rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
}
.quantity-control button {
    width: 40px;
    border: 0;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-radius: 999px;
}
.quantity-control span { min-width: 34px; text-align: center; font-weight: 700; color: #fff; }
.card-actions,
.button-row { justify-content: space-between; }
.button-row .button { flex: 1 1 0; }
.content-grid--detail { grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr); align-items: start; }
.summary-card,
.contact-card,
.order-card,
.trust-card,
.faq-card,
.card {
    background: #2a2f33;
    border-color: rgba(255,255,255,0.05);
}
.summary-card p,
.contact-card p,
.contact-card li,
.card p,
.order-card p,
.faq-card p { color: var(--text-soft); }
.faq-grid details {
    padding: 1rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    background: #2f353a;
}
.faq-grid summary { cursor: pointer; font-weight: 700; color: #f2f6f4; }
.faq-grid summary::-webkit-details-marker { display: none; }
.site-footer {
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    background: #1b2024;
}
.site-footer p,
.site-footer li,
.site-footer a { color: var(--text-muted); }
.site-footer ul { padding-left: 1rem; margin: 0; }
.breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    color: var(--text-muted);
}
.breadcrumbs li::after { content: "/"; margin-left: 0.6rem; }
.breadcrumbs li:last-child::after { display: none; }
.modal-backdrop,
.modal { position: fixed; inset: 0; }
.modal[hidden],
.modal-backdrop[hidden] { display: none; }
.modal-backdrop { background: rgba(0, 0, 0, 0.7); z-index: 60; }
.modal { z-index: 70; display: grid; place-items: center; padding: 1rem; }
.modal__dialog {
    width: min(860px, 100%);
    max-height: calc(100vh - 2rem);
    overflow: auto;
    background: #2a2f33;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
}
.modal__header,
.modal__footer { padding: 1rem 1.25rem; }
.modal__header { border-bottom: 1px solid rgba(255,255,255,0.06); }
.modal__footer { border-top: 1px solid rgba(255,255,255,0.06); justify-content: space-between; }
.modal__body { padding: 1.25rem; }
.modal__close { border: 0; background: transparent; color: #fff; font-size: 1.4rem; }
.form-grid { display: grid; gap: 1rem; }
.field label { display: block; margin-bottom: 0.35rem; font-weight: 700; color: #eef4f0; }
.field input,
.field select {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    background: #1f2428;
    color: #fff;
    padding: 0.8rem 0.95rem;
    font: inherit;
}
.cart-list,
.order-list { display: grid; gap: 0.75rem; }
.cart-item,
.order-item {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    background: #23292d;
}
.detail-page .hero-media,
.detail-page .chip-row { display: flex; }
.detail-page .hero-panel {
    background: linear-gradient(180deg, rgba(36,54,47,0.96), rgba(42,47,51,0.96));
}
.detail-page .hero-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
.detail-page .hero-media {
    display: block;
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 18px;
}
.detail-page .hero-media img,
.detail-page .detail-media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #f7f7f7;
}
.detail-page .detail-media {
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 18px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
@media (max-width: 900px) {
    .site-header__inner { flex-direction: column; align-items: flex-start; }
    .section-header { display: block; }
    .content-grid--detail,
    .detail-page .hero-grid { grid-template-columns: 1fr; }
}

.hero-panel--detail {
    background: linear-gradient(180deg, rgba(36,54,47,0.96), rgba(41,45,46,0.96));
}
.hero-copy--detail {
    max-width: 100%;
}
.hero-copy--detail .eyebrow {
    color: #42bf76;
}
.hero-copy--detail .lead {
    max-width: 620px;
}
.hero-copy--detail .chip-row {
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}
.hero-copy--detail .chip {
    background: rgba(16,161,91,0.14);
    color: #a5efbf;
    border: 1px solid rgba(16,161,91,0.18);
    font-size: 0.84rem;
}
.hero-copy--detail .notice-inline {
    margin-left: 0;
    max-width: 620px;
}
.hero-media--detail {
    background: #f4f4f4;
    padding: 0.85rem;
    border-radius: 14px;
}
.hero-media--detail img {
    border-radius: 8px;
}
.card--detail,
.summary-card--detail {
    background: #4a4a4c;
    border-radius: 14px;
}
.card--detail ul {
    color: #dfe7e3;
}
.summary-card--detail p strong {
    color: #ffffff;
}
.detail-page .section {
    margin-top: 0.85rem;
}
.detail-page .content-grid--detail {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    gap: 1rem;
}
.detail-page .button-row .button,
.detail-page .hero-actions .button {
    flex: 0 0 auto;
}
@media (max-width: 900px) {
    .hero-copy--detail .lead,
    .hero-copy--detail .notice-inline { max-width: none; }
}

.detail-page .container {
    width: min(1380px, calc(100% - 3.5rem));
}
.detail-page .breadcrumbs {
    margin-bottom: 0.7rem;
    font-size: 0.88rem;
}
.detail-page .hero-panel--detail {
    padding: 1.55rem 1.7rem;
    border-radius: 22px;
    margin-top: 0.35rem;
}
.detail-page .hero-grid {
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
}
.detail-page .hero-copy--detail h1 {
    font-size: clamp(2rem, 3vw, 2.7rem);
    margin-bottom: 0.75rem;
}
.detail-page .hero-copy--detail .lead {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 0.85rem;
}
.detail-page .hero-copy--detail .chip-row {
    margin-bottom: 0.85rem;
}
.detail-page .hero-copy--detail .quantity-wrap {
    margin-bottom: 0.9rem;
}
.detail-page .hero-copy--detail .notice-inline {
    margin-top: 0.9rem;
    padding: 0.95rem 1rem;
    border-radius: 8px;
}
.detail-page .hero-copy--detail .hero-actions {
    margin-top: 0.9rem;
}
.detail-page .hero-media--detail {
    max-width: 320px;
    margin-left: auto;
    padding: 0.75rem;
    border-radius: 10px;
    background: #f2f2f2;
}
.detail-page .hero-media--detail picture,
.detail-page .hero-media--detail img {
    border-radius: 6px;
}
.detail-page .content-grid--detail {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 1rem;
    margin-top: 0.2rem;
}
.detail-page .card--detail,
.detail-page .summary-card--detail {
    padding: 1rem 1rem 1.05rem;
    border-radius: 14px;
    background: #4a4a4c;
}
.detail-page .card--detail h2,
.detail-page .summary-card--detail h2 {
    font-size: 1.28rem;
    margin-bottom: 0.8rem;
}
.detail-page .card--detail h3 {
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.55rem;
}
.detail-page .card--detail p,
.detail-page .summary-card--detail p,
.detail-page .card--detail li {
    color: #dbe3df;
}
.detail-page .card--detail ul {
    margin: 0;
    padding-left: 1.1rem;
}
.detail-page .summary-card--detail .button-row {
    margin-top: 0.9rem;
}
.detail-page #catalog {
    margin-top: 0.85rem;
}
@media (max-width: 900px) {
    .detail-page .hero-grid,
    .detail-page .content-grid--detail {
        grid-template-columns: 1fr;
    }
    .detail-page .hero-media--detail {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .container {
        width: calc(100% - 1rem);
    }
    .site-header {
        position: sticky;
    }
    .site-header__inner {
        min-height: auto;
        gap: 0.75rem;
        padding: 0.15rem 0;
    }
    .brand-mark {
        font-size: 0.9rem;
    }
    .nav-links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }
    .nav-links .button,
    .nav-links a,
    .nav-links button {
        width: 100%;
        padding: 0.72rem 0.65rem;
        font-size: 0.92rem;
    }
    .hero-panel,
    .detail-page .hero-panel--detail {
        padding: 1.2rem 1rem;
        border-radius: 18px;
    }
    h1 {
        font-size: clamp(1.9rem, 8vw, 2.45rem);
    }
    .hero-copy--catalog .lead,
    .hero-copy--detail .lead,
    .lead {
        font-size: 0.97rem;
        line-height: 1.5;
    }
    .notice-inline {
        margin-top: 1rem;
        padding: 0.9rem;
    }
    .button--whatsapp {
        width: 100%;
        min-width: 0;
    }
    .section {
        margin-top: 0.75rem;
    }
    .section-header {
        margin-bottom: 0.85rem;
    }
    .section-header h2 {
        margin-bottom: 0.5rem;
    }
    .product-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    .product-card {
        border-radius: 12px;
    }
    .product-card figure {
        padding: 0.6rem 0.6rem 0;
    }
    .product-card figure img {
        aspect-ratio: 1 / 0.76;
        padding: 0.35rem;
    }
    .product-card__body {
        padding: 0.85rem 0.8rem 0.95rem;
    }
    .product-card__body h3 {
        font-size: 0.98rem;
    }
    .product-card__body > p:not(.product-card__meta):not(.price) {
        -webkit-line-clamp: 3;
        font-size: 0.92rem;
    }
    .card-actions,
    .button-row,
    .hero-actions,
    .quantity-wrap,
    .modal__footer,
    .cart-tools {
        flex-direction: column;
        align-items: stretch;
    }
    .button-row .button,
    .hero-actions .button,
    .card-actions .button,
    .quantity-wrap .button,
    .modal__footer .button {
        width: 100%;
        flex: 0 0 auto;
    }
    .quantity-control {
        width: 100%;
        justify-content: space-between;
    }
    .quantity-control button {
        width: 44px;
    }
    .detail-page .hero-grid,
    .detail-page .content-grid--detail {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    .detail-page .hero-media--detail {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    .detail-page .chip-row {
        gap: 0.4rem;
    }
    .detail-page .chip {
        font-size: 0.8rem;
        padding: 0.45rem 0.65rem;
    }
    .summary-card,
    .contact-card,
    .card,
    .order-card,
    .faq-card {
        padding: 0.95rem;
    }
    .modal {
        padding: 0.5rem;
    }
    .modal__dialog {
        width: 100%;
        max-height: calc(100vh - 1rem);
        border-radius: 14px;
    }
    .modal__header,
    .modal__body,
    .modal__footer {
        padding: 0.9rem;
    }
    .cart-item,
    .order-item {
        flex-direction: column;
        align-items: stretch;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}
@media (max-width: 420px) {
    .nav-links {
        grid-template-columns: 1fr;
    }
    .brand-mark {
        font-size: 0.86rem;
    }
    .hero-copy--catalog .eyebrow,
    .hero-copy--detail .eyebrow,
    .eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.13em;
    }
    h1 {
        font-size: 1.78rem;
    }
    h2 {
        font-size: 1.24rem;
    }
    .price {
        font-size: 1.08rem;
    }
    .product-card__meta,
    .mini-meta,
    .order-note,
    p {
        font-size: 0.9rem;
    }
    .breadcrumbs {
        font-size: 0.8rem;
    }
}

html {
    scroll-padding-top: 92px;
}
#catalog,
#faq,
#contact {
    scroll-margin-top: 96px;
}
@media (max-width: 900px) {
    .site-header {
        position: static;
    }
    html {
        scroll-padding-top: 0;
    }
    #catalog,
    #faq,
    #contact {
        scroll-margin-top: 12px;
    }
    .site-header__inner {
        gap: 0.7rem;
        padding: 0.2rem 0 0.45rem;
    }
    .nav-links {
        width: 100%;
        justify-content: flex-start;
    }
    .nav-links .button,
    .nav-links a,
    .nav-links button {
        font-size: 0.88rem;
        padding: 0.68rem 0.75rem;
    }
    .hero-panel--catalog {
        padding: 1.35rem 1.1rem;
    }
    .hero-copy--catalog {
        max-width: 100%;
    }
    .hero-copy--catalog h1 {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }
    .section-header {
        align-items: flex-start;
        gap: 0.55rem;
    }
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
    }
    .product-card__body {
        padding: 0.82rem 0.78rem 0.9rem;
    }
    .product-card__body > p:not(.product-card__meta):not(.price) {
        -webkit-line-clamp: 3;
    }
    .button-row {
        gap: 0.55rem;
    }
    .button-row .button,
    .card-actions .button {
        min-height: 42px;
    }
}
@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .section-header p {
        max-width: none;
    }
}

.nav-toggle {
    display: none;
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: var(--text);
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    content: '';
}
.nav-toggle__bars {
    position: relative;
}
.nav-toggle__bars::before {
    position: absolute;
    top: -6px;
    left: 0;
}
.nav-toggle__bars::after {
    position: absolute;
    top: 6px;
    left: 0;
}
@media (max-width: 900px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .site-header__inner {
        align-items: center;
    }
    .site-header__controls {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
    }
    .nav-links {
        display: none;
        width: 100%;
        margin-top: 0.15rem;
        padding-top: 0.2rem;
    }
    .nav-links.is-open {
        display: grid;
    }
    .nav-toggle[aria-expanded="true"] .nav-toggle__bars {
        transform: rotate(45deg);
    }
    .nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
        transform: translateY(6px) rotate(-90deg);
    }
    .nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
        opacity: 0;
    }
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}
.site-header__controls {
    min-width: 0;
}
.brand-mark {
    min-width: 0;
    flex: 1 1 auto;
}
.brand-mark span:last-child {
    display: inline-block;
    min-width: 0;
}
.nav-toggle {
    flex: 0 0 44px;
}
@media (max-width: 900px) {
    .brand-mark {
        gap: 0.45rem;
        max-width: calc(100% - 56px);
    }
    .brand-mark span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
@media (max-width: 420px) {
    .container {
        width: calc(100% - 0.75rem);
    }
    .site-header__inner {
        padding-inline: 0;
    }
    .site-header__controls {
        gap: 0.5rem;
    }
    .brand-mark {
        max-width: calc(100% - 52px);
        font-size: 0.8rem;
    }
    .brand-mark__badge {
        width: 14px;
        height: 14px;
        font-size: 0.92rem;
    }
    .nav-toggle {
        width: 42px;
        min-width: 42px;
        height: 42px;
    }
    .hero-panel--catalog {
        padding: 1.05rem 0.9rem;
    }
    .hero-copy--catalog h1 {
        font-size: 1.62rem;
        line-height: 1.08;
    }
}

.brand-mark__badge {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
}
.brand-mark__badge img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}
@media (max-width: 420px) {
    .brand-mark__badge {
        width: 18px;
        height: 18px;
    }
}



#catalog .section-header {
    display: block;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 1.2rem;
}
#catalog .section-header h2 {
    margin-bottom: 0;
}
#catalog .section-header p {
    margin: 0.5rem auto 0;
    max-width: 680px;
}
