:root {
    --ink: #15213a;
    --muted: #68758a;
    --line: #e4eaf1;
    --surface: #ffffff;
    --page: #f5f8fb;
    --cyan: #15b9cc;
    --cyan-dark: #0798ae;
    --blue: #2563eb;
    --green: #78bc43;
    --orange: #ff9e2f;
    --shadow: 0 18px 45px rgba(26, 49, 81, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--page);
    font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }
a { color: inherit; text-decoration: none; }

.store-shell { min-height: 100vh; }

.catalog-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 40;
    display: flex;
    width: 300px;
    flex-direction: column;
    color: #fff;
    background: linear-gradient(180deg, #18bbcd 0%, #099bb4 100%);
    box-shadow: 9px 0 30px rgba(11, 96, 114, .13);
}

.catalog-sidebar__title {
    display: flex;
    height: 74px;
    align-items: center;
    gap: 11px;
    padding: 0 24px;
    font-size: 16px;
    font-weight: 800;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.catalog-sidebar__menu { font-size: 19px; }
.catalog-sidebar__close { display: none; }
.catalog-sidebar__nav { overflow: auto; padding: 8px 0; }

.catalog-sidebar__item {
    display: flex;
    min-height: 57px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 24px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: .02em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    transition: background .18s ease, padding .18s ease;
}

.catalog-sidebar__item:hover,
.catalog-sidebar__item.is-active {
    padding-left: 29px;
    background: rgba(1, 91, 110, .25);
}

.catalog-sidebar__item span:last-child { font-size: 27px; line-height: 1; }
.catalog-sidebar__empty { padding: 24px; color: rgba(255, 255, 255, .8); font-size: 13px; }

.catalog-sidebar__help {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: auto 16px 18px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 14px;
    background: rgba(255, 255, 255, .1);
}

.catalog-sidebar__help-icon {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    place-items: center;
    color: var(--cyan-dark);
    background: #fff;
    border-radius: 50%;
    font-weight: 900;
}

.catalog-sidebar__help strong,
.catalog-sidebar__help span { display: block; }
.catalog-sidebar__help strong { margin-bottom: 3px; font-size: 12px; }
.catalog-sidebar__help div span { color: rgba(255, 255, 255, .78); font-size: 10px; line-height: 1.4; }

.catalog-overlay { display: none; }
.store-main { min-width: 0; margin-left: 300px; background: #fff; }

.utility-bar {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 5vw;
    color: #3e4b60;
    background: #f3f6f8;
    border-bottom: 1px solid #e9edf1;
    font-size: 13px;
    font-weight: 700;
}

.utility-bar__catalog { display: none; }
.utility-bar__links { display: flex; align-items: center; gap: 24px; }
.utility-bar a:hover { color: var(--cyan-dark); }
.utility-bar__repair { color: #f26c3e; }
.utility-bar__account { margin-left: auto; color: var(--cyan-dark); }

.store-header {
    display: grid;
    grid-template-columns: minmax(250px, 1.2fr) 1fr minmax(230px, auto) auto;
    min-height: 112px;
    align-items: center;
    gap: 26px;
    max-width: 1320px;
    margin: auto;
    padding: 20px 42px;
}

.brand { display: flex; align-items: center; gap: 13px; }
.brand__mark {
    position: relative;
    display: flex;
    width: 49px;
    height: 49px;
    align-items: end;
    justify-content: center;
    gap: 3px;
    padding-bottom: 10px;
    color: #fff;
    background: linear-gradient(145deg, var(--green), #4aa53f);
    border-radius: 15px;
    box-shadow: 0 9px 18px rgba(77, 163, 64, .24);
}

.brand__mark span { display: block; width: 5px; background: #fff; border-radius: 3px; }
.brand__mark span:nth-child(1) { height: 12px; }
.brand__mark span:nth-child(2) { height: 20px; }
.brand__mark span:nth-child(3) { height: 27px; }
.brand__text strong { display: block; font-size: 22px; letter-spacing: -.04em; }
.brand__text small { display: block; margin-top: 2px; color: var(--muted); font-size: 10px; }

.store-header__service { display: flex; align-items: center; gap: 10px; color: #6ea83c; font-size: 11px; font-weight: 700; line-height: 1.5; }
.store-header__service-icon { display: grid; width: 25px; height: 25px; place-items: center; color: #fff; background: var(--green); border-radius: 50%; }
.store-header__contacts a,
.store-header__contacts > span { display: block; font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.store-header__contacts small { display: block; margin-top: 4px; color: #96a0ae; font-size: 10px; }
.store-header__actions { display: flex; gap: 8px; }
.store-header__actions button, .store-header__actions > a { position: relative; display: grid; width: 42px; height: 42px; place-items: center; padding: 0; color: var(--ink); background: #f1f5f7; border: 0; border-radius: 12px; cursor: pointer; font-size: 19px; }
.store-header__actions button span, .store-header__actions > a span { position: absolute; top: -5px; right: -5px; min-width: 18px; padding: 2px 5px; color: #fff; background: var(--cyan); border-radius: 10px; font-size: 9px; }

.smart-search { position: relative; z-index: 20; max-width: 1240px; margin: 0 auto 26px; padding: 0 42px; }
.smart-search__form {
    display: flex;
    height: 55px;
    align-items: center;
    gap: 13px;
    padding-left: 17px;
    background: #fff;
    border: 2px solid var(--green);
    border-radius: 12px;
    box-shadow: 0 7px 20px rgba(55, 91, 33, .08);
}

.smart-search__form:focus-within { box-shadow: 0 0 0 4px rgba(120, 188, 67, .14), 0 15px 32px rgba(55, 91, 33, .1); }
.smart-search__form svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 2; }
.smart-search__form input { min-width: 0; flex: 1; height: 100%; padding: 0; color: var(--ink); outline: none; background: transparent; border: 0; font-size: 15px; font-weight: 600; }
.smart-search__form input::placeholder { color: #9da7b5; }
.smart-search__form kbd { padding: 5px 8px; color: #8792a2; background: #f1f4f6; border: 1px solid #e0e5e9; border-radius: 7px; font: 10px Manrope, sans-serif; }
.smart-search__form button { align-self: stretch; min-width: 92px; padding: 0 20px; color: #fff; background: var(--green); border: 0; border-radius: 0 9px 9px 0; cursor: pointer; font-weight: 800; }

.search-suggestions {
    position: absolute;
    top: calc(100% - 1px);
    right: 42px;
    left: 42px;
    max-height: min(620px, 68vh);
    overflow-y: auto;
    background: #fff;
    border: 2px solid var(--green);
    border-top: 1px solid #e7edf0;
    border-radius: 0 0 12px 12px;
    box-shadow: var(--shadow);
}

.search-suggestions[hidden] { display: none; }
.suggestion-group__title { padding: 8px 16px; color: #8995a6; background: #f1f4f6; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.suggestion-row { display: grid; grid-template-columns: 38px minmax(0, 1fr) auto; align-items: center; gap: 11px; min-height: 52px; padding: 8px 16px; border-bottom: 1px solid var(--line); }
.suggestion-row:hover,
.suggestion-row.is-selected { background: #f2fbec; }
.suggestion-row__icon { display: grid; width: 32px; height: 32px; place-items: center; color: var(--cyan-dark); background: #e9f9fb; border-radius: 9px; font-size: 12px; font-weight: 900; }
.suggestion-row__icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.suggestion-row__copy { min-width: 0; }
.suggestion-row__copy strong { display: block; overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.suggestion-row__copy small { display: block; overflow: hidden; margin-top: 2px; color: #8995a6; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.suggestion-row__meta { color: #6c788a; font-size: 11px; white-space: nowrap; }
.search-suggestions__state { padding: 24px; color: var(--muted); text-align: center; font-size: 12px; }

.hero {
    position: relative;
    display: grid;
    min-height: 360px;
    grid-template-columns: 1.2fr 1fr;
    overflow: hidden;
    margin: 0;
    padding: 55px max(42px, calc((100vw - 300px - 1240px) / 2 + 42px));
    color: #fff;
    background: linear-gradient(120deg, #ff9d2d 0%, #ffb72e 47%, #ff8635 100%);
}

.hero::before { position: absolute; inset: 0; content: ""; opacity: .16; background-image: radial-gradient(circle at 20px 20px, #fff 2px, transparent 2.5px); background-size: 42px 42px; }
.hero__copy { position: relative; z-index: 2; align-self: center; max-width: 650px; }
.hero__eyebrow { display: inline-block; margin-bottom: 14px; padding: 7px 11px; background: rgba(255, 255, 255, .18); border: 1px solid rgba(255, 255, 255, .3); border-radius: 20px; font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.hero h1 { max-width: 630px; margin: 0; font-size: clamp(32px, 4vw, 57px); line-height: 1.02; letter-spacing: -.055em; }
.hero p { max-width: 570px; margin: 19px 0 25px; color: rgba(255, 255, 255, .84); font-size: 15px; line-height: 1.65; }
.hero__copy a { display: inline-flex; align-items: center; gap: 13px; padding: 13px 18px; color: var(--ink); background: #fff; border-radius: 11px; font-size: 12px; font-weight: 800; box-shadow: 0 10px 25px rgba(102, 54, 5, .16); }
.hero__visual { position: relative; min-height: 245px; }
.hero__phone { position: absolute; top: 8%; left: 50%; width: 170px; height: 285px; transform: translateX(-50%) rotate(8deg); background: #17223a; border: 5px solid rgba(255, 255, 255, .85); border-radius: 34px; box-shadow: 0 35px 50px rgba(104, 52, 0, .28); }
.hero__phone::after { position: absolute; top: 9px; left: 50%; width: 52px; height: 12px; content: ""; transform: translateX(-50%); background: #101729; border-radius: 10px; }
.hero__phone-screen { position: absolute; inset: 5px; display: flex; align-items: center; justify-content: center; flex-direction: column; background: radial-gradient(circle at 70% 20%, #65d7e3, #1759d1 55%, #102044); border-radius: 25px; font-size: 25px; font-weight: 500; letter-spacing: .16em; }
.hero__phone-screen b { font-size: 30px; letter-spacing: .06em; }
.hero__phone-camera { display: none; }
.hero__orb { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .15); filter: blur(1px); }
.hero__orb--one { top: 5%; left: 8%; width: 110px; height: 110px; }
.hero__orb--two { right: 7%; bottom: -20%; width: 220px; height: 220px; }
.hero__tag { position: absolute; z-index: 2; padding: 10px 13px; color: var(--ink); background: rgba(255, 255, 255, .92); border-radius: 11px; box-shadow: 0 12px 28px rgba(93, 47, 0, .16); font-size: 10px; font-weight: 800; }
.hero__tag--top { top: 16%; right: 3%; }
.hero__tag--bottom { bottom: 14%; left: 10%; }

.benefits { display: grid; max-width: 1240px; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 0 auto; padding: 0 42px; transform: translateY(-18px); }
.benefits article { display: flex; min-height: 82px; align-items: center; gap: 12px; padding: 15px; background: #fff; box-shadow: 0 8px 28px rgba(30, 52, 80, .09); }
.benefits article:first-child { border-radius: 13px 0 0 13px; }
.benefits article:last-child { border-radius: 0 13px 13px 0; }
.benefits article > span { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; color: var(--cyan-dark); background: #e8fafd; border-radius: 10px; font-weight: 900; }
.benefits strong,
.benefits small { display: block; }
.benefits strong { font-size: 11px; }
.benefits small { margin-top: 3px; color: var(--muted); font-size: 9px; }

.catalog-section { max-width: 1240px; min-height: 420px; margin: 0 auto; padding: 48px 42px 80px; }
.catalog-section__heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.section-kicker { color: var(--cyan-dark); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.catalog-section h2 { margin: 6px 0 0; font-size: 27px; letter-spacing: -.04em; }
.catalog-section__query { padding: 7px 11px; color: var(--muted); background: var(--page); border-radius: 8px; font-size: 11px; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.product-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 15px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.product-card:hover { transform: translateY(-3px); border-color: #cbd8e5; box-shadow: 0 16px 36px rgba(31, 54, 83, .1); }
.product-card__visual { position: relative; display: grid; height: 172px; place-items: center; background: linear-gradient(145deg, #f6f9fb, #eef3f7); }
.product-card__image-link { display: grid; width: 100%; height: 100%; place-items: center; padding: 17px; }
.product-card__image { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product-card__type { position: absolute; top: 11px; left: 11px; padding: 5px 8px; color: #546275; background: rgba(255, 255, 255, .9); border-radius: 7px; font-size: 9px; font-weight: 800; }
.product-card__visual button { position: absolute; top: 9px; right: 9px; width: 31px; height: 31px; color: #536174; background: #fff; border: 0; border-radius: 50%; cursor: pointer; font-size: 17px; }
.product-card__visual form { position: absolute; top: 9px; right: 9px; z-index: 2; }
.product-card__visual form button { position: static; }
.product-card__visual button.is-favorite { color: #e11d48; }
.product-card__placeholder { display: grid; width: 88px; height: 110px; place-items: center; color: rgba(255, 255, 255, .9); background: linear-gradient(145deg, var(--cyan), #2360da); border: 5px solid #fff; border-radius: 20px; box-shadow: 0 18px 25px rgba(37, 99, 235, .18); font-size: 34px; font-weight: 900; }
.product-card__body { padding: 16px; }
.product-card__body > small { display: block; overflow: hidden; color: #8b96a5; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.product-card h3 { min-height: 40px; margin: 8px 0 6px; font-size: 13px; line-height: 1.5; }
.product-card p { overflow: hidden; margin: 0; color: var(--muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.product-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 17px 0 13px; }
.product-card__meta strong { font-size: 17px; }
.stock { color: #a46e1e; font-size: 9px; font-weight: 800; }
.stock--available { color: #2d9c4b; }
.product-card__cart { display: block; width: 100%; padding: 10px; color: #fff; background: var(--cyan); border: 0; border-radius: 9px; text-align: center; font-size: 9px; font-weight: 800; }
.product-card__cart:hover { background: var(--cyan-dark); }
.catalog-pagination { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; font-size: 10px; font-weight: 800; }
.catalog-pagination a,
.catalog-pagination > span:first-child,
.catalog-pagination > span:last-child { padding: 10px 14px; color: var(--cyan-dark); background: #fff; border: 1px solid #bfe9ef; border-radius: 9px; }
.catalog-pagination a:hover { color: #fff; background: var(--cyan); }
.catalog-pagination .is-disabled { color: #a5afbd; background: #f5f7f9; border-color: var(--line); }

.store-header--compact { min-height: 96px; }
.product-breadcrumbs { display: flex; max-width: 1240px; align-items: center; gap: 9px; overflow: hidden; margin: 0 auto; padding: 8px 42px 22px; color: var(--muted); font-size: 10px; white-space: nowrap; }
.product-breadcrumbs a { color: var(--cyan-dark); }
.product-breadcrumbs > span:last-child { overflow: hidden; text-overflow: ellipsis; }
.product-detail { display: grid; max-width: 1240px; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); gap: 44px; margin: 0 auto; padding: 16px 42px 45px; }
.product-gallery__main { display: grid; min-height: 460px; place-items: center; padding: 30px; background: #f7f9fb; border: 1px solid var(--line); border-radius: 18px; }
.product-gallery__main img { width: 100%; max-height: 500px; object-fit: contain; mix-blend-mode: multiply; }
.product-gallery__thumbs { display: flex; gap: 9px; overflow-x: auto; margin-top: 10px; padding-bottom: 3px; }
.product-gallery__thumbs a { display: grid; width: 72px; height: 72px; flex: 0 0 72px; place-items: center; padding: 5px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.product-gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; }
.product-gallery__empty { display: grid; min-height: 460px; place-items: center; align-content: center; gap: 14px; color: #fff; background: linear-gradient(145deg, var(--cyan), #2360da); border: 9px solid #f2f6f9; border-radius: 28px; }
.product-gallery__empty span { font-size: 100px; font-weight: 900; }
.product-gallery__empty small { font-size: 11px; font-weight: 800; }
.product-summary { padding-top: 20px; }
.product-summary h1 { margin: 9px 0 10px; font-size: clamp(26px, 3vw, 40px); line-height: 1.16; letter-spacing: -.04em; }
.product-summary__code { color: #8b96a5; font-size: 10px; }
.product-summary__lead { margin: 22px 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.product-summary__buy { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 28px; padding: 20px 0; border-top: 1px solid var(--line); }
.product-summary__buy strong { font-size: 30px; letter-spacing: -.04em; }
.product-summary__cart { width: 100%; padding: 14px; color: #fff; background: var(--green); border: 0; border-radius: 11px; font-size: 12px; font-weight: 800; opacity: .7; }
.product-summary__notes { display: grid; gap: 10px; margin-top: 23px; color: var(--muted); font-size: 11px; }
.product-summary__notes b { color: var(--green); }
.product-information { display: grid; max-width: 1156px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 45px; margin: 0 auto 70px; padding: 35px 42px; background: #f7f9fb; border-radius: 18px; }
.product-information h2 { margin: 0 0 20px; font-size: 20px; }
.product-information__description { color: var(--muted); font-size: 12px; line-height: 1.8; }
.product-specs { margin: 0; }
.product-specs > div { display: grid; grid-template-columns: minmax(110px, .8fr) 1.2fr; gap: 15px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.product-specs dt { color: var(--muted); }
.product-specs dd { margin: 0; font-weight: 700; text-align: right; }
.empty-results { grid-column: 1 / -1; padding: 65px 20px; text-align: center; background: #f7f9fb; border: 1px dashed #d9e1e9; border-radius: 16px; }
.empty-results > span { font-size: 30px; }
.empty-results h3 { margin: 12px 0 7px; }
.empty-results p { margin: 0 0 17px; color: var(--muted); font-size: 12px; }
.empty-results a { color: var(--cyan-dark); font-size: 12px; font-weight: 800; }
.store-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 120px; padding: 28px max(42px, calc((100vw - 300px - 1240px) / 2 + 42px)); color: #aeb8c7; background: #15213a; font-size: 10px; }
.store-footer strong,
.store-footer span { display: block; }
.store-footer strong { margin-bottom: 7px; color: #fff; font-size: 15px; }
.store-footer p { max-width: 440px; margin: 0; text-align: right; line-height: 1.6; }

@media (max-width: 1120px) {
    .catalog-sidebar { transform: translateX(-105%); transition: transform .2s ease; }
    .store-shell.is-catalog-open .catalog-sidebar { transform: translateX(0); }
    .store-shell.is-catalog-open .catalog-overlay { position: fixed; inset: 0; z-index: 35; display: block; background: rgba(8, 20, 39, .55); }
    .catalog-sidebar__close { display: block; margin-left: auto; color: #fff; background: none; border: 0; font-size: 27px; cursor: pointer; }
    .store-main { margin-left: 0; }
    .utility-bar { justify-content: flex-start; }
    .utility-bar__catalog { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; color: #fff; background: var(--cyan); border: 0; border-radius: 8px; font-size: 11px; font-weight: 800; }
    .hero { padding-right: 42px; padding-left: 42px; }
    .store-footer { padding-right: 42px; padding-left: 42px; }
}

@media (max-width: 860px) {
    .utility-bar__links { display: none; }
    .store-header { grid-template-columns: 1fr auto; min-height: 86px; padding: 15px 22px; }
    .store-header__service,
    .store-header__contacts { display: none; }
    .smart-search { margin-bottom: 18px; padding: 0 22px; }
    .search-suggestions { right: 22px; left: 22px; }
    .hero { grid-template-columns: 1fr; min-height: 510px; padding: 45px 28px; }
    .hero__copy { align-self: start; }
    .hero__visual { min-height: 230px; }
    .hero__phone { top: 17px; height: 230px; }
    .benefits { grid-template-columns: repeat(2, 1fr); padding: 0 22px; }
    .benefits article:first-child { border-radius: 13px 0 0 0; }
    .benefits article:nth-child(2) { border-radius: 0 13px 0 0; }
    .benefits article:nth-child(3) { border-radius: 0 0 0 13px; }
    .benefits article:last-child { border-radius: 0 0 13px 0; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-detail { grid-template-columns: 1fr; gap: 20px; padding-right: 22px; padding-left: 22px; }
    .product-gallery__main,
    .product-gallery__empty { min-height: 380px; }
    .product-information { grid-template-columns: 1fr; gap: 32px; margin-right: 22px; margin-left: 22px; padding: 28px; }
    .product-breadcrumbs { padding-right: 22px; padding-left: 22px; }
}

@media (max-width: 560px) {
    .catalog-sidebar { width: min(88vw, 320px); }
    .utility-bar { min-height: 44px; padding: 0 15px; }
    .brand__mark { width: 42px; height: 42px; }
    .brand__text strong { max-width: 180px; overflow: hidden; font-size: 17px; text-overflow: ellipsis; white-space: nowrap; }
    .brand__text small { display: none; }
    .store-header__actions > :first-child { display: none; }
    .smart-search__form { height: 50px; }
    .smart-search__form kbd,
    .smart-search__form button { display: none; }
    .smart-search__form { padding-right: 14px; }
    .suggestion-row { grid-template-columns: 32px minmax(0, 1fr); padding: 8px 11px; }
    .suggestion-row__meta { display: none; }
    .hero { min-height: 485px; }
    .hero h1 { font-size: 34px; }
    .hero__tag--top { right: 0; }
    .benefits { display: flex; overflow-x: auto; padding-bottom: 8px; }
    .benefits article { min-width: 205px; border-radius: 12px !important; }
    .catalog-section { padding: 35px 15px 60px; }
    .catalog-section__heading { align-items: start; flex-direction: column; }
    .product-grid { grid-template-columns: 1fr; }
    .product-card { display: grid; grid-template-columns: 130px 1fr; }
    .product-card__visual { height: auto; min-height: 190px; }
    .product-card__image-link { min-height: 190px; padding: 12px; }
    .product-card__placeholder { width: 68px; height: 92px; }
    .product-card__type { display: none; }
    .store-footer { align-items: start; padding: 28px 20px; flex-direction: column; }
    .store-footer p { text-align: left; }
    .product-detail { padding: 8px 15px 35px; }
    .product-gallery__main,
    .product-gallery__empty { min-height: 310px; }
    .product-summary { padding-top: 8px; }
    .product-summary h1 { font-size: 27px; }
    .product-information { margin-right: 15px; margin-left: 15px; padding: 22px 17px; }
.product-breadcrumbs { padding-right: 15px; padding-left: 15px; }
}

.product-card__cart--secondary { color: var(--cyan-dark); background: #eaf7fb; }
.product-card__cart--secondary:hover { color: #fff; }
.product-card__compare {
    width: 100%;
    margin-top: 7px;
    padding: 7px;
    color: #64748b;
    background: transparent;
    border: 1px solid #dbe3e9;
    border-radius: 8px;
    cursor: pointer;
    font: inherit;
    font-size: 8px;
    font-weight: 800;
}
.product-card__compare:hover,
.product-card__compare.is-compared { color: var(--cyan-dark); background: #ecfeff; border-color: #a5f3fc; }
.product-summary__order { display: grid; grid-template-columns: 100px 1fr; gap: 10px; }
.product-summary__order label { color: var(--muted); font-size: 10px; font-weight: 700; }
.product-summary__order input { width: 100%; height: 43px; margin-top: 4px; padding: 0 10px; border: 1px solid var(--line); border-radius: 9px; font: inherit; }
.product-summary__order .product-summary__cart { align-self: end; opacity: 1; cursor: pointer; }
.product-summary__favorite { width: 100%; margin-top: 9px; padding: 11px; color: var(--cyan-dark); background: #fff; border: 1px solid #bfe9ef; border-radius: 10px; font: inherit; font-size: 10px; font-weight: 800; cursor: pointer; }
.product-summary__favorite.is-favorite { color: #be123c; border-color: #fecdd3; }

.checkout-body { min-height: 100vh; background: #f4f7fa; }
.checkout-header { display: flex; min-height: 88px; align-items: center; justify-content: space-between; gap: 30px; padding: 16px max(24px, calc((100vw - 1160px) / 2)); background: #fff; border-bottom: 1px solid var(--line); }
.checkout-header .brand { min-width: 230px; }
.checkout-header nav { display: flex; align-items: center; gap: 24px; font-size: 12px; font-weight: 800; }
.checkout-header__cart { display: inline-flex; align-items: center; gap: 8px; }
.checkout-header__cart span { display: grid; min-width: 23px; height: 23px; place-items: center; color: #fff; background: var(--cyan); border-radius: 99px; font-size: 9px; }
.checkout-shell { width: min(1160px, calc(100% - 36px)); margin: 0 auto; padding: 38px 0 70px; }
.checkout-title span { color: var(--cyan-dark); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.checkout-title h1 { margin: 5px 0 28px; font-size: clamp(28px, 4vw, 42px); letter-spacing: -.04em; }
.checkout-alert { margin: 12px 0 18px; padding: 12px 15px; border-radius: 10px; font-size: 11px; font-weight: 700; }
.checkout-alert--error { color: #9f1239; background: #fff1f2; border: 1px solid #fecdd3; }
.checkout-alert--success { color: #166534; background: #f0fdf4; border: 1px solid #bbf7d0; }
.cart-layout, .checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: start; gap: 24px; }
.cart-lines, .checkout-form { display: grid; gap: 14px; }
.cart-line { display: grid; grid-template-columns: 90px minmax(0, 1fr) 100px 110px 30px; align-items: center; gap: 16px; padding: 17px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.cart-line__image { display: grid; width: 90px; height: 90px; place-items: center; overflow: hidden; background: #f4f7f9; border-radius: 10px; }
.cart-line__image img { width: 100%; height: 100%; object-fit: contain; }
.cart-line__image span { display: grid; width: 52px; height: 62px; place-items: center; color: #fff; background: var(--cyan); border-radius: 12px; font-size: 20px; font-weight: 900; }
.cart-line__content small { color: var(--muted); font-size: 9px; }
.cart-line__content h2 { margin: 5px 0 8px; font-size: 13px; line-height: 1.4; }
.cart-line__quantity label { color: var(--muted); font-size: 9px; font-weight: 700; }
.cart-line__quantity input { width: 100%; height: 34px; margin-top: 4px; padding: 0 8px; border: 1px solid var(--line); border-radius: 7px; }
.cart-line__quantity button { width: 100%; margin-top: 4px; padding: 4px; color: var(--cyan-dark); background: none; border: 0; font-size: 8px; font-weight: 800; cursor: pointer; }
.cart-line__total { text-align: right; font-size: 14px; }
.cart-line__remove { width: 28px; height: 28px; color: #94a3b8; background: #f1f5f9; border: 0; border-radius: 50%; font-size: 18px; cursor: pointer; }
.cart-summary { position: sticky; top: 20px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 14px 30px rgba(31, 54, 83, .06); }
.cart-summary h2 { margin: 0 0 20px; font-size: 18px; }
.cart-summary > div { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; color: var(--muted); font-size: 11px; }
.cart-summary > div strong { color: var(--ink); }
.cart-summary p { margin: 16px 0; color: var(--muted); font-size: 9px; line-height: 1.6; }
.cart-summary > a, .cart-summary > button { display: block; width: 100%; padding: 13px; color: #fff; background: var(--green); border: 0; border-radius: 9px; text-align: center; font: inherit; font-size: 11px; font-weight: 900; cursor: pointer; }
.cart-summary > small { display: block; margin-top: 11px; color: var(--muted); font-size: 8px; line-height: 1.5; text-align: center; }
.cart-empty { padding: 75px 20px; text-align: center; background: #fff; border: 1px dashed #cbd5e1; border-radius: 16px; }
.cart-empty > span { font-size: 36px; }
.cart-empty h2 { margin: 14px 0 7px; }
.cart-empty p { color: var(--muted); font-size: 11px; }
.cart-empty a, .order-back { display: inline-block; margin-top: 15px; padding: 11px 18px; color: #fff; background: var(--cyan); border-radius: 9px; font-size: 10px; font-weight: 800; }
.checkout-form section { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.checkout-form section h2 { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; font-size: 16px; }
.checkout-form section h2 span { display: grid; width: 25px; height: 25px; place-items: center; color: #fff; background: var(--cyan); border-radius: 50%; font-size: 9px; }
.checkout-fields { display: grid; gap: 14px; }
.checkout-fields--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.checkout-fields label, .checkout-address { color: var(--muted); font-size: 9px; font-weight: 800; }
.checkout-fields input, .checkout-address textarea { width: 100%; margin-top: 5px; padding: 11px 12px; color: var(--ink); background: #fff; border: 1px solid #cbd5e1; border-radius: 8px; font: inherit; font-size: 11px; }
.checkout-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.checkout-options label { display: grid; grid-template-columns: 18px 1fr; align-items: start; padding: 14px; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.checkout-options input { grid-row: 1 / 3; margin: 2px 0 0; accent-color: var(--cyan); }
.checkout-options strong { font-size: 11px; }
.checkout-options small { margin-top: 3px; color: var(--muted); font-size: 8px; }
.checkout-address { display: block; margin-top: 14px; }
.checkout-discount-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}
.checkout-discount-fields > label {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
}
.checkout-discount-fields input {
    width: 100%;
    height: 42px;
    margin-top: 5px;
    padding: 0 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    outline: none;
    font: inherit;
    font-size: 11px;
}
.checkout-discount-fields input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(21, 185, 204, .12);
}
.checkout-discount-fields label small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 8px;
    line-height: 1.45;
}
.checkout-bonus-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 14px;
    color: var(--muted);
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 9px;
    font-size: 9px;
    line-height: 1.55;
}
.checkout-bonus-login strong { color: var(--ink); font-size: 10px; }
.checkout-bonus-login a { color: var(--cyan-dark); font-weight: 900; }
.checkout-privacy { display: flex; align-items: flex-start; gap: 8px; padding: 0 6px; color: var(--muted); font-size: 9px; line-height: 1.5; }
.checkout-privacy input { accent-color: var(--cyan); }
.checkout-order-line { padding: 9px 0 !important; border-bottom: 1px solid var(--line); }
.checkout-order-line span { max-width: 190px; color: var(--ink); line-height: 1.45; }
.cart-summary__grand { margin: 10px 0; padding: 15px 0 !important; color: var(--ink) !important; border-top: 1px solid var(--line); font-size: 14px !important; }
.cart-summary__grand strong { font-size: 19px; }
.order-success { display: flex; align-items: center; gap: 22px; padding: 28px; background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: 16px; }
.order-success__icon { display: grid; width: 58px; height: 58px; flex: 0 0 58px; place-items: center; color: #fff; background: var(--green); border-radius: 50%; font-size: 24px; font-weight: 900; }
.order-success small { color: #047857; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.order-success h1 { margin: 3px 0 7px; font-size: 26px; }
.order-success p { margin: 0; color: #475569; font-size: 10px; line-height: 1.6; }
.order-detail { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 24px; margin-top: 24px; }
.order-detail > section, .order-detail > aside { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.order-detail h2 { margin: 0 0 15px; font-size: 17px; }
.order-detail article { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.order-detail article small { display: block; margin-top: 4px; color: var(--muted); font-size: 8px; }
.order-detail aside { display: grid; grid-template-columns: 1fr auto; align-content: start; gap: 8px 15px; font-size: 10px; }
.order-detail aside > span { color: var(--muted); }
.order-detail aside > div { display: flex; grid-column: 1 / -1; justify-content: space-between; margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 15px; }
.favorite-grid { display: grid; gap: 12px; }
.favorite-card { display: grid; grid-template-columns: 105px minmax(0, 1fr) 150px; align-items: center; gap: 20px; padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.favorite-card__image { display: grid; width: 105px; height: 105px; place-items: center; overflow: hidden; background: #f4f7f9; border-radius: 11px; }
.favorite-card__image img { width: 100%; height: 100%; object-fit: contain; }
.favorite-card__image span { display: grid; width: 60px; height: 72px; place-items: center; color: #fff; background: var(--cyan); border-radius: 13px; font-size: 24px; font-weight: 900; }
.favorite-card small { color: var(--muted); font-size: 9px; }
.favorite-card h2 { margin: 6px 0 12px; font-size: 15px; }
.favorite-card > div > strong { margin-right: 12px; font-size: 18px; }
.favorite-card__actions { display: grid; gap: 7px; }
.favorite-card__actions button { width: 100%; padding: 10px; color: #fff; background: var(--cyan); border: 0; border-radius: 8px; font: inherit; font-size: 9px; font-weight: 800; cursor: pointer; }
.favorite-card__actions .favorite-card__remove { color: #be123c; background: #fff1f2; }

.account-auth-shell {
    display: grid;
    min-height: calc(100vh - 88px);
    place-items: start center;
    padding: 54px 18px 80px;
}

.account-auth-card {
    width: min(100%, 430px);
    padding: 32px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.account-auth-card h1 { margin: 7px 0 8px; font-size: 31px; letter-spacing: -.04em; }
.account-auth-card > p { margin: 0 0 22px; color: var(--muted); font-size: 11px; line-height: 1.65; }
.account-auth-card form { display: grid; gap: 14px; }
.account-auth-card form > label { color: var(--muted); font-size: 9px; font-weight: 800; }
.account-auth-card form > label > input:not([type="checkbox"]) {
    width: 100%;
    height: 44px;
    margin-top: 5px;
    padding: 0 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 9px;
    outline: none;
    font: inherit;
    font-size: 11px;
}
.account-auth-card form > label > input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(21, 185, 204, .12);
}
.account-auth-card__remember {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}
.account-auth-card__remember input { margin: 2px 0 0; accent-color: var(--cyan); }
.account-auth-card form > button {
    width: 100%;
    padding: 13px;
    color: #fff;
    background: var(--cyan);
    border: 0;
    border-radius: 9px;
    cursor: pointer;
    font: inherit;
    font-size: 11px;
    font-weight: 900;
}
.account-auth-card form > button:hover { background: var(--cyan-dark); }
.account-auth-card > small { display: block; margin-top: 18px; color: var(--muted); text-align: center; font-size: 9px; }
.account-auth-card > small a { color: var(--cyan-dark); font-weight: 800; }
.account-auth-card__staff { display: block; margin-top: 12px; color: #94a3b8; text-align: center; font-size: 8px; text-decoration: underline; }

.account-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}
.account-heading h1 { margin: 6px 0 4px; font-size: clamp(28px, 4vw, 40px); letter-spacing: -.04em; }
.account-heading p { margin: 0; color: var(--muted); font-size: 11px; }
.account-heading button {
    padding: 10px 16px;
    color: #475569;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 9px;
    cursor: pointer;
    font: inherit;
    font-size: 10px;
    font-weight: 800;
}
.account-shortcuts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
.account-shortcuts > * {
    display: flex;
    min-height: 90px;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
}
.account-shortcuts strong { font-size: 25px; color: var(--cyan-dark); }
.account-shortcuts span { color: var(--muted); font-size: 10px; line-height: 1.4; }
.account-orders { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 15px; }
.account-orders > h2 { margin: 0 0 17px; font-size: 19px; }
.account-orders > a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px 130px 15px;
    align-items: center;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}
.account-orders > a:hover { color: var(--cyan-dark); }
.account-orders > a small { display: block; margin-top: 4px; color: var(--muted); font-size: 8px; }
.account-orders > a b { text-align: right; font-size: 13px; }
.account-orders > a i { color: #94a3b8; font-size: 22px; font-style: normal; }
.account-order-status { justify-self: start; padding: 6px 9px; color: #475569; background: #f1f5f9; border-radius: 99px; font-size: 8px; font-weight: 900; }
.account-order-status--new,
.account-order-status--awaiting_payment { color: #1d4ed8; background: #dbeafe; }
.account-order-status--processing,
.account-order-status--assembling { color: #6d28d9; background: #ede9fe; }
.account-order-status--ready,
.account-order-status--shipped { color: #047857; background: #d1fae5; }
.account-order-status--cancelled { color: #be123c; background: #ffe4e6; }
.account-orders nav { margin-top: 22px; }
.account-shortcuts__bonus { background: linear-gradient(135deg, #ecfeff, #f0fdf4) !important; border-color: #a5f3fc !important; }
.account-bonus-history { margin-top: 18px; }
.account-bonus-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}
.account-bonus-line small { display: block; margin-top: 4px; color: var(--muted); font-size: 8px; }
.account-bonus-line b { font-size: 12px; }
.account-bonus-line .is-positive { color: #047857; }
.account-bonus-line .is-negative { color: #c2410c; }
.account-bonus-empty { margin: 0; color: var(--muted); font-size: 10px; }
.compare-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}
.compare-heading h1 { margin: 5px 0 5px; font-size: clamp(27px, 4vw, 39px); letter-spacing: -.04em; }
.compare-heading p { margin: 0; color: var(--muted); font-size: 10px; }
.compare-heading button {
    padding: 10px 15px;
    color: #be123c;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    border-radius: 9px;
    cursor: pointer;
    font: inherit;
    font-size: 9px;
    font-weight: 800;
}
.compare-scroll { overflow-x: auto; padding-bottom: 8px; }
.compare-grid {
    display: grid;
    min-width: calc(var(--compare-columns) * 220px);
    grid-template-columns: 150px repeat(var(--compare-columns), minmax(210px, 1fr));
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 15px;
}
.compare-product {
    position: relative;
    grid-row: 1;
    padding: 18px;
    border-left: 1px solid var(--line);
}
.compare-product:first-of-type { grid-column: 2; }
.compare-product > form { position: absolute; z-index: 2; top: 9px; right: 9px; }
.compare-product > form button {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    color: #64748b;
    background: #f1f5f9;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
}
.compare-product__image {
    display: grid;
    height: 145px;
    margin-bottom: 11px;
    place-items: center;
    overflow: hidden;
    background: #f7fafb;
    border-radius: 10px;
}
.compare-product__image img { width: 100%; height: 100%; object-fit: contain; }
.compare-product__image span { display: grid; width: 66px; height: 80px; place-items: center; color: #fff; background: var(--cyan); border-radius: 14px; font-size: 25px; font-weight: 900; }
.compare-product small { color: var(--muted); font-size: 8px; }
.compare-product h2 { min-height: 44px; margin: 5px 0 9px; font-size: 12px; line-height: 1.45; }
.compare-product > strong { display: block; font-size: 16px; }
.compare-product > em { display: block; margin-top: 4px; color: #047857; font-size: 8px; font-style: normal; font-weight: 800; }
.compare-row-label,
.compare-row-value {
    padding: 12px 14px;
    border-top: 1px solid var(--line);
    font-size: 9px;
}
.compare-row-label { grid-column: 1; color: var(--muted); background: #f8fafc; font-weight: 800; }
.compare-row-value { border-left: 1px solid var(--line); line-height: 1.45; }
.product-reviews {
    margin-top: 22px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 15px;
}

.product-recommendations {
    max-width: 1240px;
    margin: 0 auto 28px;
    padding: 0 42px;
}
.product-recommendations__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}
.product-recommendations__heading h2 { margin: 5px 0 0; font-size: 21px; }
.product-recommendations__heading > a { color: var(--cyan-dark); font-size: 9px; font-weight: 800; }
.product-recommendations__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.recommendation-card {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
}
.recommendation-card__visual {
    display: grid;
    min-height: 132px;
    place-items: center;
    background: #f8fafc;
}
.recommendation-card__visual img { width: 100%; height: 100%; max-height: 132px; object-fit: contain; }
.recommendation-card__visual > span { display: grid; width: 46px; height: 62px; color: #fff; background: linear-gradient(145deg, var(--cyan), #0e7490); border-radius: 10px; place-items: center; font-size: 21px; font-weight: 800; }
.recommendation-card > div { min-width: 0; padding: 12px; }
.recommendation-card small { display: block; overflow: hidden; color: var(--muted); font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.recommendation-card h3 { min-height: 35px; margin: 6px 0; font-size: 9px; line-height: 1.45; }
.recommendation-card h3 a { color: var(--ink); }
.recommendation-card strong { display: block; margin-bottom: 8px; font-size: 12px; }
.recommendation-card button,
.recommendation-card__more { display: block; width: 100%; padding: 7px; color: #fff; background: var(--cyan); border: 0; border-radius: 7px; text-align: center; font-size: 8px; font-weight: 800; }
.recommendation-card__more { color: var(--cyan-dark); background: #eaf7fb; }
.product-reviews__heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.product-reviews__heading h2 { margin: 5px 0 0; font-size: 21px; }
.product-reviews__rating { display: grid; grid-template-columns: auto auto; align-items: center; gap: 0 9px; }
.product-reviews__rating strong { grid-row: 1 / 3; color: var(--ink); font-size: 30px; }
.product-reviews__rating span { color: #f59e0b; font-size: 14px; letter-spacing: .05em; }
.product-reviews__rating small { color: var(--muted); font-size: 8px; }
.product-reviews__layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; align-items: start; gap: 24px; }
.product-reviews__list { display: grid; gap: 10px; }
.product-reviews__list article { padding: 16px; background: #f8fafc; border: 1px solid var(--line); border-radius: 11px; }
.product-reviews__list article > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-reviews__list article > div strong { font-size: 10px; }
.product-reviews__list article > div span { color: #f59e0b; font-size: 11px; }
.product-reviews__list article h3 { margin: 10px 0 5px; font-size: 11px; }
.product-reviews__list article p { margin: 6px 0; color: #475569; font-size: 9px; line-height: 1.65; white-space: pre-line; }
.product-reviews__list article time { color: #94a3b8; font-size: 8px; }
.product-reviews__list .is-verified { display: block; margin-top: 5px; color: #047857; font-size: 7px; font-weight: 800; }
.product-reviews__empty { padding: 30px; color: var(--muted); background: #f8fafc; border: 1px dashed #cbd5e1; border-radius: 11px; text-align: center; font-size: 10px; }
.product-review-form { padding: 18px; background: #f8fafc; border: 1px solid var(--line); border-radius: 12px; }
.product-review-form h3 { margin: 0 0 6px; font-size: 14px; }
.product-review-form > p { margin: 0 0 13px; color: var(--muted); font-size: 8px; line-height: 1.55; }
.product-review-form > a { display: block; padding: 10px; color: #fff; background: var(--cyan); border-radius: 8px; text-align: center; font-size: 9px; font-weight: 800; }
.product-review-form form { display: grid; gap: 11px; }
.product-review-form label { color: var(--muted); font-size: 8px; font-weight: 800; }
.product-review-form input,
.product-review-form select,
.product-review-form textarea {
    width: 100%;
    margin-top: 4px;
    padding: 9px 10px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    outline: none;
    font: inherit;
    font-size: 9px;
}
.product-review-form textarea { resize: vertical; }
.product-review-form input:focus,
.product-review-form select:focus,
.product-review-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(21, 185, 204, .12); }
.product-review-form button { padding: 11px; color: #fff; background: var(--cyan); border: 0; border-radius: 8px; cursor: pointer; font: inherit; font-size: 9px; font-weight: 900; }

@media (max-width: 860px) {
    .cart-layout, .checkout-layout, .order-detail { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
    .cart-line { grid-template-columns: 72px minmax(0, 1fr) 85px; }
    .cart-line__image { width: 72px; height: 72px; }
    .cart-line__quantity { grid-column: 2; }
    .cart-line__total { grid-column: 3; grid-row: 1; }
    .cart-line > form:last-child { grid-column: 3; grid-row: 2; justify-self: end; }
    .account-shortcuts { grid-template-columns: 1fr; }
    .product-reviews__layout { grid-template-columns: 1fr; }
    .product-recommendations__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .account-orders > a { grid-template-columns: minmax(0, 1fr) auto; }
    .account-orders > a .account-order-status { grid-column: 1; }
    .account-orders > a b { grid-column: 2; grid-row: 1; }
    .account-orders > a i { display: none; }
}

@media (max-width: 560px) {
    .checkout-header { padding: 14px 18px; }
    .checkout-header nav > a:first-child { display: none; }
    .checkout-shell { width: min(100% - 24px, 1160px); padding-top: 24px; }
    .cart-line { grid-template-columns: 62px 1fr auto; gap: 10px; padding: 12px; }
    .cart-line__image { width: 62px; height: 70px; }
    .checkout-fields--two, .checkout-options, .checkout-discount-fields { grid-template-columns: 1fr; }
    .product-summary__order { grid-template-columns: 80px 1fr; }
    .favorite-card { grid-template-columns: 74px 1fr; gap: 12px; padding: 12px; }
    .favorite-card__image { width: 74px; height: 82px; }
    .favorite-card__actions { grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .account-auth-shell { padding-top: 28px; }
    .account-auth-card { padding: 24px 18px; }
    .account-heading { align-items: start; flex-direction: column; }
    .compare-heading { align-items: start; flex-direction: column; }
    .product-reviews__heading { align-items: start; flex-direction: column; }
    .product-recommendations { padding: 0 15px; }
    .product-recommendations__heading { align-items: start; flex-direction: column; }
    .product-recommendations__grid { grid-template-columns: 1fr; }
    .account-shortcuts > * { min-height: 72px; }
    .account-orders { padding: 18px 14px; }
    .account-orders > a { gap: 9px; }
}
