:root {
    --bg: #F4F2EF;
    --white: #FFFFFF;
    --ink: #0E0E12;
    --ink2: #3A3A44;
    --muted: #8A8A96;
    --line: #E6E4DF;
    --red: #E8223A;
    --red-s: #FFF0F2;
    --blue: #1A4ED8;
    --blue-s: #EEF3FF;
    --green: #0A8754;
    --green-s: #EDFAF4;
    --orange: #D97706;
    --orange-s: #FFFBEB;
    --purple: #7C3AED;
    --purple-s: #F5F0FF;
    --sh1: 0 1px 4px rgba(0,0,0,.06),0 1px 2px rgba(0,0,0,.04);
    --sh2: 0 4px 20px rgba(0,0,0,.08),0 2px 8px rgba(0,0,0,.04);
    --sh3: 0 12px 40px rgba(0,0,0,.1);
    --r: 14px;
    --rs: 10px;
}

*,*::before,*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    overflow-x: hidden;
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

img {
    display: block;
    max-width: 100%
}

button {
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
    cursor: pointer
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity .5s ease,transform .5s ease
}

.reveal.animate-in {
    opacity: 0;
    transform: translateY(18px)
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 300;
    overflow: visible;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    height: 58px;
}

.site-header .container {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 18px;
    gap: 14px;
}

.site-logo {
    font-family: 'Playfair Display',serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -.02em;
}

.site-logo::after {
    content: '.';
    color: var(--red)
}

.header-search {
    flex: 1;
    max-width: 400px;
    display: flex;
    align-items: center;
    background: var(--bg);
    border: 1.5px solid var(--line);
    border-radius: 30px;
    padding: 0 6px 0 14px;
    height: 38px;
    gap: 8px;
    transition: border-color .2s;
}

.header-search:focus-within {
    border-color: var(--red)
}

.header-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
    font-size: 13px;
    color: var(--ink);
    outline: none;
    min-width: 0;
}

.header-search input::placeholder {
    color: var(--muted)
}

.header-search button {
    background: var(--red);
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}

.header-search button:hover {
    background: #c91e31
}

.cat-strip-bar {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 58px;
    z-index: 200;
}

.cat-strip {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 9px 18px;
    scrollbar-width: none;
}

.cat-strip::-webkit-scrollbar {
    display: none
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink2);
    white-space: nowrap;
    flex-shrink: 0;
    transition: all .2s;
}

.cat-pill:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-s)
}

.cat-pill.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 400;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
    padding: 8px 0 max(8px,env(safe-area-inset-bottom));
}

.mbn-inner {
    display: flex;
    justify-content: space-around
}

.mbn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 9px;
    font-weight: 600;
    color: var(--muted);
    padding: 4px 12px;
    text-decoration: none;
    transition: color .2s;
}

.mbn-item.active {
    color: var(--red)
}

.mbn-icon {
    font-size: 20px;
    line-height: 1
}

.theme-hero {
    background: linear-gradient(135deg,#0E0E12 0%,#1a1a28 60%,#0e1628 100%);
    position: relative;
    overflow: hidden;
    padding: 52px 18px 60px;
}

.theme-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 50% at 80% 50%,rgba(232,34,58,.2) 0%,transparent 70%), radial-gradient(ellipse 40% 60% at 20% 80%,rgba(26,78,216,.15) 0%,transparent 70%);
}

.theme-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle,rgba(255,255,255,.05) 1px,transparent 1px);
    background-size: 28px 28px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0
}

.hero-title {
    font-family: 'Playfair Display',serif;
    font-size: clamp(32px,5.5vw,64px);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 14px;
}

.hero-title .ht-red {
    color: var(--red)
}

.hero-title .ht-dim {
    color: rgba(255,255,255,.38);
    font-weight: 700
}

.hero-sub {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 28px
}

.hero-search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.3);
    max-width: 500px;
}

.hero-search-bar input {
    flex: 1;
    padding: 15px 18px;
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
    font-size: 14px;
    border: none;
    outline: none;
    color: var(--ink);
}

.hero-search-bar input::placeholder {
    color: var(--muted)
}

.hero-search-bar button {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 15px 22px;
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
    font-size: 13px;
    font-weight: 700;
    transition: background .2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-search-bar button::before {
    content: '●';
    font-size: 8px;
    color: rgba(255,255,255,.6)
}

.hero-search-bar button:hover {
    background: #c91e31
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 24px;
    flex-wrap: wrap
}

.hs-num {
    font-family: 'Playfair Display',serif;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.hs-label {
    font-size: 10px;
    color: rgba(255,255,255,.4);
    margin-top: 2px
}

.hero-phones-vis {
    position: relative;
    height: 260px;
    display: flex;
    align-items: flex-end;
    justify-content: center
}

.hp {
    position: absolute;
    bottom: 0;
    background: linear-gradient(160deg,#262630,#141418);
    border-radius: 20px;
    border: 1.5px solid rgba(255,255,255,.1);
    box-shadow: 0 24px 60px rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hp-screen {
    position: absolute;
    inset: 6px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.hp-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 9px;
    background: #000;
    border-radius: 5px;
    z-index: 2
}

.hp-tag {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: .5px;
}

.hp1 {
    width: 95px;
    height: 190px;
    left: 16%;
    transform: rotate(-8deg) translateY(12px);
    z-index: 1
}

.hp1 .hp-screen {
    background: linear-gradient(145deg,#142238,#0a1520)
}

.hp2 {
    width: 108px;
    height: 215px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: floatPhone 5s ease-in-out infinite
}

.hp2 .hp-screen {
    background: linear-gradient(145deg,#1a2040,#0d1228)
}

.hp3 {
    width: 95px;
    height: 190px;
    right: 16%;
    transform: rotate(8deg) translateY(12px);
    z-index: 1
}

.hp3 .hp-screen {
    background: linear-gradient(145deg,#201828,#0e0e18)
}

@keyframes floatPhone {
    0%,100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(-10px)
    }
}

.section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 18px
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px
}

.section-title {
    font-family: 'Playfair Display',serif;
    font-size: clamp(18px,3vw,24px);
    font-weight: 900;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    text-decoration: none
}

.section-link:hover {
    text-decoration: underline
}

.section-divider {
    height: 1px;
    background: var(--line);
    max-width: 1280px;
    margin: 0 auto
}

.filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    margin-bottom: 20px
}

.filter-pills::-webkit-scrollbar {
    display: none
}

.fp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 30px;
    background: var(--white);
    border: 1.5px solid var(--line);
    font-size: 12px;
    font-weight: 700;
    color: var(--ink2);
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}

.fp:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-s)
}

.fp.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(160px,1fr));
    gap: 12px;
}

.brand-card {
    background: var(--white);
    border-radius: var(--r);
    border: 1.5px solid var(--line);
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
}

.brand-card:hover {
    border-color: var(--red);
    box-shadow: var(--sh2);
    transform: translateY(-2px)
}

.brand-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    overflow: hidden;
}

.brand-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px
}

.brand-card-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink)
}

.brand-card-count {
    font-size: 11px;
    color: var(--muted)
}

.budget-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
}

.budget-card {
    background: var(--white);
    border-radius: var(--r);
    border: 1.5px solid var(--line);
    padding: 20px 16px;
    text-align: center;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
}

.budget-card:hover {
    border-color: var(--red);
    box-shadow: var(--sh2);
    transform: translateY(-2px)
}

.budget-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: block
}

.budget-range {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 3px
}

.budget-label {
    font-size: 12px;
    color: var(--muted)
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px
}

.promo-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--r);
    cursor: pointer;
    text-decoration: none;
    transition: opacity .2s;
}

.promo-card:hover {
    opacity: .9
}

.promo-card.p1 {
    background: linear-gradient(135deg,#E8223A,#c91e31)
}

.promo-card.p2 {
    background: linear-gradient(135deg,#1A4ED8,#1740b0)
}

.promo-card.p3 {
    background: linear-gradient(135deg,#0A8754,#076b43)
}

.promo-icon {
    font-size: 26px;
    flex-shrink: 0;
    background: rgba(255,255,255,.15);
    border-radius: 10px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center
}

.promo-text {
    flex: 1
}

.promo-title {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3
}

.promo-sub {
    font-size: 11px;
    color: rgba(255,255,255,.7);
    margin-top: 2px
}

.promo-arrow {
    font-size: 18px;
    color: rgba(255,255,255,.5);
    flex-shrink: 0
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    gap: 14px;
}

.mobile-card {
    background: var(--white);
    border-radius: var(--r);
    box-shadow: var(--sh1);
    border: 1px solid var(--line);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s,box-shadow .2s;
    contain: layout;
    position: relative;
}

.mobile-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh2)
}

.card-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    display: flex;
    flex-direction: column
}

.card-thumb {
    aspect-ratio: 1;
    width: 100%;
    padding: 12px;
    background: linear-gradient(180deg,#f8f7f5 0%,#eeecea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    overflow: hidden;
    position: relative;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply
}

.card-thumb--placeholder {
    font-size: 3.5rem;
    color: var(--muted)
}

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .8px;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

.card-badge-hot {
    background: var(--red);
    color: #fff
}

.card-badge-new {
    background: var(--blue);
    color: #fff
}

.card-badge-top {
    background: var(--orange);
    color: #fff
}

.card-fav {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    border: none;
    transition: all .2s;
}

.card-fav:hover {
    background: var(--red-s);
    border-color: var(--red)
}

.card-body {
    padding: 12px 14px 6px;
    display: flex;
    flex-direction: column;
    gap: 3px
}

.card-brand {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted)
}

.card-title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.card-chips {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    padding: 6px 14px 4px
}

.card-chip {
    font-size: 9px;
    font-weight: 600;
    color: var(--muted);
    background: var(--bg);
    padding: 2px 7px;
    border-radius: 4px;
    white-space: nowrap;
}

.card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px 12px;
}

.card-from {
    font-size: 9px;
    color: var(--muted);
    display: block;
    margin-bottom: 1px
}

.card-price {
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--red);
    font-variant-numeric: tabular-nums;
    letter-spacing: -.01em
}

.card-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--red-s);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--red);
    cursor: pointer;
    transition: all .2s;
}

.card-arrow:hover {
    background: var(--red);
    color: #fff
}

.compare-add-btn {
    display: block;
    width: 100%;
    padding: 8px;
    border: none;
    border-top: 1px solid var(--line);
    background: var(--bg);
    color: var(--ink2);
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .03em;
    transition: all .15s;
}

.compare-add-btn:hover {
    background: var(--red);
    color: #fff
}

.compare-add-btn--pending {
    background: var(--green)!important;
    color: #fff!important
}

.hscroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none
}

.hscroll::-webkit-scrollbar {
    display: none
}

.hs-card {
    flex-shrink: 0;
    width: 140px;
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform .2s,box-shadow .2s;
    text-decoration: none;
    color: inherit;
}

.hs-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh2)
}

.hs-img {
    height: 90px;
    background: linear-gradient(180deg,#f8f7f5,#eeecea);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    overflow: hidden;
}

.hs-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    mix-blend-mode: multiply
}

.hs-body {
    padding: 8px 10px 10px
}

.hs-new {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--red);
    margin-bottom: 2px
}

.hs-brand {
    font-size: 9px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase
}

.hs-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3
}

.hs-price {
    font-size: 11px;
    font-weight: 800;
    color: var(--red);
    margin-top: 3px
}

.ms-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px 48px;
    overflow-x: hidden;
    width: 100%
}

.ms-breadcrumb {
    padding: 12px 0;
    font-size: 11px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.ms-breadcrumb a {
    color: var(--muted)
}

.ms-breadcrumb a:hover {
    color: var(--red)
}

.ms-breadcrumb-sep {
    color: var(--line)
}

.ms-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 320px;
    gap: 20px;
    align-items: start
}

.ms-hero-card {
    background: var(--white);
    border-radius: var(--r);
    box-shadow: var(--sh2);
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--line);
}

.ms-hero-top {
    display: grid;
    grid-template-columns: 220px 1fr;
    border-bottom: 1px solid var(--line)
}

.ms-img-panel {
    border-right: 1px solid var(--line);
    background: #FAFAF8;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 14px 16px;
    gap: 12px;
}

.ms-main-image {
    width: 130px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    animation: floatPhone2 5s ease-in-out infinite;
}

@keyframes floatPhone2 {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.ms-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.12))
}

.ms-thumbs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center
}

.ms-thumb {
    width: 40px;
    height: 40px;
    border: 2px solid var(--line);
    border-radius: 8px;
    background: #F0F0EE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    overflow: hidden;
    transition: border-color .2s;
}

.ms-thumb:hover,.ms-thumb.active {
    border-color: var(--red)
}

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

.ms-info-panel {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.ms-brand-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.ms-brand-badge {
    background: var(--ink);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    text-decoration: none;
}

.ms-brand-badge:hover {
    background: var(--red)
}

.ms-updated {
    font-size: 10px;
    color: var(--muted)
}

.ms-title {
    font-family: 'Playfair Display',serif;
    font-size: clamp(20px,3.5vw,28px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--ink);
}

.ms-title span {
    color: var(--red)
}

.ms-quick-specs {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--rs);
    overflow: hidden
}

.ms-qs-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-bottom: 1px solid var(--line);
    transition: background .15s
}

.ms-qs-row:last-child {
    border-bottom: none
}

.ms-qs-row:hover {
    background: var(--bg)
}

.ms-qs-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    background: var(--bg);
    border-radius: 7px
}

.ms-qs-text {
    flex: 1
}

.ms-qs-val {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    display: block;
    line-height: 1.35
}

.ms-qs-label {
    font-size: 10px;
    color: var(--muted)
}

.ms-price-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 20px;
    background: linear-gradient(90deg,#fff8f8,#fff);
    border-top: 1px solid var(--line);
}

.ms-price-label {
    font-size: 9px;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2px
}

.ms-price-main {
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.02em
}

.ms-price-variant {
    font-size: 10px;
    color: var(--muted);
    margin-top: 2px
}

.ms-compare-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
}

.ms-compare-btn:hover {
    background: #1438b8
}

.ms-strip-btns {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.ms-pictures-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    background: #0f172a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s
}

.ms-pictures-btn:hover {
    background: #1e293b
}

.ms-spec-card {
    background: var(--white);
    border-radius: var(--r);
    box-shadow: var(--sh1);
    border: 1px solid var(--line);
    overflow: hidden;
    margin-bottom: 14px;
}

.ms-spec-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg,#f9f8f5,var(--white));
}

.ms-spec-head-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--red-s);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.ms-spec-head h3 {
    font-size: 12px;
    font-weight: 800;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: .08em
}

.ms-spec-row {
    display: flex;
    padding: 9px 16px;
    border-bottom: 1px solid var(--line);
    transition: background .15s
}

.ms-spec-row:last-child {
    border-bottom: none
}

.ms-spec-row:hover {
    background: var(--bg)
}

.ms-spec-key {
    width: 38%;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    flex-shrink: 0;
    padding-right: 12px
}

.ms-spec-val {
    font-size: 12px;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.5
}

.ms-expert-card {
    background: linear-gradient(135deg,#1c1c26,#111118);
    border-radius: var(--r);
    padding: 20px 22px;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
}

.ms-expert-card::after {
    content: '★';
    position: absolute;
    right: 16px;
    top: 12px;
    font-size: 80px;
    color: rgba(255,255,255,.04);
    line-height: 1;
}

.ms-expert-score {
    font-family: 'Playfair Display',serif;
    font-size: 54px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

.ms-expert-score-max {
    font-size: 20px;
    color: rgba(255,255,255,.4);
    font-weight: 700
}

.ms-expert-label {
    font-size: 11px;
    color: rgba(255,255,255,.4);
    letter-spacing: .05em;
    margin-top: 3px
}

.ms-expert-text {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    margin-top: 14px
}

.ms-score-card {
    background: var(--white);
    border-radius: var(--r);
    box-shadow: var(--sh1);
    border: 1px solid var(--line);
    padding: 18px 20px;
    margin-bottom: 14px;
}

.ms-score-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px
}

.ms-score-head-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--blue-s);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px
}

.ms-score-head h3 {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink)
}

.ms-score-item {
    margin-bottom: 10px
}

.ms-score-item:last-child {
    margin-bottom: 0
}

.ms-score-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px
}

.ms-score-name {
    font-size: 12px;
    color: var(--ink2);
    font-weight: 500
}

.ms-score-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink)
}

.ms-score-track {
    height: 5px;
    background: var(--line);
    border-radius: 3px;
    overflow: hidden
}

.ms-score-fill {
    height: 100%;
    border-radius: 3px;
    width: 0;
    transition: width 1s ease;
    background: var(--red)
}

.ms-score-fill.blue {
    background: var(--blue)
}

.ms-score-fill.green {
    background: var(--green)
}

.ms-pc-card {
    background: var(--white);
    border-radius: var(--r);
    box-shadow: var(--sh1);
    border: 1px solid var(--line);
    overflow: hidden;
    margin-bottom: 14px;
}

.ms-pc-head-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg,#f9f8f5,var(--white));
}

.ms-pc-head-bar h3 {
    font-size: 12px;
    font-weight: 800;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: .08em
}

.ms-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.ms-pros {
    border-right: 1px solid var(--line);
    padding: 14px 16px
}

.ms-cons {
    padding: 14px 16px
}

.ms-pc-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
}

.ms-pc-title.g {
    background: var(--green-s);
    color: var(--green)
}

.ms-pc-title.b {
    background: var(--red-s);
    color: var(--red)
}

.ms-pc-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--ink2);
    padding: 5px 0;
    border-bottom: 1px solid var(--line);
}

.ms-pc-item:last-child {
    border-bottom: none
}

.ms-pc-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 1px
}

.ms-pc-icon.g {
    background: var(--green-s);
    color: var(--green)
}

.ms-pc-icon.b {
    background: var(--red-s);
    color: var(--red)
}

.ms-article-plain {
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--line);
    box-shadow: var(--sh1);
    padding: 20px 22px;
    margin-bottom: 14px;
}

.ms-article-plain h2 {
    font-family: 'Playfair Display',serif;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--ink);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--line);
}

.ms-article-body {
    font-size: 13px;
    line-height: 1.8;
    color: var(--ink2)
}

.ms-article-body p {
    margin-bottom: 10px
}

.ms-article-body h2,.ms-article-body h3 {
    font-family: 'Playfair Display',serif;
    margin: 16px 0 8px;
    color: var(--ink)
}

.ms-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    align-self: start;
}

.ms-sidebar-card {
    background: var(--white);
    border-radius: var(--r);
    box-shadow: var(--sh1);
    border: 1px solid var(--line);
    overflow: hidden;
}

.ms-sidebar-head {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    display: flex;
    align-items: center;
    gap: 7px;
}

.ms-sidebar-head-icon {
    font-size: 16px
}

.ms-variants {
    padding: 4px 0
}

.ms-variant-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid var(--line);
    border-left: 3px solid transparent;
    transition: all .15s;
}

.ms-variant-row:last-child {
    border-bottom: none
}

.ms-variant-row:hover {
    background: var(--bg)
}

.ms-variant-row.active {
    border-left-color: var(--red);
    background: var(--red-s)
}

.ms-var-storage {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink)
}

.ms-var-storage small {
    font-size: 10px;
    color: var(--muted);
    font-weight: 400
}

.ms-var-price {
    font-size: 13px;
    font-weight: 800;
    color: var(--red)
}

.ms-swatches {
    padding: 12px 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.ms-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer
}

.ms-swatch-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2.5px solid transparent;
    transition: all .2s;
}

.ms-swatch.active .ms-swatch-dot {
    border-color: var(--red);
    box-shadow: 0 0 0 2px var(--red-s)
}

.ms-swatch-name {
    font-size: 9px;
    color: var(--muted);
    text-align: center;
    max-width: 52px;
    line-height: 1.3
}

.ms-compare-box {
    background: linear-gradient(135deg,var(--blue-s),#fff);
    border: 1.5px solid #c7d7f8;
    border-radius: var(--r);
    padding: 16px;
}

.ms-compare-box p {
    font-size: 12px;
    color: var(--muted);
    margin: 6px 0 12px;
    line-height: 1.5
}

.ms-compare-box h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 6px
}

.ms-compare-box-btn {
    display: block;
    width: 100%;
    padding: 11px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 9px;
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background .2s;
}

.ms-compare-box-btn:hover {
    background: #1438b8
}

.ms-quick-links {
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--line);
    overflow: hidden
}

.ms-ql-head {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    background: var(--bg)
}

.ms-ql-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    transition: background .15s;
}

.ms-ql-item:last-child {
    border-bottom: none
}

.ms-ql-item:hover {
    background: var(--bg)
}

.ms-ql-arrow {
    color: var(--muted)
}

.ms-related-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
    transition: background .15s;
}

.ms-related-row:last-child {
    border-bottom: none
}

.ms-related-row:hover {
    background: var(--bg)
}

.ms-related-thumb {
    width: 44px;
    height: 44px;
    background: var(--bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    overflow: hidden;
}

.ms-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px
}

.ms-related-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    line-height: 1.3
}

.ms-related-price {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink2)
}

.ms-related-arrow {
    margin-left: auto;
    font-size: 13px;
    color: var(--muted)
}

.filter-layout {
    display: grid;
    grid-template-columns: 256px 1fr;
    gap: 20px;
    align-items: start
}

.filter-sidebar {
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--line);
    box-shadow: var(--sh1);
    position: sticky;
    top: 110px;
    overflow-y: visible;
}

.filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
}

.filter-head h2 {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink)
}

.filter-close {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--muted)
}

.filter-sidebar fieldset {
    border: none;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line)
}

.filter-sidebar fieldset:last-of-type {
    border-bottom: none
}

.filter-sidebar legend {
    font-size: 10px;
    font-weight: 800;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 8px;
    display: block;
    width: 100%
}

.filter-brand-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 200px;
    overflow-y: auto
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 4px;
    font-size: 13px;
    color: var(--ink2);
    cursor: pointer;
    border-radius: 6px;
    transition: background .15s;
    margin: 0;
    user-select: none;
}

.filter-check:hover {
    background: var(--bg)
}

.filter-check input {
    accent-color: var(--red);
    width: 15px;
    height: 15px;
    margin: 0;
    flex-shrink: 0
}

.price-range {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 6px;
    align-items: center
}

.price-range input {
    width: 100%;
    padding: 7px 10px;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    font-size: 13px;
    background: var(--bg)
}

.price-range input:focus {
    outline: none;
    border-color: var(--red)
}

.price-sep {
    color: var(--muted);
    font-weight: 700;
    text-align: center
}

.filter-sidebar select {
    width: 100%;
    padding: 8px 10px;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    font-size: 13px;
    background: var(--bg);
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif
}

.filter-actions {
    display: flex;
    gap: 8px;
    padding: 14px 16px
}

.filter-apply {
    flex: 1
}

.filter-reset {
    padding: 8px 14px!important
}

.filter-mobile-btn {
    display: none;
    margin-bottom: 12px
}

.filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 200
}

body.filter-open .filter-overlay {
    display: block
}

body.filter-open {
    overflow: hidden
}

.ms-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    margin: 24px 0 8px;
    font-size: 13px;
}

.ms-pagination .msp-arrow,.ms-pagination .msp-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border-radius: 8px;
    border: 1.5px solid var(--line);
    background: var(--white);
    color: var(--ink2);
    text-decoration: none;
    font-weight: 600;
    transition: all .15s;
}

.ms-pagination .msp-arrow:hover,.ms-pagination .msp-page:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-s)
}

.ms-pagination .msp-page.current {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    cursor: default;
    pointer-events: none
}

.ms-pagination .msp-arrow.disabled {
    opacity: .35;
    cursor: not-allowed
}

.ms-pagination .msp-pages {
    display: inline-flex;
    gap: 5px;
    flex-wrap: wrap;
    align-items: center
}

.ms-pagination .msp-ellipsis {
    padding: 0 3px;
    color: var(--muted);
    user-select: none
}

.ms-pagination .msp-mobile-summary {
    display: none;
    font-weight: 700;
    color: var(--ink2);
    padding: 0 6px
}

.search-hero {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 20px 18px
}

.search-hero-inner {
    max-width: 1280px;
    margin: 0 auto
}

.search-hero-title {
    font-family: 'Playfair Display',serif;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px
}

.search-page-form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px
}

.search-page-form input[type="search"] {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-size: 14px;
    background: var(--bg);
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
}

.search-page-form input:focus {
    outline: none;
    border-color: var(--red)
}

.search-page-form button {
    padding: 12px 20px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .2s;
}

.search-page-form button:hover {
    background: #c91e31
}

.search-page-form button::before {
    content: '●';
    font-size: 8px;
    color: rgba(255,255,255,.6)
}

.search-cat-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap
}

.search-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: var(--bg);
    border: 1.5px solid var(--line);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink2);
    cursor: pointer;
    text-decoration: none;
    transition: all .15s;
}

.search-cat-pill:hover,.search-cat-pill.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff
}

.search-count {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 16px
}

.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,.5);
    padding: 40px 0 20px;
    margin-top: 40px
}

.footer-top {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 18px 32px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
    font-family: 'Playfair Display',serif;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px
}

.footer-logo span {
    color: var(--red)
}

.footer-desc {
    font-size: 12px;
    line-height: 1.7;
    max-width: 260px
}

.footer-col-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 10px
}

.footer-link {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,.45);
    padding: 4px 0;
    text-decoration: none;
    transition: color .15s
}

.footer-link:hover {
    color: #fff
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
}

.footer-copy {
    color: rgba(255,255,255,.3)
}

.footer-bottom-links {
    display: flex;
    gap: 16px
}

.footer-bottom-links a {
    color: rgba(255,255,255,.3);
    text-decoration: none
}

.footer-bottom-links a:hover {
    color: rgba(255,255,255,.7)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 9px 18px;
    border-radius: 9px;
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all .15s;
    line-height: 1.2;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: #c91e31
}

.btn-ghost {
    background: var(--white);
    color: var(--ink2);
    border: 1.5px solid var(--line)
}

.btn-ghost:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-s)
}

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

.btn-dark:hover {
    background: #2a2a35
}

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

.btn-blue:hover {
    background: #1438b8
}

.page-band {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 20px 18px 16px
}

.page-band-inner {
    max-width: 1280px;
    margin: 0 auto
}

.page-band-title {
    font-family: 'Playfair Display',serif;
    font-size: clamp(22px,4vw,32px);
    font-weight: 900;
    color: var(--ink)
}

.page-band-title span {
    color: var(--red)
}

.page-band-count {
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px
}

.ad-zone {
    margin: 0 auto;
    text-align: center;
    overflow: hidden
}

.ad-zone:empty {
    display: none
}

img.lz {
    opacity: 0;
    transition: opacity .3s ease
}

img.lz.loaded {
    opacity: 1
}

.card-thumb:has(img.lz:not(.loaded))::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    border: 2.5px solid var(--line);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin .7s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

@keyframes spin {
    to {
        transform: translate(-50%,-50%) rotate(360deg)
    }
}

@media(max-width: 1100px) {
    .ms-layout {
        grid-template-columns:1fr
    }

    .ms-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width: 900px) {
    .hero-inner {
        grid-template-columns:1fr
    }

    .hero-phones-vis {
        display: none
    }

    .budget-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .promo-grid {
        grid-template-columns: 1fr 1fr
    }

    .filter-layout {
        grid-template-columns: 1fr
    }

    .filter-mobile-btn {
        display: inline-flex
    }

    .filter-sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        left: -100%;
        width: 88%;
        max-width: 320px;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        z-index: 210;
        transition: left .25s ease;
        box-shadow: 4px 0 24px rgba(0,0,0,.15);
    }

    .filter-sidebar.open {
        left: 0
    }

    .filter-close {
        display: flex
    }
}

@media(max-width: 740px) {
    .mobile-bottom-nav {
        display:block
    }

    .main-nav ul {
        display: none
    }

    .nav-flag {
        display: none
    }

    .nav-toggle {
        display: block
    }

    body {
        padding-bottom: 68px
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width: 640px) {
    .card-grid {
        grid-template-columns:repeat(2,1fr);
        gap: 10px
    }

    .ms-hero-top {
        grid-template-columns: 1fr
    }

    .ms-img-panel {
        border-right: none;
        border-bottom: 1px solid var(--line)
    }

    .ms-layout {
        grid-template-columns: 1fr
    }

    .ms-sidebar {
        display: flex;
        flex-direction: column
    }

    .ms-pros-cons {
        grid-template-columns: 1fr
    }

    .ms-pros {
        border-right: none;
        border-bottom: 1px solid var(--line)
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .brand-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .budget-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .promo-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width: 480px) {
    .hero-title {
        font-size:28px
    }

    .card-title {
        font-size: 11px
    }

    .ms-price-main {
        font-size: 24px
    }

    .brand-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media(max-width: 600px) {
    .ms-pagination .msp-pages {
        display:none
    }

    .ms-pagination .msp-mobile-summary {
        display: inline
    }
}

.cmp-section-head {
    background: var(--ink)
}

.cmp-key-cell {
    color: var(--red)
}

.cmp-diff {
    background: #fffbeb
}

.cmp-diff td.cmp-key-cell {
    background: #fff3cd
}

.main-nav.open #nav-menu {
    display: flex!important
}

.nav-flag {
    display: none
}

.site-header .ah-link {
    display: none
}

.main-nav.open #nav-menu {
    display: flex!important
}

@media(max-width: 700px) {
    .ms-hero-top {
        grid-template-columns:1fr!important
    }

    .ms-img-panel {
        border-right: none;
        border-bottom: 1px solid var(--line)
    }

    .ms-layout {
        grid-template-columns: 1fr!important
    }

    .ms-sidebar {
        position: relative!important;
        top: auto!important;
        max-height: none!important;
        overflow-y: visible!important;
        display: flex!important;
        flex-direction: column!important;
    }

    .ms-main-image {
        width: 120px;
        height: 200px;
        margin: 0 auto
    }
}

.main-nav {
    flex-shrink: 0
}

.main-nav ul {
    display: flex;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0
}

.main-nav a {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink2);
    padding: 6px 10px;
    border-radius: 20px;
    text-decoration: none;
    transition: all .15s;
    white-space: nowrap;
}

.main-nav a:hover {
    background: var(--bg);
    color: var(--red)
}

.main-nav a.active {
    background: var(--red);
    color: #fff
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--bg);
    border: 1.5px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all .3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.nav-flag {
    font-size: 11px;
    font-weight: 700;
    background: var(--ink);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 450;
    background: transparent;
    pointer-events: none;
}

.nav-overlay.open {
    display: block;
    pointer-events: all;
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(300px,85vw);
    background: var(--white);
    z-index: 500;
    display: flex;
    flex-direction: column;
    transition: right .3s cubic-bezier(.4,0,.2,1);
    box-shadow: -6px 0 40px rgba(0,0,0,.15);
    overflow-y: auto;
}

.nav-drawer.open {
    right: 0
}

body.nav-open {
    overflow: hidden
}

.nav-drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: linear-gradient(135deg,var(--ink) 0%,#1a1a30 100%);
    flex-shrink: 0;
}

.nav-drawer-brand {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.nav-drawer-logo {
    font-family: 'Playfair Display',serif;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
}

.nav-drawer-logo span {
    color: var(--red)
}

.nav-drawer-tagline {
    font-size: 10px;
    color: rgba(255,255,255,.45);
    letter-spacing: .05em
}

.nav-drawer-close {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}

.nav-drawer-close:hover {
    background: rgba(255,255,255,.25)
}

.nav-drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    flex-shrink: 0
}

.ndl {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    transition: background .15s;
    color: var(--ink);
}

.ndl:last-child {
    border-bottom: none
}

.ndl:hover {
    background: var(--red-s)
}

.ndl:hover .ndl-text {
    color: var(--red)
}

.ndl-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ndl:nth-child(1) .ndl-icon {
    background: #fff3e0
}

.ndl:nth-child(2) .ndl-icon {
    background: #e8f5e9
}

.ndl:nth-child(3) .ndl-icon {
    background: #e3f2fd
}

.ndl:nth-child(4) .ndl-icon {
    background: #fce4ec
}

.ndl:nth-child(5) .ndl-icon {
    background: #f3e5f5
}

.ndl:nth-child(n+6) .ndl-icon {
    background: var(--bg)
}

.ndl-text {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink)
}

.ndl-arr {
    font-size: 16px;
    color: var(--muted)
}

.nav-drawer-section {
    padding: 16px 20px 20px;
    flex-shrink: 0
}

.nav-drawer-section-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.nav-drawer-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.ndc {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    background: var(--bg);
    border: 1.5px solid var(--line);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink2);
    text-decoration: none;
    transition: all .2s;
}

.ndc:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff
}

@media (max-width: 860px) {
    .main-nav ul {
        display:none
    }

    .nav-toggle {
        display: flex
    }

    .nav-flag {
        display: none
    }
}

@media (min-width: 861px) {
    .nav-toggle {
        display:none !important
    }

    .nav-drawer {
        display: none !important
    }

    .nav-overlay {
        display: none !important
    }
}
