:root {
    --bg: #f5f6f4;
    --surface: #ffffff;
    --ink: #111315;
    --muted: #66706d;
    --line: #e6ebe7;
    --lime: #b7ee11;
    --lime-dark: #85b800;
    --dark: #151719;
    --radius: 12px;
    --container: 1240px;
    --page-gutter: clamp(18px, 4vw, 32px);
    --shadow: 0 12px 30px rgba(17, 19, 21, .06);
    --shadow-hover: 0 16px 38px rgba(17, 19, 21, .1);
}

* {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

[hidden] {
    display: none !important;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img, svg {
    max-width: 100%;
}

main,
section,
div,
article,
form,
fieldset,
nav,
header,
footer {
    min-width: 0;
}

.topbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 28px;
    padding: 9px 16px;
    color: #fff;
    background: #050505;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.topbar span {
    white-space: nowrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    align-items: center;
    gap: clamp(16px, 2.5vw, 28px);
    padding: 16px max(var(--page-gutter), calc((100vw - var(--container)) / 2));
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.logo {
    display: inline-flex;
    align-items: center;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
}

.logo-image img {
    display: block;
    width: auto;
    height: 36px;
    object-fit: contain;
}

.logo span {
    color: var(--lime-dark);
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 800;
}

.main-nav a {
    padding: 8px 0;
    color: #222;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--lime-dark);
}

.search-form input,
input,
select {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font: inherit;
}

.search-form {
    min-width: 180px;
}

.header-action,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.currency-switcher {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    min-width: 148px;
    padding: 3px;
    background: #eef3ef;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.currency-switcher button {
    min-height: 34px;
    padding: 7px 10px;
    color: #333;
    background: transparent;
    border: 0;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.currency-switcher button.active {
    color: #111;
    background: var(--lime);
}

.currency-switcher button:disabled {
    cursor: not-allowed;
    opacity: .45;
}

.header-action,
.btn-primary {
    color: #111;
    background: var(--lime);
}

.btn-primary:hover {
    background: #c8ff25;
}

.btn-dark {
    color: #fff;
    background: var(--dark);
}

.btn-outline {
    border-color: #111;
    background: transparent;
}

.btn-block {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    font-size: 22px;
}

main {
    overflow: hidden;
}

.hero,
.page-hero,
.section,
.catalog-layout,
.product-detail,
.contact-grid,
.content-section,
.trust-section,
.promo-band,
.benefits,
.site-footer {
    padding-left: max(var(--page-gutter), calc((100vw - var(--container)) / 2));
    padding-right: max(var(--page-gutter), calc((100vw - var(--container)) / 2));
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr);
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
    min-height: clamp(460px, 44vw, 520px);
    padding-top: 42px;
    padding-bottom: 42px;
    background: linear-gradient(120deg, #fff 0%, #f6f8f5 62%, #eef3ee 100%);
}

.hero h1,
.page-hero h1 {
    max-width: 760px;
    margin: 0 0 16px;
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1.04;
}

.hero p,
.page-hero p,
.lead {
    max-width: 620px;
    color: var(--muted);
    font-size: 17px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--lime-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

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

.hero-visual,
.promo-visual,
.product-media,
.detail-media {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7b837f;
    background:
        radial-gradient(circle at 68% 30%, rgba(183, 238, 17, .28), transparent 22%),
        linear-gradient(145deg, #ffffff, #e8ece9);
    border: 1px dashed #cfd7d1;
    border-radius: var(--radius);
    font-weight: 800;
    overflow: hidden;
}

.hero-visual img,
.promo-visual img,
.detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual {
    min-height: 360px;
    aspect-ratio: 16 / 10;
    border-style: solid;
}

.trust-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-top: 22px;
    padding-bottom: 22px;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-section article {
    min-height: 104px;
    padding: 18px;
    background: #f8faf8;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.trust-section strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

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

.section,
.catalog-layout,
.product-detail,
.contact-grid,
.content-section {
    padding-top: 44px;
    padding-bottom: 44px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

h2 {
    margin: 0 0 12px;
    font-size: clamp(25px, 2.6vw, 34px);
    line-height: 1.1;
}

.text-link {
    color: var(--lime-dark);
    font-weight: 900;
}

.category-grid,
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.category-card,
.product-card,
.filters,
.contact-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: none;
}

.category-card {
    min-height: 140px;
    padding: 18px;
}

.category-media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 14px;
    overflow: hidden;
    background: #eef3ef;
    border-radius: 8px;
}

.category-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0;
    background: #eef3ef;
    border-radius: 50%;
    font-weight: 900;
}

.category-media > .category-icon {
    width: 100%;
    height: 100%;
    border-radius: 0;
    font-size: 22px;
}

.category-card small,
.product-body p {
    color: var(--muted);
}

.product-body > p:not(.product-category) {
    display: -webkit-box;
    min-height: 66px;
    margin-bottom: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    border-color: #d7dfd9;
    box-shadow: var(--shadow-hover);
}

.product-media {
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 18px;
    background: #f7f9f7;
    border-width: 0 0 1px;
    border-radius: 0;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.product-category {
    margin: 0 0 8px;
    color: var(--lime-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-body h3 {
    min-height: 44px;
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.25;
}

.price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin: 14px 0;
}

.price-row strong {
    font-size: 18px;
    line-height: 1.2;
}

.price-row > .old-price {
    color: #8a918e;
    text-decoration: line-through;
}

.product-card .btn {
    margin-top: auto;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.2;
    text-transform: none;
}

.promo-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    margin: 24px max(var(--page-gutter), calc((100vw - var(--container)) / 2));
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
    background: #121416;
    border-radius: var(--radius);
}

.promo-band p {
    color: #cbd2cf;
}

.promo-visual {
    min-height: 220px;
    aspect-ratio: 16 / 7;
    color: #dfe6e1;
    background: linear-gradient(145deg, #24282a, #111315);
    border-color: #3b4240;
}

.page-hero {
    padding-top: 60px;
    padding-bottom: 58px;
    background: #fff;
}

.page-hero.small {
    padding-top: 42px;
    padding-bottom: 38px;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
}

.filters {
    align-self: start;
    padding: 20px;
}

.filters form {
    display: grid;
    gap: 16px;
}

.category-filter-form {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(180px, .7fr) auto auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 20px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

label {
    display: grid;
    gap: 7px;
    color: #343938;
    font-size: 14px;
    font-weight: 800;
}

.results-bar {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 8px 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 900;
}

.pagination a.active,
.pagination a:hover {
    background: var(--lime);
    border-color: var(--lime);
}

.empty-state {
    padding: 34px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 40px;
    align-items: start;
}

.detail-media {
    min-height: 560px;
}

.detail-info h1 {
    margin: 0 0 14px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1;
}

.price-row.large strong {
    font-size: 32px;
}

.order-box,
.description {
    display: grid;
    gap: 16px;
    margin-top: 24px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.product-detail-premium {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
    background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.product-gallery {
    min-width: 0;
}

.gallery-main-wrap {
    position: relative;
}

.gallery-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: min(56vw, 560px);
    min-height: 420px;
    padding: clamp(18px, 3vw, 34px);
    color: #7b837f;
    background: #f3f5f2;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: zoom-in;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity .16s ease;
}

.gallery-main span {
    font-weight: 900;
}

.gallery-nav,
.lightbox-nav,
.lightbox-close {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 12px 28px rgba(17, 19, 21, .12);
    cursor: pointer;
}

.gallery-nav {
    top: 50%;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
    font-size: 30px;
}

.gallery-nav-prev {
    left: 14px;
}

.gallery-nav-next {
    right: 14px;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    padding-bottom: 4px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.gallery-thumb {
    flex: 0 0 86px;
    width: 86px;
    height: 86px;
    padding: 6px;
    background: #fff;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
}

.gallery-thumb.active {
    border-color: var(--lime-dark);
    background: #f8ffdf;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.breadcrumb a:hover {
    color: var(--lime-dark);
}

.product-brand {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 12px;
    padding: 7px 10px;
    color: #263000;
    background: #edfac3;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.price-panel {
    margin-top: 22px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.price-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.promo-label {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 9px;
    color: #344500;
    background: #effbc7;
    border: 1px solid #d8f487;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-order-box {
    padding: 22px;
}

.condition-section,
.variant-section {
    display: grid;
    gap: 16px;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.condition-section legend,
.variant-section legend,
.quantity-label {
    color: var(--ink);
    font-size: 15px;
    font-weight: 900;
}

.condition-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.option-card {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    gap: 6px 12px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 76px;
    padding: 14px 16px;
    color: var(--ink);
    background: #fff;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    text-align: left;
    cursor: pointer;
}

.option-card strong {
    grid-column: 2;
    font-size: 15px;
    min-width: 0;
    overflow-wrap: anywhere;
}

.option-card > span:not(.option-radio) {
    grid-column: 2;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
    min-width: 0;
    overflow-wrap: anywhere;
}

.option-card.active {
    background: #fbffe8;
    border-color: var(--dark);
    box-shadow: 0 0 0 3px rgba(183, 238, 17, .28);
}

.option-card.is-unavailable {
    color: #8a918e;
    background: #f2f4f2;
    border-color: #d9dfdb;
    cursor: not-allowed;
    opacity: .82;
}

.option-radio {
    grid-row: 1 / span 2;
    width: 18px;
    height: 18px;
    border: 2px solid #b8c0bc;
    border-radius: 50%;
}

.option-card.active .option-radio {
    border-color: var(--dark);
    box-shadow: inset 0 0 0 4px #fff;
    background: var(--lime);
}

.option-price {
    grid-column: 3;
    grid-row: 1 / span 2;
    justify-self: end;
    color: var(--ink);
    font-style: normal;
    font-weight: 900;
    max-width: 100%;
    font-variant-numeric: tabular-nums;
    overflow-wrap: anywhere;
    text-align: right;
}

.sold-out-label {
    grid-column: 2;
    color: #8a3c00;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.option-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 0;
    padding: 12px 14px;
    color: #4c3500;
    background: #fff6cc;
    border: 1px solid #f0d56a;
    border-radius: var(--radius);
    font-size: 13px;
}

.option-notice > span {
    display: grid;
    place-items: center;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    color: #5b3d00;
    background: #ffe08a;
    border-radius: 50%;
    font-weight: 900;
}

.option-notice strong {
    font-weight: 800;
}

.variant-help {
    margin: -6px 0 0;
    color: #8a5200;
    font-size: 13px;
    font-weight: 800;
}

.variant-group > p {
    margin: 0 0 9px;
    color: #343938;
    font-size: 13px;
    font-weight: 900;
}

.variant-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.variant-options.color-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.color-options .option-card {
    grid-template-columns: 22px 24px minmax(0, 1fr);
}

.color-options .option-card strong,
.color-options .option-card > span:not(.option-radio):not(.color-swatch),
.color-options .sold-out-label,
.color-options .option-price {
    grid-column: 3;
}

.color-options .option-price {
    grid-row: auto;
    justify-self: start;
}

.color-swatch {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 22px;
    height: 22px;
    background: var(--swatch-color);
    border: 1px solid #c8cfca;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .45);
}

.variant-chip {
    font: inherit;
}

.variant-chip small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.quantity-control {
    display: grid;
    grid-template-columns: 54px minmax(64px, 1fr) 54px;
    max-width: 220px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.quantity-control button,
.quantity-control input {
    min-height: 50px;
    border: 0;
    border-radius: 0;
    background: #fff;
    text-align: center;
    font: inherit;
    font-weight: 900;
}

.quantity-control button {
    background: #eef3ef;
    cursor: pointer;
    font-size: 22px;
}

.quantity-control input {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
}

.order-total {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}

.order-total strong {
    color: var(--ink);
}

.whatsapp-cta {
    gap: 10px;
    min-height: 54px;
    font-size: 14px;
}

.whatsapp-cta svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.is-disabled {
    opacity: .58;
    cursor: not-allowed;
}

.product-extra {
    padding-top: 12px;
}

.product-accordions {
    display: grid;
    gap: 12px;
    max-width: 980px;
}

.product-accordions details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.product-accordions summary {
    padding: 18px 20px;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
}

.product-accordions details > div {
    padding: 0 20px 20px;
    color: var(--muted);
}

.spec-list {
    display: grid;
    gap: 10px;
}

.public-spec-table {
    width: 100%;
    border-collapse: collapse;
}

.public-spec-table th,
.public-spec-table td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.public-spec-table thead th {
    color: var(--ink);
}

.public-spec-table tbody th {
    width: 36%;
    color: var(--ink);
    font-weight: 900;
}

.spec-list p {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.spec-list strong {
    color: var(--ink);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 72px clamp(16px, 4vw, 52px);
    background: rgba(8, 10, 10, .86);
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox img {
    width: min(100%, 980px);
    height: min(78vh, 760px);
    object-fit: contain;
}

.lightbox-close {
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    font-size: 28px;
}

.lightbox-nav {
    top: 50%;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    font-size: 34px;
}

.lightbox-prev {
    left: 22px;
}

.lightbox-next {
    right: 22px;
}

.lightbox-open {
    overflow: hidden;
}

.mobile-buy-bar {
    display: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(133, 184, 0, .55);
    outline-offset: 3px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.contact-card {
    padding: 28px;
}

.contact-card.dark {
    color: #fff;
    background: var(--dark);
}

.contact-card a {
    display: table;
    margin-top: 10px;
    color: var(--lime);
    font-weight: 900;
}

.social-link {
    align-items: center;
    gap: 8px;
}

.footer-grid .social-link,
.contact-card .social-link {
    display: flex;
}

.social-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex: 0 0 auto;
}

.content-section {
    max-width: 900px;
}

.site-footer {
    padding-top: 42px;
    color: #d8ddda;
    background: #101214;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 26px;
    padding-bottom: 34px;
}

.footer-grid a,
.footer-grid p {
    display: block;
    color: #b8c0bc;
    margin: 8px 0;
}

.footer-grid h3 {
    margin-top: 0;
    color: #fff;
}

.footer-logo {
    color: #fff;
}

.footer-logo img {
    height: 32px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid #2a3030;
    color: #9aa39f;
    font-size: 13px;
}

@media (min-width: 981px) and (max-width: 1180px) {
    .product-grid,
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto auto;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
        justify-self: end;
    }

    .main-nav,
    .search-form,
    .header-action {
        display: none;
    }

    .site-header.nav-open .main-nav,
    .site-header.nav-open .search-form,
    .site-header.nav-open .header-action {
        display: flex;
        grid-column: 1 / -1;
    }

    .site-header.nav-open .main-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .site-header.nav-open .search-form,
    .site-header.nav-open .header-action {
        width: 100%;
    }

    .currency-switcher {
        justify-self: end;
        min-width: 138px;
    }

    .hero,
    .promo-band,
    .product-detail,
    .catalog-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .category-grid,
    .product-grid,
    .footer-grid,
    .trust-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail-premium {
        gap: 30px;
    }

    .gallery-main {
        height: clamp(380px, 58vw, 520px);
        min-height: 360px;
    }
}

@media (max-width: 767px) {
    .topbar {
        gap: 8px;
        padding: 5px 6px;
        font-size: 9px;
        text-align: center;
        line-height: 1.2;
    }

    .topbar span {
        white-space: nowrap;
    }

    .topbar span:nth-child(n+3) {
        display: none;
    }

    .site-header {
        grid-template-columns: 1fr auto;
        gap: 4px 10px;
        align-items: center;
        min-height: 64px;
        padding: 7px 16px 7px;
    }

    .logo {
        font-size: 24px;
        line-height: 1;
    }

    .logo-image img {
        height: 31px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 23px;
    }

    .currency-switcher {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(174px, 100%);
        min-width: 0;
        margin-top: 0;
    }

    .currency-switcher button {
        min-height: 32px;
        padding: 6px 8px;
    }

    .site-header.nav-open .main-nav,
    .site-header.nav-open .search-form,
    .site-header.nav-open .header-action {
        grid-column: 1 / -1;
    }

    .hero {
        min-height: auto;
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 36px;
        line-height: 1.08;
    }

    .hero-visual {
        min-height: 260px;
    }

    .product-detail-premium {
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 26px;
        padding-bottom: 28px;
    }

    .gallery-main {
        height: clamp(320px, 92vw, 420px);
        min-height: 320px;
        padding: 14px;
    }

    .gallery-nav {
        width: 38px;
        height: 38px;
        font-size: 26px;
    }

    .gallery-nav-prev {
        left: 8px;
    }

    .gallery-nav-next {
        right: 8px;
    }

    .gallery-thumbs {
        margin-right: -16px;
        padding-right: 16px;
    }

    .gallery-thumb {
        flex-basis: 74px;
        width: 74px;
        height: 74px;
    }

    .detail-info h1 {
        font-size: 34px;
        line-height: 1.05;
    }

    .price-row {
        flex-wrap: wrap;
    }

    .price-row.large strong {
        font-size: 28px;
    }

    .product-order-box,
    .price-panel {
        padding: 16px;
    }

    .variant-group > p,
    .condition-section legend,
    .variant-section legend {
        margin: 24px 0 12px;
        font-size: 15px;
        line-height: 1.25;
    }

    .condition-section legend {
        margin-top: 0;
    }

    .condition-options,
    .variant-options {
        gap: 12px;
    }

    .option-card {
        grid-template-columns: 20px minmax(0, 1fr) minmax(74px, auto);
        gap: 6px 10px;
        min-height: 70px;
        padding: 14px;
    }

    .option-radio {
        width: 18px;
        height: 18px;
    }

    .option-card strong {
        font-size: 15px;
        line-height: 1.25;
    }

    .option-card > span:not(.option-radio):not(.color-swatch) {
        font-size: 13px;
    }

    .option-price {
        grid-column: 3;
        grid-row: 1 / span 2;
        justify-self: end;
        align-self: center;
        font-size: clamp(13px, 3.55vw, 15px);
        line-height: 1.2;
    }

    .color-options .option-card {
        grid-template-columns: 18px 22px minmax(0, 1fr);
        gap: 7px 8px;
        min-height: 118px;
        padding: 14px;
    }

    .color-options .option-card strong {
        grid-column: 3;
        align-self: center;
    }

    .color-options .sold-out-label,
    .color-options .option-price {
        grid-column: 1 / -1;
        grid-row: auto;
        justify-self: start;
        text-align: left;
    }

    .color-options .option-price {
        font-size: clamp(13px, 3.45vw, 14px);
    }

    .sold-out-label {
        font-size: 11px;
        line-height: 1.15;
    }

    .color-swatch {
        width: 20px;
        height: 20px;
    }

    .public-spec-table,
    .public-spec-table thead,
    .public-spec-table tbody,
    .public-spec-table tr,
    .public-spec-table th,
    .public-spec-table td {
        display: block;
        width: 100%;
    }

    .public-spec-table thead {
        display: none;
    }

    .public-spec-table tbody th {
        padding-bottom: 2px;
        border-bottom: 0;
    }

    .public-spec-table td {
        padding-top: 2px;
    }

    .quantity-control {
        grid-template-columns: 58px minmax(76px, 1fr) 58px;
        max-width: none;
    }

    .whatsapp-cta {
        min-height: 58px;
    }

    .product-extra {
        padding-bottom: 16px;
    }

    .related-products {
        padding-bottom: 128px;
    }

    .site-footer {
        padding-bottom: 120px;
    }

    .mobile-buy-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 20;
        display: none;
        grid-template-columns: minmax(0, .82fr) minmax(138px, 1fr);
        gap: 8px;
        align-items: center;
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, .96);
        border-top: 1px solid var(--line);
        box-shadow: 0 -16px 34px rgba(17, 19, 21, .12);
        backdrop-filter: blur(14px);
    }

    .mobile-buy-bar.is-visible {
        display: grid;
    }

    .mobile-buy-bar span {
        display: block;
        color: var(--muted);
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .mobile-buy-bar strong {
        display: block;
        font-size: clamp(15px, 4vw, 18px);
        line-height: 1.1;
        overflow-wrap: anywhere;
    }

    .mobile-buy-bar .btn {
        min-height: 46px;
        padding: 9px 10px;
        font-size: clamp(11px, 3.2vw, 13px);
        line-height: 1.15;
        white-space: normal;
        text-align: center;
    }

    .gallery-lightbox {
        padding: 72px 14px;
    }

    .lightbox-nav {
        top: auto;
        bottom: 22px;
        transform: none;
    }

    .category-grid,
    .product-grid,
    .footer-grid,
    .trust-section {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .footer-bottom,
    .results-bar {
        align-items: start;
        flex-direction: column;
    }

    .category-filter-form {
        grid-template-columns: 1fr;
    }

    .promo-band {
        margin-left: 16px;
        margin-right: 16px;
    }
}

@media (max-width: 389px) {
    .variant-options.color-options {
        grid-template-columns: 1fr;
    }

    .color-options .option-card {
        min-height: 86px;
    }
}

@media (min-width: 390px) and (max-width: 767px) {
    .variant-options.color-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 359px) {
    .site-header {
        padding-left: 14px;
        padding-right: 14px;
    }

    .product-detail-premium,
    .hero,
    .page-hero,
    .section,
    .catalog-layout,
    .contact-grid,
    .content-section,
    .benefits,
    .site-footer {
        padding-left: 14px;
        padding-right: 14px;
    }

    .option-card {
        grid-template-columns: 20px minmax(0, 1fr);
    }

    .option-price {
        grid-column: 2;
        grid-row: auto;
        justify-self: start;
        text-align: left;
    }

    .mobile-buy-bar {
        padding-left: 10px;
        padding-right: 10px;
    }
}
