:root {
    --ink: #17211d;
    --muted: #66736e;
    --line: #dfe6e2;
    --paper: #f6f8f5;
    --white: #ffffff;
    --green: #126b52;
    --green-dark: #0b4938;
    --mint: #dff4ea;
    --orange: #f08b44;
    --shadow: 0 18px 50px rgba(25, 48, 40, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; padding: 0; margin: -1px; border: 0; clip: rect(0, 0, 0, 0); white-space: nowrap; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    /* Inter remains loaded as the original-font fallback for an easy rollback. */
    font-family: Manrope, Inter, Arial, sans-serif;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
    position: sticky; top: 0; z-index: 20;
    border-bottom: 1px solid rgba(223, 230, 226, .8);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
}
.nav { min-height: 74px; display: flex; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; color: var(--green-dark); font-weight: 800; letter-spacing: -.6px; }
.logo-mark {
    width: 38px; height: 38px; display: grid; place-items: center;
    color: white; border-radius: 13px; background: var(--green);
}
.nav-menu { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav-links { display: flex; gap: 22px; color: #485650; font-size: 14px; font-weight: 700; }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.market-switchers { display: flex; gap: 6px; }
.market-switchers label { position: relative; display: inline-flex; align-items: center; }
.market-switchers select { max-width: 92px; min-height: 34px; padding: 0 6px; border: 1px solid var(--line); border-radius: 8px; color: var(--green-dark); background: #fff; font-size: 11px; font-weight: 800; }
.language-switcher { width: 36px; height: 36px; cursor: pointer; }
.language-icon {
    display: grid; width: 36px; height: 36px; place-items: center;
    border: 1px solid var(--line); border-radius: 50%; color: var(--green-dark); background: #fff;
}
.language-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.language-select {
    position: absolute; inset: 0; width: 100%; height: 100%; max-width: none;
    opacity: 0; cursor: pointer;
}
.site-logo-image { width: 38px; height: 38px; border-radius: 11px; object-fit: contain; }
.nav-toggle {
    display: none; width: 42px; height: 42px; place-items: center;
    border: 1px solid var(--line); border-radius: 12px; color: var(--green-dark); background: #fff; cursor: pointer;
}
.nav-toggle__bar {
    display: block; width: 18px; height: 2px; margin: 3px 0;
    border-radius: 999px; background: currentColor; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { transform: translateY(5px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(4) { transform: translateY(-5px) rotate(-45deg); }
.nav-account { color: var(--green); font-size: 13px; font-weight: 900; white-space: nowrap; }
.plain-button { padding: 0; border: 0; background: transparent; cursor: pointer; }
.nav-cta, .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 44px; padding: 0 18px; border: 1px solid transparent;
    border-radius: 999px; cursor: pointer; font-weight: 800; transition: .2s ease;
}
.nav-cta, .btn-primary { color: #fff; background: var(--green); }
.nav-cta:hover, .btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn:disabled { cursor: not-allowed; opacity: .62; transform: none; }
.btn-outline { color: var(--green); border-color: var(--line); background: #fff; }
.btn-outline:hover { border-color: var(--green); background: var(--mint); }
.hero { padding: 76px 0 46px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow { color: var(--green); font-size: 12px; font-weight: 900; letter-spacing: 1.8px; text-transform: uppercase; }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -.8px; }
h1 { margin-top: 14px; font-size: clamp(38px, 5vw, 56px); letter-spacing: -2.5px; }
h2 { font-size: clamp(30px, 4vw, 42px); }
p { margin: 0; color: var(--muted); }
.hero-copy p { max-width: 620px; margin-top: 20px; font-size: 18px; }
.hero-actions, .section-heading, .card-actions, .filter-bar { display: flex; align-items: center; gap: 12px; }
.hero-actions { margin-top: 28px; flex-wrap: wrap; }
.hero-card {
    position: relative; min-height: 440px; overflow: hidden; padding: 34px;
    border-radius: 32px; background: linear-gradient(145deg, #d8f2e6, #f2ead8);
}
.hero-card img {
    position: absolute; right: -24px; bottom: -42px; width: 70%; height: 92%;
    border-radius: 28px; object-fit: cover; box-shadow: var(--shadow); transform: rotate(-7deg);
}
.hero-note {
    position: relative; z-index: 1; width: 175px; padding: 18px;
    border: 1px solid rgba(255,255,255,.75); border-radius: 18px; background: rgba(255,255,255,.78);
}
.hero-note strong { display: block; margin-bottom: 4px; font-size: 24px; }
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 36px; border-top: 1px solid var(--line); }
.trust-item { padding: 18px 8px 0 0; color: var(--muted); font-size: 13px; font-weight: 700; }
.trust-item strong { display: block; color: var(--ink); font-size: 16px; }
.section { padding: 68px 0; }
.section-soft { background: #eef4ef; }
.section-heading { justify-content: space-between; margin-bottom: 24px; }
.section-heading p { max-width: 560px; margin-top: 10px; }
.text-link { color: var(--green); font-size: 14px; font-weight: 900; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card {
    position: relative; display: flex; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; flex-direction: column;
    background: var(--white); box-shadow: 0 8px 30px rgba(25, 48, 40, .035); transition: .2s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-image {
    position: relative; display: block; height: 205px; flex: 0 0 auto; overflow: hidden;
    background: linear-gradient(145deg, #e8efeb, #f5f1e9);
}
.product-image::after {
    position: absolute; inset: auto 0 0; height: 42%; content: "";
    background: linear-gradient(to top, rgba(8, 44, 34, .38), transparent);
}
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product-card:hover .product-image img { transform: scale(1.045); }
.favorite-form { margin: 0; }
.favorite-button {
    position: absolute; top: 12px; right: 12px; z-index: 3; display: grid; width: 34px; height: 34px; place-items: center;
    border: 1px solid rgba(255, 255, 255, .7); border-radius: 50%; color: #71807a; background: rgba(255, 255, 255, .9);
    box-shadow: 0 4px 14px rgba(25, 48, 40, .1); cursor: pointer; font-size: 17px; transition: .2s ease;
}
.favorite-button:hover, .favorite-button.active { color: #c94f5a; background: #fff; transform: scale(1.06); }
.badge {
    position: absolute; top: 13px; left: 13px; z-index: 1; padding: 5px 9px; border-radius: 999px;
    color: var(--green-dark); background: var(--mint); font-size: 10px; font-weight: 900; letter-spacing: .6px; text-transform: uppercase;
}
.product-type {
    position: absolute; right: 13px; bottom: 11px; z-index: 1; padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, .45); border-radius: 999px; color: #fff;
    background: rgba(8, 44, 34, .34); font-size: 10px; font-weight: 900; letter-spacing: .7px; text-transform: uppercase;
}
.product-body { display: flex; padding: 17px; flex: 1; flex-direction: column; }
.product-meta { display: flex; min-width: 0; align-items: center; justify-content: space-between; gap: 8px; }
.product-brand { color: var(--green); font-size: 11px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.product-brand span { color: #8b9893; }
.launch-year {
    flex: 0 0 auto; padding: 3px 7px; border-radius: 999px; color: var(--green-dark);
    background: #eef5f1; font-size: 10px; font-weight: 900;
}
.product-card__heading { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 8px; }
.product-card h3 { min-width: 0; flex: 1; font-size: 18px; }
.product-card h3 a:hover { color: var(--green); }
.rating { margin-top: 9px; color: #dc7b34; font-size: 13px; font-weight: 800; }
.rating span { color: var(--muted); font-weight: 600; }
.feature-tags { display: grid; min-height: 86px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px; margin-top: 11px; }
.feature-tag {
    display: flex; min-width: 0; align-items: center; gap: 6px; padding: 3px 7px 3px 3px;
    border: 1px solid #e7efeb; border-radius: 999px; color: #53625d; background: #f7faf8; line-height: 1.15;
}
.spec-icon {
    display: grid; width: 27px; height: 27px; flex: 0 0 27px; place-items: center;
    border-radius: 50%; color: var(--green); background: #e1f3eb;
}
.spec-icon svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.feature-tag__copy { min-width: 0; }
.feature-tags b { display: block; overflow: hidden; color: var(--green-dark); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.product-card__footer { margin-top: auto; }
.price { margin-top: 10px; color: var(--green-dark); font-size: 21px; font-weight: 900; }
.product-card__heading .price { margin-top: 0; flex: 0 0 auto; font-size: 18px; line-height: 1.12; text-align: right; white-space: nowrap; }
.old-price { margin-left: 6px; color: #98a19d; font-size: 13px; text-decoration: line-through; }
.card-actions { display: grid; grid-template-columns: 1fr auto; margin-top: 13px; }
.card-actions .btn { min-height: 38px; padding: 0 12px; font-size: 12px; }
.feature-grid, .guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
    padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: white;
}
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--green); background: var(--mint); font-weight: 900; }
.feature h3 { margin: 16px 0 7px; font-size: 19px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial-card { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.testimonial-card h3 { margin-top: 12px; font-size: 18px; }
.testimonial-card blockquote { margin-top: 10px; color: #53615c; font-size: 15px; line-height: 1.7; }
.testimonial-card p { margin-top: 16px; color: var(--muted); font-size: 12px; }
.testimonial-card a { color: var(--green); font-weight: 800; }
.faq-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; align-items: start; }
.faq-layout h2 { margin-top: 7px; font-size: clamp(28px, 3.4vw, 40px); }
.faq-layout > div:first-child p { margin-top: 12px; }
.faq-layout .btn { margin-top: 20px; }
.faq-list { display: grid; gap: 10px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.faq-item summary { padding: 16px 42px 16px 16px; color: var(--green-dark); cursor: pointer; font-size: 15px; font-weight: 900; }
.faq-item p { padding: 0 16px 16px; font-size: 14px; }
.page-hero { padding: 60px 0 28px; }
.page-hero h1 { max-width: 760px; font-size: clamp(32px, 4.2vw, 50px); }
.page-hero p { max-width: 650px; margin-top: 12px; font-size: 17px; }
.catalog-heading { padding: 44px 0 24px; background: linear-gradient(135deg, #edf7f1, #f8f6ec); }
.catalog-heading h1 { max-width: 760px; font-size: clamp(32px, 4.2vw, 50px); }
.catalog-heading p { margin-top: 10px; }
.catalog-section { padding: 30px 0 72px; }
.catalog-layout { display: grid; grid-template-columns: 245px minmax(0, 1fr); gap: 24px; align-items: start; }
.filter-sidebar {
    position: sticky; top: 94px; max-height: calc(100vh - 118px); overflow: hidden;
    border: 1px solid var(--line); border-radius: 18px; background: #fff;
}
.filter-sidebar form { display: flex; max-height: inherit; flex-direction: column; }
.filter-sidebar__header { display: flex; align-items: center; justify-content: space-between; padding: 17px; border-bottom: 1px solid var(--line); }
.filter-sidebar__options { min-height: 0; overflow-y: auto; overscroll-behavior: contain; }
.filter-sidebar h2 { margin-top: 2px; font-size: 24px; }
.filter-group { padding: 14px 15px; border-top: 1px solid var(--line); }
.filter-group[hidden], .filter-check[hidden] { display: none; }
.filter-group h3 { margin-bottom: 9px; color: var(--green-dark); font-size: 13px; letter-spacing: .3px; }
.filter-check { display: flex; align-items: center; gap: 8px; padding: 3px 0; color: #53615c; font-size: 13px; cursor: pointer; }
.filter-check input { accent-color: var(--green); }
.filter-check small { margin-left: 2px; color: #9ba6a2; }
.filter-more { padding: 2px 0; margin-top: 5px; border: 0; color: var(--green); background: transparent; cursor: pointer; font-size: 11px; font-weight: 900; }
.filter-more:hover { color: var(--green-dark); }
.price-filter { --price-min: 0%; --price-max: 100%; }
.price-filter__values { display: flex; align-items: center; justify-content: space-between; gap: 7px; color: var(--green-dark); font-size: 12px; font-weight: 900; }
.price-filter__values span { color: var(--muted); font-size: 10px; font-weight: 700; }
.price-filter__sliders { position: relative; height: 24px; margin-top: 6px; }
.price-filter__rail, .price-filter__progress { position: absolute; top: 10px; right: 0; left: 0; height: 4px; border-radius: 999px; }
.price-filter__rail { background: #dfe8e4; }
.price-filter__progress { right: calc(100% - var(--price-max)); left: var(--price-min); background: var(--green); }
.price-filter input[type="range"] { position: absolute; inset: 0; width: 100%; height: 24px; margin: 0; appearance: none; pointer-events: none; background: transparent; }
.price-filter input[type="range"]::-webkit-slider-thumb { width: 16px; height: 16px; appearance: none; border: 2px solid #fff; border-radius: 50%; background: var(--green); box-shadow: 0 1px 5px rgba(11, 73, 56, .35); cursor: pointer; pointer-events: auto; }
.price-filter input[type="range"]::-moz-range-thumb { width: 13px; height: 13px; border: 2px solid #fff; border-radius: 50%; background: var(--green); box-shadow: 0 1px 5px rgba(11, 73, 56, .35); cursor: pointer; pointer-events: auto; }
.price-filter input[type="range"]::-moz-range-track { background: transparent; }
.catalog-toolbar {
    display: flex; min-height: 58px; align-items: center; justify-content: space-between; gap: 14px;
    padding: 10px 14px; margin-bottom: 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff;
}
.catalog-toolbar__search { width: min(100%, 480px); }
.catalog-search { display: block; }
.catalog-search input { width: 100%; min-height: 40px; padding: 0 11px; border: 1px solid var(--line); border-radius: 9px; outline: none; }
.catalog-search input:focus { border-color: var(--green); }
.catalog-result-count { margin-top: 3px; font-size: 11px; }
.catalog-sort { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 700; }
.catalog-toolbar select { min-height: 36px; padding: 0 8px; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); background: #fff; }
.catalog-product-grid { grid-template-columns: repeat(3, 1fr); }
.catalog-loader { padding: 16px; color: var(--green); font-size: 13px; font-weight: 800; text-align: center; }
.filter-bar { padding: 16px; margin-bottom: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; flex-wrap: wrap; }
.filter-bar input, .filter-bar select, .contact-form input, .contact-form textarea {
    min-height: 46px; padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; outline: none; background: #fff;
}
.filter-bar input { min-width: 260px; flex: 1; }
.filter-bar input:focus, .filter-bar select:focus, .contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); }
.empty { padding: 36px; border: 1px dashed #c8d4cf; border-radius: 18px; color: var(--muted); text-align: center; background: #fff; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 10fr) minmax(180px, 2fr); gap: 22px; align-items: start; }
.detail-layout.without-perfect-match { grid-template-columns: 1fr; }
.detail-main { min-width: 0; }
.detail-grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 5fr); gap: 22px; align-items: start; }
.detail-image {
    display: grid; width: 100%; overflow: hidden; place-items: center; aspect-ratio: 3 / 4;
    border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(145deg, #e8efeb, #f5f1e9);
}
.detail-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.detail-copy h1 { font-size: clamp(32px, 4.2vw, 50px); }
.detail-purchase-meta { display: flex; align-items: center; gap: 12px; margin-top: 15px; flex-wrap: wrap; }
.detail-purchase-meta .price { margin-top: 0; font-size: 28px; line-height: 1; }
.price-fallback { color: var(--muted); font-size: 11px; }
.detail-copy .hero-actions { margin-top: 22px; }
.perfect-match {
    position: sticky; top: 94px; padding: 13px;
    border: 1px solid var(--line); border-radius: 18px; background: #fff;
}
.perfect-match__list { display: grid; gap: 9px; margin-top: 8px; }
.perfect-match__card {
    display: flex; align-items: flex-start; gap: 8px; padding: 8px;
    border: 1px solid var(--line); border-radius: 13px; background: var(--soft); transition: .2s ease;
}
.perfect-match__card:hover { border-color: #bcd8cc; box-shadow: 0 10px 24px rgba(25, 48, 40, .07); transform: translateY(-2px); }
.perfect-match__card img { width: 52px; height: 68px; flex: 0 0 52px; border-radius: 10px; object-fit: cover; }
.perfect-match__card h3 { font-size: 13px; line-height: 1.15; }
.perfect-match__tags { display: flex; gap: 4px; margin-top: 7px; flex-wrap: nowrap; }
.perfect-match__tags span { display: flex; align-items: center; gap: 3px; padding: 3px 5px; border-radius: 999px; color: #52605b; background: #eef5f1; font-size: 9px; white-space: nowrap; }
.perfect-match__tags svg { width: 11px; height: 11px; flex: 0 0 11px; fill: none; stroke: var(--green-dark); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.detail-full { padding: 22px; margin-top: 22px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.detail-section-heading h2 { margin-top: 4px; font-size: 28px; }
.detail-description { max-width: 920px; margin-top: 12px; font-size: 15px; }
.stock { display: inline-block; padding: 4px 9px; border-radius: 999px; color: var(--green-dark); background: var(--mint); font-size: 11px; font-weight: 900; }
.stock.out { color: #8b3d26; background: #f9ddd4; }
.specs { margin-top: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.spec-row { display: grid; grid-template-columns: 30% 70%; padding: 9px 13px; border-top: 1px solid var(--line); font-size: 14px; }
.spec-row:first-child { border-top: 0; }
.spec-row strong { color: #52605b; }
.compare-table { width: 100%; overflow: hidden; border-collapse: collapse; border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.compare-table th, .compare-table td { padding: 11px 13px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare-table th { width: 180px; color: var(--green-dark); background: #eef6f1; }
.compare-product__media {
    display: grid; width: min(100%, 170px); overflow: hidden; place-items: center; aspect-ratio: 4 / 3;
    border: 1px solid #e5ede9; border-radius: 13px; background: linear-gradient(145deg, #e8efeb, #f5f1e9);
}
.compare-product__media img { width: 100%; height: 100%; object-fit: cover; }
.compare-product h3 { margin-top: 8px; font-size: 17px; }
.compare-picker { padding: 20px; margin-bottom: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.compare-picker__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 15px; }
.compare-picker h2 { font-size: 24px; }
.compare-picker p { margin-top: 5px; font-size: 13px; }
.compare-picker__status { padding: 7px 11px; border-radius: 999px; color: var(--green-dark); background: var(--mint); font-size: 12px; font-weight: 900; white-space: nowrap; }
.compare-picker__status.error { color: #8b3d26; background: #f9ddd4; }
.compare-slots { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.compare-slot { position: relative; min-height: 196px; padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: #fbfcfb; }
.compare-slot.is-filled { display: flex; align-items: center; gap: 13px; background: #f4faf7; }
.compare-slot__number { position: absolute; top: 10px; left: 12px; color: #b2bfba; font-size: 11px; font-weight: 900; letter-spacing: 1px; }
.compare-slot__remove {
    position: absolute; top: 9px; right: 10px; display: grid; width: 25px; height: 25px; place-items: center;
    border: 1px solid var(--line); border-radius: 50%; color: #74817c; background: #fff; cursor: pointer; font-size: 18px; line-height: 1;
}
.compare-slot__remove:hover { color: #8b3d26; border-color: #eac0b4; background: #fff7f4; }
.compare-slot__media {
    display: grid; width: min(32%, 84px); overflow: hidden; flex: 0 1 84px; place-items: center; aspect-ratio: 4 / 3;
    border: 1px solid #e5ede9; border-radius: 10px; background: linear-gradient(145deg, #e8efeb, #f5f1e9);
}
.compare-slot__media img { width: 100%; height: 100%; object-fit: cover; }
.compare-slot h3 { margin-top: 7px; font-size: 17px; }
.compare-slot p { margin-top: 5px; font-size: 12px; }
.compare-slot__empty-copy { padding-top: 19px; }
.compare-search { position: relative; margin-top: 14px; }
.compare-search__input { width: 100%; min-height: 43px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; outline: none; background: #fff; font-size: 13px; }
.compare-search__input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(18, 107, 82, .1); }
.compare-suggestions {
    position: absolute; top: calc(100% + 6px); left: 0; z-index: 5; width: min(340px, 92vw); overflow: hidden;
    border: 1px solid var(--line); border-radius: 13px; background: #fff; box-shadow: var(--shadow);
}
.compare-suggestion { display: flex; width: 100%; align-items: center; gap: 9px; padding: 9px; border: 0; border-top: 1px solid var(--line); background: #fff; cursor: pointer; text-align: left; }
.compare-suggestion:first-child { border-top: 0; }
.compare-suggestion:hover { background: #f2faf6; }
.compare-suggestion img { width: 35px; height: 40px; flex: 0 0 35px; border-radius: 7px; object-fit: cover; }
.compare-suggestion strong, .compare-suggestion small { display: block; }
.compare-suggestion strong { color: var(--green-dark); font-size: 12px; }
.compare-suggestion small { color: var(--muted); font-size: 10px; }
.compare-suggestions__empty { padding: 12px; font-size: 12px; }
.compare-picker__actions { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.guide-card { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.guide-number { color: var(--orange); font-size: 13px; font-weight: 900; letter-spacing: 1.4px; text-transform: uppercase; }
.guide-card h3 { margin: 12px 0 7px; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; }
.contact-form { display: grid; gap: 14px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.contact-form textarea { min-height: 150px; padding-top: 12px; resize: vertical; }
.alert { padding: 12px 14px; margin-bottom: 16px; border-radius: 12px; color: var(--green-dark); background: var(--mint); }
.alert-error { color: #8b3d26; background: #f9ddd4; }
.checkout-hero { background: linear-gradient(135deg, #edf7f1, #f8f6ec); }
.checkout-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 24px; align-items: start; }
.checkout-summary { position: sticky; top: 94px; display: grid; gap: 16px; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.checkout-summary img { width: 100%; aspect-ratio: 4 / 3; border-radius: 14px; object-fit: cover; background: #e8efeb; }
.checkout-summary h2 { margin-top: 6px; font-size: 26px; }
.checkout-price-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 12px; margin-top: 12px; border-top: 1px solid var(--line); }
.checkout-price-row span { color: var(--muted); font-size: 13px; font-weight: 800; }
.checkout-price-row strong { color: var(--green-dark); font-size: 19px; line-height: 1.1; text-align: right; }
.checkout-total strong { color: var(--green); font-size: 24px; }
.checkout-fields { display: grid; grid-template-columns: 1fr 1fr 140px; gap: 12px; }
.checkout-field { display: grid; gap: 6px; }
.checkout-field span { color: var(--green-dark); font-size: 12px; font-weight: 900; }
.payment-options { display: grid; gap: 10px; }
.payment-options h2 { font-size: 22px; }
.payment-option {
    display: flex; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 14px;
    background: #f9fbf9; cursor: pointer;
}
.payment-option input { margin-top: 4px; accent-color: var(--green); }
.payment-option span { display: grid; gap: 4px; }
.payment-option small { color: var(--muted); white-space: pre-line; }
.review-section { border-top: 1px solid var(--line); background: #eef4ef; }
.review-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 30px; align-items: start; }
.review-intro { margin: 10px 0 18px; }
.review-form { display: grid; gap: 10px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.review-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.review-form input, .review-form textarea, .review-form select {
    min-height: 44px; width: 100%; padding: 0 12px; border: 1px solid var(--line); border-radius: 10px; outline: none; background: #fff;
}
.review-form textarea { min-height: 110px; padding-top: 11px; resize: vertical; }
.review-form input:focus, .review-form textarea:focus, .review-form select:focus { border-color: var(--green); }
.review-rating-picker { padding: 13px; border: 1px solid var(--line); border-radius: 12px; background: #fbfcfb; }
.review-rating-picker strong, .rating-choice { display: block; }
.review-rating-picker strong { color: var(--green-dark); font-size: 13px; }
.star-picker { display: flex; gap: 5px; margin-top: 6px; }
.star-picker button { padding: 0; border: 0; color: #cbd3cf; background: transparent; cursor: pointer; font-size: 30px; line-height: 1; transition: .15s ease; }
.star-picker button:hover, .star-picker button.active { color: #f2a134; transform: scale(1.06); }
.rating-choice { margin-top: 6px; color: var(--muted); font-size: 11px; font-weight: 700; }
.review-list { display: grid; gap: 12px; }
.review-card { padding: 17px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.review-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.review-card time { color: var(--muted); font-size: 11px; }
.review-card h3 { margin-top: 10px; font-size: 17px; }
.review-card p { margin-top: 6px; font-size: 14px; }
.site-footer { padding: 36px 0; margin-top: 60px; color: #bdd1c9; background: var(--green-dark); }
.footer-grid { display: flex; justify-content: space-between; gap: 28px; }
.site-footer .logo { color: #fff; }
.site-footer p { color: #bdd1c9; font-size: 13px; }
.footer-meta { display: grid; gap: 12px; text-align: right; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px 16px; }
.footer-links a { color: #fff; font-size: 13px; font-weight: 700; }
.footer-links a:hover { color: var(--orange); }
.policy-content { max-width: 850px; }
.policy-updated { margin-bottom: 24px; color: var(--muted); font-size: 13px; font-weight: 700; }
.policy-section { padding: 21px 0; border-top: 1px solid var(--line); }
.policy-section h2 { font-size: 22px; }
.policy-section p { margin-top: 8px; line-height: 1.8; }
.pagination { display: flex; gap: 7px; margin-top: 25px; }
.pagination a, .pagination span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.modal-open { overflow: hidden; }
.auth-modal { position: fixed; inset: 0; z-index: 60; display: grid; padding: 20px; place-items: center; }
.auth-modal[hidden] { display: none; }
.auth-modal__backdrop { position: absolute; inset: 0; background: rgba(11, 38, 30, .52); backdrop-filter: blur(5px); }
.auth-modal__card {
    position: relative; z-index: 1; width: min(100%, 440px); padding: 25px; border-radius: 20px;
    background: #fff; box-shadow: 0 28px 80px rgba(8, 36, 28, .25);
}
.auth-modal__card h2 { margin-top: 7px; font-size: 26px; }
.auth-modal__card p { margin-top: 7px; font-size: 13px; }
.auth-modal__close {
    position: absolute; top: 11px; right: 12px; width: 30px; height: 30px; border: 1px solid var(--line);
    border-radius: 50%; color: var(--muted); background: #fff; cursor: pointer; font-size: 19px;
}
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; margin-top: 18px; border-radius: 999px; background: #eef4ef; }
.auth-tab { min-height: 37px; border: 0; border-radius: 999px; color: var(--muted); background: transparent; cursor: pointer; font-weight: 800; }
.auth-tab.active { color: #fff; background: var(--green); }
.auth-panel { display: none; gap: 10px; margin-top: 15px; }
.auth-panel.active { display: grid; }
.auth-panel input, .otp-form input { min-height: 44px; padding: 0 12px; border: 1px solid var(--line); border-radius: 10px; outline: 0; }
.auth-panel input:focus, .otp-form input:focus { border-color: var(--green); }
.google-auth-btn { display: block; padding: 11px; margin-top: 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--green-dark); font-size: 13px; font-weight: 900; text-align: center; }
.account-hero { background: linear-gradient(135deg, #edf7f1, #f8f6ec); }
.account-hero h1 { font-size: clamp(28px, 3.5vw, 40px); letter-spacing: -2px; }
.account-toolbar, .verify-banner, .account-list__item { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.verify-banner { padding: 20px; margin-bottom: 26px; border: 1px solid #cfe6db; border-radius: 18px; background: #f1faf5; flex-wrap: wrap; }
.verify-banner h2 { margin-top: 4px; font-size: 24px; }
.verify-banner p { margin-top: 6px; font-size: 13px; }
.otp-form { display: flex; gap: 8px; flex-wrap: wrap; }
.otp-form input { width: 145px; background: #fff; }
.account-section { margin-top: 36px; }
.account-list { display: grid; gap: 10px; }
.account-list__item { padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.account-list__item p { margin-top: 5px; font-size: 13px; }

@media (max-width: 900px) {
    .nav { min-height: 68px; flex-wrap: wrap; gap: 12px; }
    .nav-toggle { display: grid; margin-left: auto; }
    .nav-menu {
        display: none; width: 100%; margin-left: 0; padding: 12px 0 18px;
        border-top: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 14px;
    }
    .nav-menu.is-open { display: flex; }
    .nav-links { flex-direction: column; gap: 0; width: 100%; font-size: 15px; }
    .nav-links a { padding: 10px 0; border-bottom: 1px solid rgba(223, 230, 226, .75); }
    .market-switchers { flex-wrap: wrap; }
    .nav-account { margin-left: 0; align-self: flex-start; }
    .nav-cta { align-self: flex-start; }
    .hero-grid, .detail-layout, .detail-grid, .contact-grid, .checkout-layout, .faq-layout { grid-template-columns: 1fr; }
    .perfect-match { position: static; }
    .checkout-summary { position: static; }
    .perfect-match__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .review-layout { grid-template-columns: 1fr; }
    .catalog-layout { grid-template-columns: 1fr; }
    .filter-sidebar { position: static; max-height: min(620px, calc(100vh - 24px)); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-card { min-height: 330px; }
    .compare-slots { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .container { width: min(100% - 24px, 1180px); }
    .hero { padding-top: 46px; }
    h1 { letter-spacing: -2px; }
    .hero-card { min-height: 265px; padding: 20px; }
    .product-grid, .feature-grid, .guide-grid, .testimonial-grid { grid-template-columns: 1fr; }
    .trust-strip { grid-template-columns: 1fr; gap: 4px; }
    .section { padding: 46px 0; }
    .section-heading, .footer-grid { align-items: flex-start; flex-direction: column; }
    .footer-meta { text-align: left; }
    .footer-links { justify-content: flex-start; }
    .product-image { height: 245px; }
    .filter-bar input { min-width: 100%; }
    .catalog-product-grid { grid-template-columns: 1fr; }
    .catalog-toolbar { align-items: flex-start; flex-direction: column; }
    .review-fields { grid-template-columns: 1fr; }
    .checkout-fields { grid-template-columns: 1fr; }
    .compare-wrap { overflow-x: auto; }
    .compare-picker__head, .compare-picker__actions { align-items: flex-start; flex-direction: column; }
    .account-toolbar, .account-list__item { align-items: flex-start; flex-direction: column; }
    .perfect-match__list { grid-template-columns: 1fr; }
}
