:root {
    --page: #eef5fb;
    --page-2: #dfeaf4;
    --surface: #ffffff;
    --soft: #f6fbff;
    --ink: #121416;
    --muted: #667482;
    --line: #d7e2ec;
    --accent: #1f7fbf;
    --accent-2: #e6f4ff;
    --deep: #111c27;
    --deep-2: #223445;
    --warning: #f2c14e;
    --shadow: 0 24px 70px rgba(21, 20, 18, .11);
    --radius: 8px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, #f7fbff 0, var(--page) 42%, #e5eef7 100%);
    color: var(--ink);
    font-family: "Onest", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
    text-rendering: geometricPrecision;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header,
.page-shell,
.site-footer,
.search-bar {
    width: 100%;
    background: transparent;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    min-height: 78px;
    margin-top: 0;
    padding: 0 max(24px, calc((100vw - var(--container)) / 2));
    border-bottom: 1px solid rgba(18, 20, 22, .08);
    background: rgba(247, 251, 255, .84);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 34px rgba(20, 20, 18, .045);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}

.brand::after {
    color: var(--accent);
}

.brand-mark {
    display: none;
}

.main-nav {
    display: flex;
    gap: 34px;
    justify-content: center;
    color: #363532;
    font-size: 15.5px;
    font-weight: 650;
}

.main-nav a {
    position: relative;
    padding: 29px 0;
    transition: color .2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    height: 1px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(.4);
    transition: opacity .2s ease, transform .2s ease;
}

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

.main-nav a:hover::after {
    opacity: .55;
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.menu-button {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    padding: 0;
    transition: background .2s ease, border-color .2s ease;
}

.menu-button span {
    position: absolute;
    left: 10px;
    top: 12px;
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease, top .2s ease;
}

.menu-button span:nth-child(2) {
    top: 19px;
}

.menu-button span:nth-child(3) {
    top: 26px;
}

.menu-button:hover {
    border-color: var(--line);
    background: #f3f9ff;
}

.menu-button.open span:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
}

.menu-button.open span:nth-child(2) {
    opacity: 0;
}

.menu-button.open span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
}

.icon-button,
.cart-button {
    min-height: 40px;
    border: 1px solid rgba(18, 20, 22, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .46);
    color: var(--ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5);
    transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.icon-button:hover,
.cart-button:hover {
    border-color: var(--line);
    background: #fff;
    box-shadow: 0 12px 28px rgba(20, 20, 18, .08);
    transform: translateY(-1px);
}

.icon-button {
    display: grid;
    width: 40px;
    place-items: center;
}

.cart-button {
    position: relative;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 0 12px;
    font-weight: 700;
}

.cart-button span {
    display: none;
}

.icon-button svg,
.cart-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-button b {
    display: grid;
    min-width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
}

.search-bar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 12px max(24px, calc((100vw - var(--container)) / 2));
    border-top: 1px solid var(--line);
}

.search-bar[hidden] {
    display: none;
}

.search-bar input,
.toolbar input,
.toolbar select,
.qty-control input {
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    padding: 0 14px;
}

.search-bar button,
.primary-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    border-radius: 999px;
    background: linear-gradient(180deg, #35a9e8 0%, var(--accent) 100%);
    color: #fff;
    padding: 0 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    box-shadow: 0 13px 28px rgba(31, 127, 191, .22);
    transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.primary-button:hover,
.search-bar button:hover {
    background: linear-gradient(180deg, #46b8f0 0%, #166da8 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(31, 127, 191, .3);
}

.ghost-button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    padding: 0 18px;
    font-size: 13px;
    font-weight: 700;
}

.plain-link {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.full {
    width: 100%;
}

.page-shell {
    min-height: 68vh;
}

.loader {
    padding: 80px 24px;
    color: var(--muted);
    text-align: center;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: clamp(520px, 70vh, 760px);
    background: var(--deep);
}

.hero-slider::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 0;
    width: min(var(--container), calc(100% - 48px));
    height: 1px;
    background: rgba(255, 255, 255, .32);
    transform: translateX(-50%);
}

.hero-track,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    display: grid;
    align-items: center;
    opacity: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.035);
    transition: opacity .7s ease, transform 1s ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 14, 16, .76) 0%, rgba(12, 14, 16, .46) 47%, rgba(12, 14, 16, .12) 100%),
        linear-gradient(180deg, rgba(12, 14, 16, .12) 0%, rgba(12, 14, 16, .58) 100%);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: .35;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
    color: #fff;
    padding-top: 30px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;
    background: rgba(255, 255, 255, .56);
}

.hero-slide h1 {
    max-width: 720px;
    margin: 0 0 18px;
    font-size: clamp(40px, 5.5vw, 80px);
    line-height: .98;
    font-weight: 820;
    text-wrap: balance;
}

.hero-slide p {
    max-width: 560px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
    line-height: 1.65;
}

.hero-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    background: rgba(255, 255, 255, .11);
    color: #fff;
    font-size: 0;
    line-height: 1;
    transform: translateY(-50%);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
    backdrop-filter: blur(12px);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.hero-arrow:hover {
    border-color: rgba(255, 255, 255, .68);
    background: rgba(255, 255, 255, .22);
    transform: translateY(-50%) scale(1.04);
}

.hero-arrow svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-arrow-prev {
    left: max(28px, calc((100vw - var(--container)) / 2 - 118px));
}

.hero-arrow-next {
    right: max(28px, calc((100vw - var(--container)) / 2 - 118px));
}

.hero-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 26px;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 34px;
    height: 2px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .42);
    padding: 0;
    transition: width .2s ease, background .2s ease;
}

.hero-dots button.active {
    width: 52px;
    background: #fff;
}

.single-slide .hero-arrow,
.single-slide .hero-dots {
    display: none;
}

.benefits-strip {
    display: none;
}

.why-section {
    border-top: 1px solid rgba(18, 20, 22, .08);
    border-bottom: 1px solid rgba(18, 20, 22, .08);
    background: linear-gradient(180deg, #f8fcff 0%, #eaf3fb 100%);
    padding: 86px max(24px, calc((100vw - var(--container)) / 2));
}

.why-inner {
    display: grid;
    gap: 42px;
}

.why-inner h2 {
    margin: 0;
    text-align: center;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 820;
}

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

.benefit-item {
    display: grid;
    justify-items: center;
    gap: 14px;
    text-align: center;
    padding: 4px 10px;
}

.benefit-icon {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border: 1px solid rgba(18, 20, 22, .09);
    border-radius: 50%;
    background: linear-gradient(180deg, #fff 0%, #eef7ff 100%);
    color: var(--ink);
    box-shadow: 0 16px 38px rgba(30, 28, 24, .07);
}

.benefit-icon svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-item h3 {
    margin: 4px 0 0;
    font-size: 16px;
    font-weight: 800;
}

.benefit-item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.section {
    padding: 74px max(24px, calc((100vw - var(--container)) / 2));
    background: #f8fcff;
}

.section-muted {
    background: linear-gradient(180deg, #f4f9fe 0%, #e8f2fb 100%);
}

.compact-section {
    padding-top: 26px;
    padding-bottom: 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 36px;
    text-align: left;
}

.split-head {
    justify-items: stretch;
}

.section-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-head h2 {
    position: relative;
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 820;
    text-transform: none;
    text-wrap: balance;
}

.section-head h2::before,
.section-head h2::after {
    display: none;
}

.section-lead {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.section p,
.muted {
    color: var(--muted);
}

.promo-grid,
.category-grid,
.product-grid,
.choose-grid {
    display: grid;
    gap: 28px;
}

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

.promo-card {
    min-height: 118px;
    display: grid;
    align-content: center;
    border: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 24px;
}

.promo-card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
}

.promo-card p {
    margin: 0;
    font-size: 13px;
}

.choose-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-top: 1px solid rgba(18, 20, 22, .08);
    background:
        linear-gradient(180deg, rgba(247, 251, 255, .86), rgba(247, 251, 255, .94));
}

.choose-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("/uploads/backgrounds/snowy-mountains-soft.jpg");
    background-size: cover;
    background-position: center 42%;
    opacity: .34;
    filter: saturate(.9) contrast(.98);
    transform: scale(1.03);
}

.choose-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 16% 12%, rgba(255, 255, 255, .68), transparent 34%),
        linear-gradient(90deg, rgba(247, 251, 255, .82), rgba(247, 251, 255, .6) 50%, rgba(247, 251, 255, .86));
    pointer-events: none;
}

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

.choose-card {
    display: grid;
    align-content: start;
    min-height: 330px;
    border: 1px solid rgba(18, 20, 22, .08);
    border-radius: 6px;
    background: rgba(255, 255, 255, .74);
    padding: 30px;
    box-shadow: 0 16px 45px rgba(24, 23, 21, .055);
}

.choose-card.featured {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08), transparent 38%),
        linear-gradient(180deg, var(--deep-2), var(--deep));
    color: #fff;
    box-shadow: 0 28px 70px rgba(17, 20, 22, .22);
}

.choose-card span {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(18, 20, 22, .1);
    border-radius: 50%;
    margin-bottom: 34px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
}

.choose-card.featured span {
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.choose-card h3 {
    margin: 0 0 12px;
    font-size: 23px;
    line-height: 1.18;
    font-weight: 780;
}

.choose-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.choose-card.featured p {
    color: rgba(255, 255, 255, .72);
}

.choose-card ul {
    display: grid;
    gap: 9px;
    margin: 24px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.choose-card.featured ul {
    border-color: rgba(255, 255, 255, .14);
}

.choose-card li {
    position: relative;
    color: #3d3d3d;
    padding-left: 18px;
    font-size: 13px;
    font-weight: 800;
}

.choose-card.featured li {
    color: rgba(255, 255, 255, .88);
}

.choose-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.service-section {
    padding-top: 0;
}

.service-panel {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 42px;
    align-items: stretch;
    border: 1px solid rgba(18, 20, 22, .08);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .5)),
        #eaf4fd;
    padding: clamp(26px, 4vw, 46px);
    box-shadow: 0 22px 58px rgba(24, 23, 21, .08);
}

.service-copy {
    display: grid;
    align-content: center;
    justify-items: start;
}

.service-copy h2 {
    max-width: 520px;
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.05;
    font-weight: 820;
}

.service-copy p {
    max-width: 560px;
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

.process-list {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(18, 20, 22, .08);
    border-radius: 6px;
    background: rgba(18, 20, 22, .08);
}

.process-list article {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 22px;
    align-items: start;
    background: rgba(255, 255, 255, .8);
    padding: 24px;
}

.process-list strong {
    color: var(--ink);
    font-size: 17px;
    line-height: 1.3;
}

.process-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.category-card {
    min-height: 245px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    border: 0;
    border-radius: 6px;
    background-color: #e8f2fb;
    background-position: center;
    background-size: cover;
    padding: 24px;
    color: #111;
    box-shadow: 0 18px 48px rgba(22, 21, 19, .08);
    transition: transform .22s ease, box-shadow .22s ease;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 9, 10, .08) 0%, rgba(7, 9, 10, .26) 44%, rgba(7, 9, 10, .82) 100%),
        linear-gradient(90deg, rgba(7, 9, 10, .2), rgba(7, 9, 10, 0));
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, .28);
    pointer-events: none;
    opacity: .82;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 62px rgba(22, 21, 19, .14);
}

.category-card > div {
    position: relative;
    width: min(320px, 90%);
    color: #fff;
    z-index: 1;
}

.category-card h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 820;
}

.category-card p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.45;
}

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

.product-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: hidden;
    transition: transform .2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.product-thumb {
    position: relative;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 6px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(18, 20, 22, .055);
    transition: box-shadow .2s ease;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    background: #fff;
    transition: transform .22s ease;
}

.product-card:hover .product-thumb {
    box-shadow: inset 0 0 0 1px rgba(18, 20, 22, .08), 0 22px 48px rgba(24, 23, 21, .12);
}

.product-card:hover .product-thumb img {
    transform: scale(1.025);
}

.product-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    right: auto;
    display: grid;
    gap: 6px;
    justify-items: end;
}

.discount-badge,
.new-badge {
    display: inline-flex;
    min-height: 22px;
    align-items: center;
    border-radius: 999px;
    background: #e53935;
    color: #fff;
    padding: 0 9px;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.new-badge {
    background: rgba(255, 255, 255, .88);
    color: #111;
    backdrop-filter: blur(10px);
}

.product-body {
    padding: 17px 2px 0;
    text-align: left;
}

.product-category {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.product-body h3 {
    margin: 0 0 7px;
    font-size: 16px;
    font-weight: 760;
    line-height: 1.35;
}

.card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    min-height: 0;
    color: var(--muted);
    font-size: 12px;
}

.price-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
    justify-content: flex-start;
    margin-top: 14px;
    font-size: 17px;
    font-weight: 850;
}

.product-service-list {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f8fcff;
    color: var(--ink);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .03em;
    line-height: 1.4;
    list-style: none;
    text-transform: uppercase;
}

.product-service-list li {
    position: relative;
    padding-left: 24px;
}

.product-service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .2em;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: inset 0 0 0 4px #fff;
}

.old-price {
    color: #9aa3af;
    text-decoration: line-through;
    font-weight: 600;
}

.catalog-layout {
    padding: 54px max(24px, calc((100vw - var(--container)) / 2)) 78px;
    background: #f8fcff;
}

.catalog-head {
    display: grid;
    grid-template-columns: 1fr minmax(360px, 560px);
    gap: 24px;
    align-items: end;
    margin-bottom: 24px;
}

.catalog-head h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 820;
    line-height: 1.02;
}

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

.catalog-head-actions {
    display: grid;
    grid-template-columns: 1fr 190px;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.catalog-head-actions input,
.catalog-head-actions select {
    min-height: 48px;
    border: 1px solid rgba(18, 20, 22, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: var(--ink);
    padding: 0 14px;
    outline: 0;
    transition: border-color .2s ease, background .2s ease;
}

.catalog-head-actions input:focus,
.catalog-head-actions select:focus {
    border-color: rgba(139, 104, 71, .45);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(139, 104, 71, .08);
}

.catalog-shell {
    display: grid;
    grid-template-columns: 285px minmax(0, 1fr);
    gap: 38px;
    align-items: start;
}

.catalog-filter {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 22px;
    border: 1px solid rgba(18, 20, 22, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .68);
    padding: 22px;
    box-shadow: 0 18px 48px rgba(24, 23, 21, .065);
    backdrop-filter: blur(12px);
}

.catalog-filter h2 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 850;
}

.catalog-filter button {
    min-height: 40px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #303030;
    padding: 0 12px;
    text-align: left;
}

.filter-group {
    display: grid;
    gap: 12px;
}

.category-filter-list {
    display: grid;
    gap: 6px;
}

.category-filter-list button {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    min-height: 0;
    border-radius: 8px;
    padding: 10px 12px 10px calc(14px + var(--level, 0) * 16px);
    line-height: 1.25;
}

.category-filter-list button span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.category-filter-list small {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
}

.category-filter-list button:hover,
.category-filter-list button.active {
    background: rgba(255, 255, 255, .82);
    color: var(--ink);
    box-shadow: inset 0 0 0 1px rgba(139, 104, 71, .14);
}

.category-filter-list button.active {
    color: var(--ink);
    font-weight: 820;
}

.category-filter-list button.active::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-radius: 999px;
    background: var(--accent);
}

.catalog-filter button:hover,
.catalog-filter button.active {
    background: #fff;
    color: var(--ink);
    box-shadow: inset 0 0 0 1px rgba(139, 104, 71, .18);
}

.catalog-filter button.active {
    font-weight: 800;
    color: var(--accent);
}

.catalog-filter .category-filter-list button:hover,
.catalog-filter .category-filter-list button.active {
    background: rgba(255, 255, 255, .82);
    color: var(--ink);
    box-shadow: inset 0 0 0 1px rgba(139, 104, 71, .14);
}

.catalog-filter .category-filter-list button.active {
    font-weight: 820;
}

.price-filter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.range-values {
    display: flex;
    justify-content: space-between;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
}

.range-slider {
    position: relative;
    height: 34px;
    touch-action: none;
}

.range-track,
.range-fill {
    position: absolute;
    top: 16px;
    height: 4px;
    border-radius: 999px;
}

.range-track {
    left: 0;
    right: 0;
    background: var(--line);
}

.range-fill {
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #8ed7ff, var(--accent));
}

.range-slider input[type="range"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 34px;
    margin: 0;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--deep);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
}

.range-slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--deep);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
    pointer-events: auto;
}

.price-filter label {
    display: grid;
    gap: 6px;
}

.price-filter span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.price-filter input {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    padding: 0 12px;
    outline: 0;
}

.filter-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.filter-apply,
.filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 10px;
    font-weight: 800;
    text-align: center;
    padding: 0 12px;
}

.filter-actions .filter-apply {
    border: 1px solid var(--accent);
    background: linear-gradient(180deg, #35a9e8, var(--accent));
    color: #fff;
}

.filter-actions .filter-reset {
    border: 1px solid rgba(18, 20, 22, .08);
    background: #e6edf4;
    color: #51606f;
}

.filter-actions .filter-reset:hover {
    border-color: #d5d5ce;
    background: #e5e5df;
    color: var(--ink);
}

.filter-actions .filter-apply:hover {
    border-color: #e75430;
    background: #e75430;
    color: #fff;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 34px;
}

.pagination button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
}

.pagination button.active {
    background: var(--deep);
    color: #fff;
}

.pagination-ellipsis {
    display: inline-grid;
    width: 28px;
    height: 40px;
    place-items: center;
    color: var(--muted);
}

.product-page {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: clamp(28px, 5vw, 64px);
    padding: 58px max(24px, calc((100vw - var(--container)) / 2));
    background: #fff;
}

.gallery-main {
    aspect-ratio: 4 / 5;
    background: #f7f7f7 center / contain no-repeat;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.gallery-thumb {
    aspect-ratio: 1;
    border: 1px solid var(--line);
    background-color: #f7f7f7;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.product-info {
    position: sticky;
    top: 98px;
    align-self: start;
}

.product-info h1,
.text-page h1 {
    margin: 10px 0 16px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.product-info .discount-badge {
    background: #e53935;
}

.variation-group {
    margin: 22px 0;
}

.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.variation-options button {
    border: 1px solid #d9d9d9;
    background: #fff;
    padding: 9px 13px;
}

.variation-options button.active {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.buy-row {
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 12px;
    margin: 26px 0;
}

.qty-control {
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    gap: 0;
}

.qty-control button {
    border: 1px solid var(--line);
    background: #fff;
}

.qty-control input {
    min-width: 0;
    border-inline: 0;
    text-align: center;
    padding: 0;
}

.specs {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    margin-top: 22px;
}

.specs div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 12px;
    padding: 12px 14px;
    background: #fff;
}

.text-page {
    width: min(980px, calc(100% - 48px));
    margin: clamp(34px, 6vw, 76px) auto clamp(48px, 7vw, 92px);
    padding: clamp(34px, 5vw, 64px);
    border: 1px solid rgba(18, 20, 22, .08);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .88)),
        #fff;
    box-shadow: 0 24px 70px rgba(24, 23, 21, .08);
    color: #242424;
    line-height: 1.76;
}

.text-page > * {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.text-page h1 {
    max-width: 820px;
    margin-top: 0;
    margin-bottom: clamp(26px, 4vw, 42px);
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(18, 20, 22, .1);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 820;
    text-wrap: balance;
}

.text-page h2 {
    margin-top: 38px;
    margin-bottom: 14px;
    color: var(--ink);
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.18;
    font-weight: 790;
}

.text-page h3 {
    margin-top: 28px;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.3;
    font-weight: 780;
}

.text-page p {
    margin: 0 0 16px;
}

.text-page ul,
.text-page ol {
    padding-left: 22px;
    margin-top: 10px;
    margin-bottom: 22px;
}

.text-page li {
    margin-bottom: 9px;
    padding-left: 4px;
}

.text-page a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.text-page table {
    max-width: 100%;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 26px 0 30px;
    overflow: hidden;
    border: 1px solid #dbe8f3;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(20, 35, 50, .07);
}

.text-page th,
.text-page td {
    padding: 20px 22px;
    border-bottom: 1px solid #e5eef7;
    border-right: 1px solid #e5eef7;
    text-align: left;
    vertical-align: middle;
}

.text-page th {
    background: #f3f9ff;
    color: #111;
    font-size: 16px;
    font-weight: 760;
    line-height: 1.25;
}

.text-page td {
    color: #1f1f1f;
    font-size: 16px;
    line-height: 1.55;
}

.text-page tr:last-child td {
    border-bottom: 0;
}

.text-page th:last-child,
.text-page td:last-child {
    border-right: 0;
}

.delivery-rate-table th:nth-child(1),
.delivery-rate-table td:nth-child(1) {
    width: 28%;
    font-weight: 700;
}

.delivery-rate-table th:nth-child(2),
.delivery-rate-table th:nth-child(3),
.delivery-rate-table td:nth-child(2),
.delivery-rate-table td:nth-child(3) {
    width: 36%;
}

.delivery-rate-table td:nth-child(3) {
    background: #f8fcff;
}

.delivery-rate-table tr:first-child td:nth-child(3) {
    color: #18814d;
    font-weight: 800;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(150px, 1fr));
    gap: 48px;
    padding: 76px max(24px, calc((100vw - var(--container)) / 2)) 40px;
    border-top: 0;
    background: #191919;
    color: rgba(255, 255, 255, .68);
    margin-bottom: 0;
    box-shadow: none;
}

.site-footer nav {
    display: grid;
    gap: 10px;
    justify-content: stretch;
}

.site-footer .footer-logo {
    display: inline-flex;
    margin-bottom: 22px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0;
}

.footer-brand p,
.footer-column p {
    max-width: 320px;
    margin: 0 0 10px;
    line-height: 1.65;
}

.footer-column h4 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-column nav {
    display: grid;
    gap: 10px;
    margin-bottom: 10px;
}

.site-footer a {
    color: rgba(255, 255, 255, .72);
}

.site-footer a:hover {
    color: #fff;
}

.messenger-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.footer-messengers {
    display: grid;
    width: 100%;
    margin: 18px 0 0;
}

.messenger-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    padding: 0 16px 0 13px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 14px 28px rgba(17, 17, 17, .12);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.messenger-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background: #fff;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
}

.whatsapp-icon {
    mask-image: url('/assets/icons/whatsapp.svg');
    -webkit-mask-image: url('/assets/icons/whatsapp.svg');
}

.telegram-icon {
    mask-image: url('/assets/icons/telegram-fill.svg');
    -webkit-mask-image: url('/assets/icons/telegram-fill.svg');
}

.messenger-button.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.messenger-button.telegram {
    background: linear-gradient(135deg, #2aabee, #168acd);
}

.site-footer .messenger-button,
.site-footer .messenger-button:hover {
    color: #fff;
}

.messenger-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(17, 17, 17, .18);
    filter: saturate(1.08);
}

.footer-messengers .messenger-button {
    width: 100%;
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    margin-top: 26px;
    padding-top: 28px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom nav {
    display: flex;
    gap: 26px;
}

.modal[hidden] {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: block;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

.modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal.is-closing {
    opacity: 0;
    pointer-events: none;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, .46);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity .28s ease;
}

.modal.is-open .modal-backdrop {
    opacity: 1;
}

.modal-panel {
    position: absolute;
    top: 0;
    right: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: min(420px, 100%);
    height: 100%;
    max-height: none;
    overflow: hidden;
    background: var(--surface);
    padding: 0;
    box-shadow: -24px 0 80px rgba(0, 0, 0, .16);
    transform: translateX(24px);
    opacity: 0;
    transition: transform .32s cubic-bezier(.2, .8, .2, 1), opacity .24s ease;
}

.modal.is-open .modal-panel {
    transform: translateX(0);
    opacity: 1;
}

.cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    border-bottom: 1px solid var(--line);
    padding: 0 24px;
}

.cart-head h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 850;
}

.modal-close {
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    font-size: 26px;
}

.cart-items {
    overflow: auto;
    padding: 18px 24px;
}

.cart-item {
    display: grid;
    grid-template-columns: 82px 1fr auto;
    gap: 14px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    margin-bottom: 12px;
    padding: 10px;
}

.cart-item img {
    width: 82px;
    height: 94px;
    border-radius: 10px;
    object-fit: cover;
}

.cart-item .ghost-button {
    min-height: 0;
    border: 0;
    padding: 0;
    color: var(--muted);
    justify-content: flex-start;
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 999px;
    margin-top: 10px;
}

.cart-qty button {
    display: grid;
    width: 32px;
    height: 30px;
    place-items: center;
    border: 0;
    background: #eef5fb;
}

.cart-qty span {
    min-width: 32px;
    text-align: center;
    font-weight: 800;
}

.cart-empty {
    display: grid;
    place-items: center;
    min-height: 260px;
    gap: 14px;
    text-align: center;
}

.cart-summary {
    border-top: 1px solid var(--line);
    padding: 22px 24px 24px;
    background: #fff;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    padding: 0 0 18px;
    font-size: 20px;
}

.modal-open {
    overflow: hidden;
}

.checkout-link {
    text-align: center;
}

.reviews-section,
.checkout-page {
    background: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.review-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f8fcff;
    padding: 18px;
}

.review-card > div {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.review-stars,
.stars {
    color: #f0a000;
    letter-spacing: .03em;
}

.review-card p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.review-summary {
    color: var(--muted);
    font-weight: 800;
}

.checkout-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 42px;
    padding: 54px max(24px, calc((100vw - var(--container)) / 2)) 86px;
}

.checkout-head {
    margin-bottom: 26px;
    text-align: left;
}

.checkout-head h1 {
    margin: 0;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 850;
}

.checkout-form,
.checkout-summary {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f8fcff;
    padding: 24px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.checkout-grid .full {
    grid-column: 1 / -1;
}

.checkout-grid label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.checkout-grid input,
.checkout-grid textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    padding: 0 14px;
    outline: 0;
}

.checkout-grid textarea {
    min-height: 110px;
    padding-top: 12px;
    resize: vertical;
}

.checkout-form .primary-button {
    margin-top: 18px;
}

.checkout-summary {
    position: sticky;
    top: 96px;
    align-self: start;
}

.checkout-summary h2 {
    margin: 0 0 18px;
}

.checkout-items {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.checkout-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    align-items: center;
}

.checkout-item img {
    width: 58px;
    height: 66px;
    border-radius: 8px;
    object-fit: cover;
}

.checkout-item span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    margin-top: 18px;
    padding: 18px 0;
    font-size: 20px;
}

.thanks-page {
    display: grid;
    place-items: center;
    min-height: 58vh;
    padding: 48px 0;
}

.thanks-card {
    width: min(720px, 100%);
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    padding: clamp(28px, 5vw, 54px);
    text-align: center;
}

.thanks-card h1 {
    margin: 10px 0 14px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
}

.thanks-card p {
    max-width: 560px;
    margin: 10px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.thanks-number {
    display: inline-grid;
    gap: 5px;
    min-width: min(320px, 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 28px 0 0;
    padding: 18px 0;
}

.thanks-number span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.thanks-number strong {
    font-size: 24px;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.thanks-actions .primary-button,
.thanks-actions .ghost-button {
    min-width: 240px;
    min-height: 54px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.order-lookup-page {
    grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
}

.order-lookup-page .checkout-summary {
    position: static;
    display: grid;
    gap: 22px;
    background: #fff;
}

.order-result-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.order-result-head span,
.order-details-grid span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.order-result-head h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
}

.order-status-badge {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    border-radius: 999px;
    background: #e8f4fd;
    color: #1f6799;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.order-status-badge.paid,
.order-status-badge.shipped {
    background: #e8f5ed;
    color: #277243;
}

.order-status-badge.cancelled {
    background: #fff0ed;
    color: #b8412f;
}

.order-progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.order-progress div {
    position: relative;
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.order-progress i {
    display: block;
    height: 5px;
    border-radius: 999px;
    background: #dfe9f2;
}

.order-progress div.active {
    color: var(--ink);
}

.order-progress div.active i {
    background: var(--accent);
}

.order-progress.cancelled i {
    background: #efd5cf;
}

.order-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.order-details-grid div {
    border: 1px solid rgba(18, 20, 22, .08);
    border-radius: 10px;
    background: #f8fcff;
    padding: 14px;
}

.order-details-grid strong {
    display: block;
    overflow-wrap: anywhere;
}

.order-products {
    display: grid;
    gap: 12px;
}

.order-products h3 {
    margin: 0;
    font-size: 18px;
}

.order-product-row-public {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) max-content max-content;
    gap: 14px;
    align-items: center;
    border: 1px solid rgba(18, 20, 22, .08);
    border-radius: 12px;
    background: #f8fcff;
    padding: 12px;
}

.order-product-row-public img {
    width: 74px;
    height: 82px;
    border-radius: 10px;
    object-fit: cover;
    background: #fff;
}

.order-product-row-public strong {
    display: block;
    line-height: 1.25;
}

.order-product-row-public span {
    color: var(--muted);
    white-space: nowrap;
}

.order-product-row-public b {
    white-space: nowrap;
}

.contact-page {
    background: #fff;
    padding: 46px max(24px, calc((100vw - var(--container)) / 2)) 90px;
}

.breadcrumbs {
    display: flex;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 30px;
}

.contact-hero {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: end;
    margin-bottom: 46px;
}

.contact-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 850;
}

.contact-hero p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 34px;
}

.contact-grid article {
    min-height: 0;
    padding: 0;
}

.contact-grid h3 {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 850;
}

.contact-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.contact-grid .messenger-links {
    align-items: flex-start;
}

.contact-panel {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: stretch;
    margin-top: 28px;
}

.contact-panel > div:first-child {
    border: 1px solid var(--line);
    padding: 34px;
}

.contact-panel h2 {
    margin: 0 0 16px;
    font-size: 34px;
    font-weight: 850;
}

.contact-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.map-placeholder {
    display: grid;
    overflow: hidden;
    min-height: 280px;
    place-items: center;
    background: linear-gradient(135deg, #eef7ff, #dcecf8);
    color: rgba(17, 17, 17, .44);
    font-size: 28px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
}

.faq-lead {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.faq-list {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.faq-question {
    display: flex;
    width: 100%;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    background: transparent;
    color: var(--ink);
    padding: 0 22px;
    text-align: left;
    font: inherit;
    font-size: 18px;
    font-weight: 800;
}

.faq-question::after {
    content: "+";
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--accent);
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    transition: transform .24s ease, background .24s ease, color .24s ease;
}

.faq-item.open .faq-question::after {
    background: var(--accent);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease;
}

.faq-answer-inner {
    border-top: 1px solid var(--line);
    padding: 0 22px 22px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.faq-answer-inner p,
.faq-answer-inner ul {
    margin: 16px 0 0;
}

.faq-answer-inner li + li {
    margin-top: 6px;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 44px 1fr auto;
        top: 0;
        margin-top: 0;
        gap: 12px;
        min-height: 68px;
    }

    .menu-button {
        display: grid;
        grid-column: 1;
        grid-row: 1;
    }

    .brand {
        position: absolute;
        left: 50%;
        grid-row: 1;
        justify-self: auto;
        font-size: 22px;
        transform: translateX(-50%);
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        grid-column: auto;
        grid-row: auto;
        flex-direction: column;
        gap: 0;
        overflow: hidden;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        border-radius: 0 0 18px 18px;
        background: rgba(255, 255, 255, .98);
        padding: 10px max(20px, calc((100vw - var(--container)) / 2));
        box-shadow: 0 18px 50px rgba(16, 16, 16, .12);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 46px;
        border-radius: 10px;
        padding: 0 14px;
        font-size: 16px;
    }

    .main-nav a::after {
        content: '';
        position: static;
        display: block;
        flex: 0 0 auto;
        width: 7px;
        height: 7px;
        border-top: 1.5px solid currentColor;
        border-right: 1.5px solid currentColor;
        background: transparent;
        opacity: .42;
        transform: rotate(45deg);
    }

    .main-nav a:hover {
        background: var(--accent-2);
    }

    .header-actions {
        grid-column: 3;
        grid-row: 1;
    }

    .product-page,
    .catalog-head,
    .catalog-shell,
    .checkout-page {
        grid-template-columns: 1fr;
    }

    .catalog-filter {
        position: static;
    }

    .hero-arrow {
        display: none;
    }

    .benefits-strip,
    .why-grid,
    .promo-grid,
    .category-grid,
    .product-grid,
    .choose-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-panel {
        grid-template-columns: 1fr;
    }

    .catalog-head-actions {
        grid-template-columns: 1fr;
    }

    .product-info {
        position: static;
    }

    .site-footer,
    .contact-hero,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: grid;
    }

    .contact-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 620px) {
    .hero-slide h1 {
        max-width: 100%;
        font-size: 34px;
        line-height: 1.08;
        overflow-wrap: anywhere;
        text-wrap: balance;
    }

    .hero-slider {
        min-height: 470px;
    }

    .benefits-strip,
    .why-grid,
    .promo-grid,
    .category-grid,
    .choose-grid,
    .product-grid,
    .reviews-grid,
    .contact-grid,
    .catalog-head-actions {
        grid-template-columns: 1fr;
    }

    .section-head {
        display: grid;
        align-items: start;
    }

    .section-lead {
        max-width: none;
    }

    .section-head h2::before,
    .section-head h2::after {
        display: none;
    }

    .buy-row,
    .checkout-grid,
    .specs div {
        grid-template-columns: 1fr;
    }

    .text-page table.delivery-rate-table {
        display: block;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .text-page .delivery-rate-table thead {
        display: none;
    }

    .text-page .delivery-rate-table tbody,
    .text-page .delivery-rate-table tr,
    .text-page .delivery-rate-table td {
        display: block;
        width: 100%;
    }

    .text-page .delivery-rate-table tr {
        margin-bottom: 14px;
        overflow: hidden;
        border: 1px solid #dbe8f3;
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 12px 30px rgba(20, 35, 50, .06);
    }

    .text-page .delivery-rate-table td {
        display: grid;
        grid-template-columns: minmax(118px, .45fr) minmax(0, 1fr);
        gap: 14px;
        border-right: 0;
        padding: 14px 16px;
        font-size: 15px;
    }

    .text-page .delivery-rate-table td::before {
        content: attr(data-label);
        color: #667482;
        font-size: 12px;
        font-weight: 800;
        line-height: 1.35;
        text-transform: uppercase;
    }

    .text-page .delivery-rate-table td:nth-child(1) {
        grid-template-columns: 1fr;
        background: #f3f9ff;
        font-size: 17px;
    }

    .text-page .delivery-rate-table td:nth-child(1)::before {
        display: none;
    }

    .text-page {
        width: calc(100% - 24px);
        margin-top: 18px;
        margin-bottom: 32px;
        padding: 24px 18px;
        border-radius: 6px;
    }

    .text-page h1 {
        margin-bottom: 24px;
        padding-bottom: 18px;
        font-size: 30px;
    }

    .text-page h2 {
        margin-top: 30px;
        font-size: 22px;
    }

    .faq-lead {
        font-size: 15px;
    }

    .faq-question {
        min-height: 60px;
        padding: 0 16px;
        font-size: 16px;
    }

    .faq-answer-inner {
        padding: 0 16px 18px;
        font-size: 15px;
    }

    .checkout-grid .full {
        grid-column: auto;
    }

    .site-header {
        padding-inline: 16px;
    }

    .hero-slide-content {
        width: calc(100% - 32px);
    }

    .hero-slide p {
        font-size: 15px;
    }

    .footer-logo {
        font-size: 22px;
        letter-spacing: 0;
    }

    .header-actions #searchToggle {
        display: none;
    }

    .icon-button {
        width: 38px;
    }

    .cart-button {
        padding: 0 10px;
    }

    .why-section,
    .section,
    .catalog-layout,
    .product-page,
    .contact-page {
        padding-inline: 24px;
    }

    .choose-card {
        min-height: 0;
        padding: 24px;
    }

    .choose-card span {
        margin-bottom: 22px;
    }

    .process-list article {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px;
    }

    .checkout-page {
        padding-inline: 24px;
    }

    .order-details-grid {
        grid-template-columns: 1fr;
    }

    .order-product-row-public {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .order-product-row-public span,
    .order-product-row-public b {
        grid-column: 2;
    }

    .site-footer {
        padding-inline: 24px;
    }

    .modal {
        background: #fff;
    }

    .modal-backdrop {
        display: none;
    }

    .modal-panel {
        inset: 0;
        width: 100vw;
        height: 100dvh;
        background: #fff;
        box-shadow: none;
        transform: translateY(18px);
    }

    .modal.is-open .modal-panel {
        transform: translateY(0);
    }

    .cart-item {
        grid-template-columns: 72px 1fr;
    }

    .cart-item .ghost-button {
        grid-column: 2;
    }
}
