:root {
    --font-sans: "Be Vietnam Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --container: 1180px;
    --gutter: 20px;
    --color-primary: var(--primary, #ee4d2d);
    --color-primary-dark: var(--primary-dark, #d83c1e);
    --color-accent: var(--accent, #ffb21c);
    --color-text: var(--text, #172033);
    --color-muted: #667085;
    --color-soft: #f6f7f9;
    --color-line: #e7e9ee;
    --color-surface: #ffffff;
    --color-success: #16834b;
    --color-warning: #b76e00;
    --color-danger: #cc2d2d;
    --color-shopee: #ee4d2d;
    --shadow-sm: 0 3px 14px rgba(24, 32, 51, 0.06);
    --shadow-md: 0 12px 32px rgba(24, 32, 51, 0.1);
    --shadow-lg: 0 24px 60px rgba(24, 32, 51, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --transition: 180ms ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 116px;
}

html:has(.header-search input:focus) {
    scroll-padding-top: 0;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--color-text);
    background: var(--background, #fff);
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.is-menu-open,
body.is-filter-open {
    overflow: hidden;
}

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

img {
    display: block;
    height: auto;
}

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

button,
[role="button"] {
    cursor: pointer;
}

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

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
dd,
figure,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: #111827;
    font-weight: 700;
    line-height: 1.3;
}

input,
select,
textarea {
    width: 100%;
    color: var(--color-text);
    background: #fff;
    border: 1px solid #d9dde5;
    border-radius: var(--radius-sm);
    outline: 0;
    transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 14%, transparent);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--color-primary) 32%, transparent);
    outline-offset: 2px;
}

.container,
.site-container {
    width: min(calc(100% - (var(--gutter) * 2)), var(--container));
    margin-inline: auto;
}

.site-main {
    min-height: 50vh;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 14px;
    color: #fff;
    background: #111827;
    border-radius: 8px;
    transform: translateY(-150%);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

.icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 9px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 700;
}

.text-link:hover {
    color: var(--color-primary-dark);
}

.button,
.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    color: #fff;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 9px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button:hover,
.btn:hover {
    color: #fff;
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    box-shadow: 0 8px 18px color-mix(in srgb, var(--color-primary) 20%, transparent);
    transform: translateY(-1px);
}

.button--secondary,
.button--outline,
.button--light,
.button--ghost {
    color: var(--color-text);
    background: #fff;
    border-color: #d9dde5;
}

.button--secondary:hover,
.button--outline:hover,
.button--light:hover,
.button--ghost:hover {
    color: var(--color-primary);
    background: #fff8f5;
    border-color: var(--color-primary);
    box-shadow: none;
}

.button--small {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 14px;
}

.button--large {
    min-height: 50px;
    padding-inline: 24px;
}

.button--block {
    width: 100%;
}

.alert {
    margin: 16px 0;
    padding: 13px 15px;
    color: #8a4c00;
    background: #fff8e8;
    border: 1px solid #f5dfae;
    border-radius: var(--radius-sm);
    font-size: 15px;
}

.alert--error {
    color: #9f2525;
    background: #fff2f2;
    border-color: #f1caca;
}

.alert--success {
    color: #106b3d;
    background: #eefaf3;
    border-color: #c9e9d6;
}

.notice {
    margin: 16px 0;
    padding: 13px 15px;
    color: #475467;
    background: #f7f8fa;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.notice p {
    margin: 0;
}

.notice--warning {
    color: #8a4c00;
    background: #fff8e8;
    border-color: #f5dfae;
}

.notice--error {
    color: #9f2525;
    background: #fff2f2;
    border-color: #f1caca;
}

.notice--success {
    color: #106b3d;
    background: #eefaf3;
    border-color: #c9e9d6;
}

.notice--info {
    color: #175c88;
    background: #eff8ff;
    border-color: #cce6f7;
}

.empty-state {
    padding: 40px 24px;
    color: var(--color-muted);
    background: #fff;
    border: 1px dashed #cfd4dd;
    border-radius: var(--radius-md);
    text-align: center;
}

.empty-state h2,
.empty-state h3 {
    margin-bottom: 8px;
}

/* Header */
.site-header {
    position: sticky;
    top: -34px;
    z-index: 100;
    background: #fff;
    box-shadow: 0 7px 25px rgba(24, 32, 51, 0.08);
}

.site-notice {
    color: #fff;
    background: var(--color-primary);
    font-size: 12px;
}

.site-notice__inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-notice p {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
}

.site-notice .icon {
    width: 16px;
    height: 16px;
}

.site-notice__disclosure {
    opacity: 0.9;
    text-align: right;
}

.header-main {
    position: relative;
    z-index: 4;
    background: #fff;
}

.header-main__inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: auto minmax(280px, 1fr) auto;
    align-items: center;
    gap: 30px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-brand__wordmark {
    color: #1d2939;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.045em;
}

.site-brand__wordmark span {
    color: var(--color-primary);
}

.header-search {
    position: relative;
    min-width: 0;
    display: flex;
    align-items: center;
    padding: 3px;
    background: #fff;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
}

.header-search input {
    height: 42px;
    min-width: 0;
    padding: 0 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 15px;
}

.header-search input:focus {
    box-shadow: none;
}

.header-search button {
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex: 0 0 auto;
    padding: 0 18px;
    color: #fff;
    background: var(--color-primary);
    border: 0;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
}

.header-search button:hover {
    background: var(--color-primary-dark);
}

.header-search .icon {
    width: 18px;
    height: 18px;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 9px);
    left: -2px;
    right: -2px;
    z-index: 20;
    max-height: min(460px, 66vh);
    padding: 7px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.search-suggestion {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    align-items: center;
    gap: 11px;
    padding: 8px;
    border-radius: 8px;
    transition: background var(--transition);
}

.search-suggestion:hover,
.search-suggestion:focus-visible {
    background: #fff6f2;
}

.search-suggestion img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    background: #f7f8fa;
    border-radius: 7px;
}

.search-suggestion__copy {
    min-width: 0;
}

.search-suggestion strong,
.search-suggestion small {
    display: block;
}

.search-suggestion strong {
    overflow: hidden;
    font-size: 14px;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-suggestion small {
    margin-top: 3px;
    color: var(--color-muted);
    font-size: 13px;
}

.search-suggestion b {
    color: var(--color-primary);
    font-size: 14px;
    white-space: nowrap;
}

.search-suggestion--all {
    display: flex;
    justify-content: center;
    margin-top: 5px;
    padding: 10px;
    color: var(--color-primary);
    border-top: 1px solid var(--color-line);
    font-size: 14px;
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}

.header-action__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--color-primary);
    background: #fff5f1;
    border-radius: 50%;
}

.header-action__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-action small,
.header-action strong {
    display: block;
    line-height: 1.3;
}

.header-action small {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 500;
}

.header-action strong {
    margin-top: 2px;
    font-size: 14px;
    font-weight: 700;
}

.header-action:hover strong {
    color: var(--color-primary);
}

.header-menu-button {
    width: 40px;
    height: 40px;
    display: none;
    place-items: center;
    padding: 0;
    color: var(--color-text);
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 9px;
}

.header-menu-button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.header-nav-wrap {
    position: relative;
    z-index: 3;
    background: #fff;
    border-top: 1px solid #f0f1f3;
    border-bottom: 1px solid var(--color-line);
}

.header-nav__inner {
    position: relative;
    height: 48px;
    display: flex;
    align-items: stretch;
    gap: 24px;
}

.catalog-nav {
    position: relative;
    width: 260px;
    flex: 0 0 260px;
}

.catalog-nav__trigger {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    color: #fff;
    background: var(--color-primary);
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.catalog-nav__trigger > svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.catalog-nav__chevron {
    width: 17px !important;
    margin-left: auto;
    transition: transform var(--transition);
}

.catalog-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 30;
    width: min(var(--container), calc(100vw - (var(--gutter) * 2)));
    max-height: calc(100vh - 180px);
    padding: 18px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    border: 1px solid var(--color-line);
    border-top: 2px solid var(--color-primary);
    border-radius: 0 0 14px 14px;
    box-shadow: var(--shadow-md);
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.catalog-nav:hover .catalog-nav__dropdown,
.catalog-nav:focus-within .catalog-nav__dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.catalog-nav:hover .catalog-nav__chevron,
.catalog-nav:focus-within .catalog-nav__chevron {
    transform: rotate(180deg);
}

.catalog-nav__dropdown-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--color-line);
}

.catalog-nav__dropdown-head strong {
    font-size: 17px;
}

.catalog-nav__dropdown-head span {
    color: var(--color-muted);
    font-size: 13px;
}

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

.catalog-nav__group {
    min-width: 0;
}

.catalog-nav__group-title {
    min-height: 38px;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 15px;
    align-items: center;
    gap: 9px;
    padding-bottom: 9px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 750;
}

.catalog-nav__group-title:hover {
    color: var(--color-primary);
}

.catalog-nav__group-title > svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.catalog-nav__children {
    display: grid;
    gap: 2px;
    padding-left: 39px;
}

.catalog-nav__children a {
    padding: 5px 0;
    color: #475467;
    font-size: 13px;
    line-height: 1.35;
}

.catalog-nav__children a:hover {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.catalog-nav__children .catalog-nav__children-more {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
}

.catalog-nav__category-icon,
.product-mega-category__icon {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    color: var(--color-primary);
    background: #fff3ed;
    border-radius: 7px;
}

.catalog-nav__category-icon svg,
.product-mega-category__svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.catalog-nav__dropdown .catalog-nav__all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding: 13px 2px 0;
    color: var(--color-primary);
    border-top: 1px solid var(--color-line);
    font-size: 14px;
    font-weight: 700;
}

.desktop-navigation {
    position: static;
    min-width: 0;
    flex: 1;
}

.desktop-menu {
    height: 100%;
    display: flex;
    align-items: stretch;
    gap: 3px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.desktop-menu > li {
    position: relative;
    display: flex;
    align-items: stretch;
}

.desktop-menu > li.has-product-mega {
    position: static;
}

.desktop-menu > li > a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 650;
    white-space: nowrap;
    transition: color var(--transition);
}

.desktop-menu > li > a:hover,
.desktop-menu > li.is-active > a,
.desktop-menu > li > a.is-active {
    color: var(--color-primary);
}

.menu-caret {
    width: 7px;
    height: 7px;
    margin-top: -4px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform var(--transition);
}

.desktop-menu > li:hover .menu-caret,
.desktop-menu > li:focus-within .menu-caret {
    transform: translateY(3px) rotate(225deg);
}

.menu-dropdown,
.menu-flyout,
.product-mega-menu {
    position: absolute;
    z-index: 30;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    border: 1px solid var(--color-line);
    border-top: 2px solid var(--color-primary);
    border-radius: 0 0 11px 11px;
    box-shadow: var(--shadow-md);
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.menu-dropdown {
    top: 100%;
    left: 0;
    min-width: 240px;
    padding: 7px;
}

.menu-dropdown--wide {
    min-width: 520px;
}

.menu-dropdown__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-dropdown__list li {
    position: relative;
}

.menu-dropdown__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 9px 11px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
}

.menu-dropdown__list a:hover {
    color: var(--color-primary);
    background: #fff5f1;
}

.menu-flyout {
    top: -9px;
    left: calc(100% - 2px);
    min-width: 220px;
    padding: 7px;
}

.desktop-menu li:hover > .menu-dropdown,
.desktop-menu li:focus-within > .menu-dropdown,
.menu-dropdown__list li:hover > .menu-flyout,
.menu-dropdown__list li:focus-within > .menu-flyout,
.desktop-menu li:hover > .product-mega-menu,
.desktop-menu li:focus-within > .product-mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.product-mega-menu {
    top: 100%;
    right: 0;
    left: 0;
    width: auto;
    max-height: calc(100vh - 180px);
    padding: 18px;
    overflow-y: auto;
    border-radius: 0 0 14px 14px;
}

.product-mega-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--color-line);
}

.product-mega-menu__head strong {
    font-size: 17px;
}

.product-mega-menu__head span {
    color: var(--color-muted);
    font-size: 13px;
}

.product-mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 24px;
    padding-top: 16px;
}

.product-mega-category__title {
    min-height: 38px;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 15px;
    align-items: center;
    gap: 9px;
    padding-bottom: 9px;
    font-size: 14px;
    font-weight: 750;
}

.product-mega-category__title:hover {
    color: var(--color-primary);
}

.product-mega-category__title > svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.product-mega-category__links {
    display: grid;
    gap: 2px;
    padding-left: 39px;
}

.product-mega-category__sub {
    padding: 5px 0;
    color: #475467;
    font-size: 13px;
    line-height: 1.35;
}

.product-mega-category__sub:hover {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-mega-category__more {
    padding: 5px 0;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
}

.product-mega-menu__all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding: 13px 2px 0;
    color: var(--color-primary);
    border-top: 1px solid var(--color-line);
    font-size: 14px;
    font-weight: 700;
}

.header-nav__highlight {
    display: flex;
    align-items: center;
    gap: 6px;
    align-self: center;
    margin-left: auto;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.header-nav__highlight .icon {
    width: 18px;
    height: 18px;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
}

.mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background: rgba(15, 23, 42, 0.58);
    border: 0;
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(390px, calc(100vw - 42px));
    padding: 18px;
    overflow-y: auto;
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateX(-102%);
    transition: transform 240ms ease;
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-line);
}

.mobile-menu__head > button {
    width: 38px;
    height: 38px;
    padding: 0;
    color: var(--color-muted);
    background: #f6f7f9;
    border: 0;
    border-radius: 50%;
    font-size: 27px;
    line-height: 1;
}

.site-brand--mobile .site-brand__wordmark {
    font-size: 20px;
}

.mobile-search {
    position: relative;
    display: flex;
    align-items: center;
    margin: 17px 0;
    border: 1px solid #d9dde5;
    border-radius: 9px;
}

.mobile-search > .icon {
    width: 18px;
    margin-left: 12px;
    color: var(--color-muted);
}

.mobile-search input {
    height: 43px;
    padding: 0 8px;
    border: 0;
    box-shadow: none;
    font-size: 16px;
}

.mobile-search button {
    align-self: stretch;
    padding: 0 13px;
    color: var(--color-primary);
    background: transparent;
    border: 0;
    font-size: 14px;
    font-weight: 700;
}

.mobile-nav-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
}

.mobile-category-groups {
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: 9px;
}

.mobile-category-group + .mobile-category-group {
    border-top: 1px solid var(--color-line);
}

.mobile-category-group summary {
    position: relative;
    padding: 11px 36px 11px 12px;
    color: var(--color-text);
    background: #f7f8fa;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.mobile-category-group summary::-webkit-details-marker {
    display: none;
}

.mobile-category-group summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 13px;
    color: var(--color-muted);
    font-size: 18px;
    font-weight: 400;
    transform: translateY(-50%);
}

.mobile-category-group[open] summary::after {
    content: "−";
}

.mobile-category-group__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px 12px;
    padding: 7px 12px 10px;
}

.mobile-category-group__links a {
    padding: 7px 0;
    color: #475467;
    font-size: 13px;
    line-height: 1.35;
}

.mobile-category-group__links .mobile-category-group__all {
    grid-column: 1 / -1;
    color: var(--color-primary);
    font-weight: 700;
}

.mobile-menu-links {
    border-top: 1px solid var(--color-line);
}

.mobile-nav-item,
.mobile-submenu-toggle {
    width: 100%;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 4px;
    color: var(--color-text);
    background: transparent;
    border: 0;
    border-bottom: 1px solid #f0f1f3;
    font-size: 15px;
    font-weight: 650;
    text-align: left;
}

.mobile-submenu-toggle::after {
    content: "+";
    color: var(--color-muted);
    font-size: 19px;
    font-weight: 400;
}

.mobile-submenu-toggle.is-open::after {
    content: "−";
}

.mobile-submenu {
    display: none;
    padding-left: 13px;
    background: #fafafa;
}

.mobile-submenu.is-open {
    display: block;
}

.mobile-nav-item--level-1,
.mobile-nav-item--level-2,
.mobile-nav-item--level-3,
.mobile-nav-item--level-4 {
    color: var(--color-muted);
    font-weight: 500;
}

.mobile-nav-item.is-active,
.mobile-submenu-toggle.is-active {
    color: var(--color-primary);
}

.mobile-menu__note {
    margin: 18px 0 0;
    padding: 12px;
    color: var(--color-muted);
    background: #fff8f5;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
}

/* Shared page structure */
.section {
    padding: 58px 0;
}

.section--soft {
    background: var(--color-soft);
}

.section--compact {
    padding: 38px 0;
}

.section-heading {
    margin-bottom: 24px;
}

.section-heading--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.section-heading h1,
.section-heading h2 {
    margin-bottom: 7px;
    font-size: clamp(28px, 3vw, 36px);
    letter-spacing: -0.035em;
}

.section-heading h3 {
    margin-bottom: 5px;
}

.section-heading p {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--color-muted);
}

.section-heading > div > span:not(.eyebrow) {
    display: block;
    margin-bottom: 5px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.section-heading--compact {
    margin-bottom: 14px;
}

.section-heading--compact h2 {
    margin: 0;
    font-size: 20px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    padding: 15px 0;
    color: #7a8290;
    font-size: 13px;
}

.breadcrumbs a:hover {
    color: var(--color-primary);
}

.page-hero {
    padding: 43px 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(238, 77, 45, 0.12), transparent 30%),
        linear-gradient(135deg, #fff8f5 0%, #fff 55%, #f8fafc 100%);
    border-bottom: 1px solid var(--color-line);
}

.page-hero h1 {
    max-width: 820px;
    margin-bottom: 10px;
    font-size: clamp(32px, 4vw, 46px);
    letter-spacing: -0.045em;
}

.page-hero p {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--color-muted);
}

.content-shell {
    width: min(calc(100% - (var(--gutter) * 2)), var(--container));
    margin-inline: auto;
    padding-block: 42px 64px;
}

.content-card {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.content-shell--narrow {
    max-width: 940px;
}

.page-hero--catalog,
.page-hero--brand,
.page-hero--search,
.page-hero--posts,
.page-hero--content,
.page-hero--contact,
.page-hero--compare {
    color: #fff;
    background:
        radial-gradient(circle at 82% 20%, rgba(238, 77, 45, 0.78), transparent 28%),
        linear-gradient(130deg, #172033 0%, #263651 67%, #3a2631 100%);
    border-bottom: 0;
}

.page-hero--catalog h1,
.page-hero--brand h1,
.page-hero--search h1,
.page-hero--posts h1,
.page-hero--content h1,
.page-hero--contact h1,
.page-hero--compare h1 {
    color: #fff;
}

.page-hero--catalog p,
.page-hero--brand p,
.page-hero--search p,
.page-hero--posts p,
.page-hero--content p,
.page-hero--contact p,
.page-hero--compare p {
    color: #d2d9e4;
}

.page-hero__content {
    max-width: 830px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.page-hero__centered {
    max-width: 850px;
    text-align: center;
}

.page-hero__centered > p {
    margin-inline: auto;
}

.page-hero__centered .search-form--large {
    margin-top: 22px;
    margin-bottom: 0;
}

.page-hero__stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 6px 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 650;
}

.breadcrumbs--light {
    color: #bbc5d3;
}

.breadcrumbs--light a:hover {
    color: #fff;
}

.category-shortcuts {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.category-navigation {
    margin-bottom: 22px;
}

.category-navigation > .category-shortcuts {
    flex-wrap: wrap;
    margin-bottom: 0;
    padding-bottom: 0;
    overflow: visible;
}

.category-navigation .category-shortcut {
    min-height: 34px;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
}

.category-shortcut,
.category-pill-list a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    padding: 7px 13px;
    color: #475467;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 99px;
    font-size: 14px;
    font-weight: 650;
    white-space: nowrap;
}

.category-shortcut img {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    object-fit: contain;
}

.category-shortcut strong,
.category-shortcut small {
    display: block;
    line-height: 1.35;
}

.category-shortcut small {
    margin-top: 2px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 500;
}

.category-shortcut:hover,
.category-shortcut.is-active,
.category-pill-list a:hover,
.category-pill-list a.is-active {
    color: var(--color-primary);
    background: #fff5f1;
    border-color: #ffc3b2;
}

.catalog-results {
    min-width: 0;
    position: relative;
}

.catalog-layout.is-loading .catalog-results {
    pointer-events: none;
}

.catalog-layout.is-loading .catalog-results > * {
    opacity: 0.42;
    transition: opacity 160ms ease;
}

.catalog-layout.is-loading .catalog-results::after {
    position: absolute;
    top: 96px;
    left: 50%;
    z-index: 5;
    width: 38px;
    height: 38px;
    content: '';
    border: 4px solid #ffe0d7;
    border-top-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 7px 20px rgba(23, 32, 51, 0.12);
    transform: translateX(-50%);
    animation: catalog-loading-spin 700ms linear infinite;
}

@keyframes catalog-loading-spin {
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

.catalog-filter__head a {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 650;
}

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

.catalog-filter__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.catalog-filter__head h2 {
    margin: 0;
    font-size: 19px;
}

.catalog-filter fieldset {
    margin: 0;
    padding: 16px 0;
    border: 0;
    border-top: 1px solid var(--color-line);
}

.catalog-filter legend {
    width: 100%;
    margin-bottom: 10px;
    padding: 0;
    font-size: 15px;
    font-weight: 700;
}

.catalog-filter .choice {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 9px;
    color: #475467;
    font-size: 14px;
    cursor: pointer;
}

.catalog-filter .choice input {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    accent-color: var(--color-primary);
}

.catalog-filter .choice--locked {
    cursor: default;
}

.catalog-filter .choice--locked span {
    color: var(--color-text);
    font-weight: 650;
}

.catalog-filter .choice--locked small {
    margin-left: 4px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 650;
}

.catalog-filter__price {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.catalog-filter__price input {
    height: 39px;
    padding: 0 9px;
    font-size: 14px;
}

@media (min-width: 921px) {
    .catalog-filter > .button--block[type="submit"] {
        display: none;
    }
}

.category-seo-content {
    margin-top: 42px;
    padding: 27px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
}

.brand-hero__identity {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand-logo {
    width: 112px;
    height: 84px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    padding: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 13px;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.brand-card {
    min-height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 11px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.brand-card:hover {
    color: var(--color-primary);
    border-color: #ffc3b2;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.brand-card img {
    max-width: 125px;
    max-height: 55px;
    object-fit: contain;
}

.brand-card__logo {
    min-height: 55px;
    display: grid;
    place-items: center;
}

.brand-card__logo > strong {
    color: var(--color-primary);
    font-size: 23px;
}

.brand-card > span:last-child strong,
.brand-card > span:last-child small {
    display: block;
}

.brand-card > span:last-child small {
    margin-top: 3px;
    color: var(--color-muted);
    font-size: 12px;
}

.brand-seo-content {
    margin-top: 38px;
    padding: 27px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
}

.brand-card strong {
    font-size: 15px;
}

.search-form--large,
.search-form--compact {
    display: flex;
    gap: 8px;
    padding: 5px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 11px;
    box-shadow: var(--shadow-sm);
}

.search-form--large {
    max-width: 760px;
    margin: 0 auto 26px;
    border: 2px solid var(--color-primary);
}

.search-form--large input,
.search-form--compact input {
    height: 44px;
    padding-inline: 12px;
    border: 0;
    box-shadow: none;
    font-size: 15px;
}

.search-form--compact button {
    flex: 0 0 auto;
    padding: 0 15px;
    color: #fff;
    background: var(--color-primary);
    border: 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.category-pill-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.posts-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 23px;
}

.posts-toolbar .category-pill-list {
    margin: 0;
}

.post-header {
    max-width: 880px;
    margin: 0 auto 26px;
    text-align: center;
}

.post-detail {
    padding-bottom: 62px;
    background: #f7f8fa;
}

.post-category {
    display: inline-flex;
    margin-bottom: 11px;
    padding: 5px 9px;
    color: var(--color-primary);
    background: #fff2ec;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
}

.post-header__lead {
    max-width: 780px;
    margin: 0 auto 16px;
    color: var(--color-muted);
    font-size: 18px;
}

.post-header h1 {
    margin-bottom: 14px;
    font-size: clamp(31px, 4.5vw, 46px);
    letter-spacing: -0.045em;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px 16px;
    flex-wrap: wrap;
    color: var(--color-muted);
    font-size: 14px;
}

.post-cover {
    max-width: 1040px;
    margin: 0 auto 30px;
    overflow: hidden;
    background: #f1f3f6;
    border-radius: var(--radius-lg);
}

.post-cover img {
    width: 100%;
    max-height: 580px;
    object-fit: cover;
}

.post-cover figcaption {
    padding: 9px 15px;
    color: var(--color-muted);
    background: #fff;
    font-size: 13px;
    text-align: center;
}

.post-layout,
.content-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 28px;
}

.post-content,
.content-page__article {
    min-width: 0;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
}

.post-sidebar,
.content-page__sidebar {
    position: sticky;
    top: 154px;
    display: grid;
    gap: 17px;
}

.post-sidebar__card,
.content-page__sidebar > section {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 10px;
}

.post-sidebar__card h2,
.post-sidebar__card h3,
.content-page__sidebar h2,
.content-page__sidebar h3 {
    margin-bottom: 12px;
    font-size: 17px;
}

.post-sidebar__card nav {
    display: grid;
}

.post-sidebar__card nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    color: #475467;
    border-top: 1px solid #eef0f2;
    font-size: 14px;
}

.post-sidebar__card nav a:first-child {
    border-top: 0;
}

.post-sidebar__card nav a:hover {
    color: var(--color-primary);
}

.post-sidebar__card nav small {
    color: #939aa6;
    font-size: 12px;
}

.post-sidebar__notice .marketplace-mark {
    margin-bottom: 10px;
}

.post-sidebar__notice p {
    color: var(--color-muted);
    font-size: 14px;
}

.post-card__body > span,
.post-card__body > small {
    display: block;
    margin-bottom: 6px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 650;
}

.post-card__body > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 13px;
}

.post-card__body > div small {
    color: var(--color-muted);
    font-size: 12px;
}

.post-card__body > div a,
.section-heading > a {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
}

.content-page__cover {
    margin-bottom: 24px;
    overflow: hidden;
    background: #f1f3f6;
    border-radius: var(--radius-md);
}

.content-page__cover img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.content-page__sidebar nav {
    display: grid;
}

.content-page__sidebar nav a {
    padding: 9px 0;
    color: #475467;
    border-top: 1px solid #eef0f2;
    font-size: 14px;
}

.content-page__sidebar nav a:first-child {
    border-top: 0;
}

.content-page__sidebar nav a:hover,
.content-page__sidebar nav a.is-active {
    color: var(--color-primary);
}

.content-page__support p {
    color: var(--color-muted);
    font-size: 14px;
}

.contact-info,
.contact-form-card {
    padding: 25px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
}

.contact-info h2,
.contact-form-card h2 {
    margin-bottom: 12px;
    font-size: 22px;
}

.contact-info__list {
    display: grid;
    gap: 11px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.contact-info__list > a,
.contact-info__list > div {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 13px;
    color: #475467;
    background: #f7f8fa;
    border-radius: 8px;
}

.contact-info__list > a > span:first-child,
.contact-info__list > div > span:first-child {
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--color-primary);
    background: #fff;
    border-radius: 50%;
}

.contact-info__list small,
.contact-info__list strong {
    display: block;
    line-height: 1.4;
}

.contact-info__list small {
    color: var(--color-muted);
    font-size: 12px;
}

.contact-info__list strong {
    margin-top: 2px;
    font-size: 14px;
}

.contact-info__note {
    margin-top: 19px;
    padding: 14px;
    color: #6d5a4c;
    background: #fff8ed;
    border-radius: 9px;
    font-size: 14px;
}

.contact-info__note p {
    margin: 4px 0 0;
}

.contact-form-card__head p,
.form-privacy {
    color: var(--color-muted);
    font-size: 13px;
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    line-height: 1.55;
    cursor: pointer;
}

.form-privacy input {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--color-primary);
    flex: 0 0 auto;
}

.form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

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

.contact-info__list li {
    padding: 12px 13px;
    color: #475467;
    background: #f7f8fa;
    border-radius: 8px;
    font-size: 15px;
}

.compare-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
}

.compare-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-size: 14px;
}

.compare-table th,
.compare-table td {
    padding: 13px;
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    text-align: left;
    vertical-align: top;
}

.compare-table th {
    min-width: 160px;
    background: #f7f8fa;
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
    border-bottom: 0;
}

.compare-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.compare-toolbar strong,
.compare-toolbar span {
    display: block;
}

.compare-toolbar strong {
    font-size: 17px;
}

.compare-toolbar span {
    margin-top: 3px;
    color: var(--color-muted);
    font-size: 13px;
}

.compare-product-head {
    min-width: 160px;
    display: grid;
    gap: 8px;
}

.compare-product-head img {
    width: 120px;
    height: 100px;
    margin-inline: auto;
    object-fit: contain;
}

.compare-product-head strong {
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
}

.compare-remove {
    display: block;
    margin-top: 7px;
    color: var(--color-danger);
    font-size: 12px;
    text-align: center;
}

.compare-tray {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 180;
    width: min(330px, calc(100vw - 44px));
    overflow: hidden;
    color: #14213d;
    background: #fff;
    border: 1px solid #d7e1f1;
    border-radius: 16px;
    box-shadow: 0 18px 52px rgba(15, 34, 68, 0.2);
}

.compare-tray__toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 12px;
    color: #fff;
    background: linear-gradient(135deg, #f14b2e, #e93b20);
    border: 0;
    text-align: left;
    cursor: pointer;
}

.compare-tray__toggle-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 11px;
}

.compare-tray__toggle-icon svg,
.compare-tray__open svg {
    width: 21px;
    height: 21px;
}

.compare-tray__heading strong,
.compare-tray__heading small {
    display: block;
}

.compare-tray__heading strong {
    font-size: 16px;
    line-height: 1.25;
}

.compare-tray__heading small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 600;
}

.compare-tray__body {
    padding: 11px;
    background: #f7f9fc;
}

.compare-tray__products {
    display: grid;
    gap: 8px;
}

.compare-tray__product {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    align-items: center;
    gap: 5px;
    padding: 7px;
    background: #fff;
    border: 1px solid #dbe4f1;
    border-radius: 11px;
}

.compare-tray__product-link {
    min-width: 0;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    color: #14213d;
}

.compare-tray__product-link img {
    width: 52px;
    height: 52px;
    padding: 3px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
}

.compare-tray__product-link span {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.compare-tray__remove {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: #c83d31;
    background: #fff2ef;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
}

.compare-tray__remove:hover {
    color: #fff;
    background: #c83d31;
}

.compare-tray__open {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 14px;
    color: #fff;
    background: var(--color-primary);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
}

.compare-tray__open:hover {
    color: #fff;
    background: var(--color-primary-dark);
}

@media (min-width: 1101px) {
    .compare-page:has(.compare-tray) .compare-page__main .container {
        max-width: calc(100vw - 414px);
        margin-right: 374px;
    }
}

@media (min-width: 761px) and (max-width: 1100px) {
    .compare-tray {
        right: 16px;
        bottom: 18px;
        width: 310px;
    }

}

@media (max-width: 760px) {
    .compare-tray {
        right: 12px;
        bottom: 12px;
        left: 12px;
        width: auto;
        max-height: calc(100dvh - 88px);
        border-radius: 14px;
    }

    .compare-tray__toggle {
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 9px 10px;
    }

    .compare-tray__toggle-icon {
        width: 38px;
        height: 38px;
    }

    .compare-tray__body {
        overflow-y: auto;
        max-height: calc(100dvh - 158px);
    }

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

    .compare-tray__product {
        grid-template-columns: minmax(0, 1fr) 26px;
        padding: 6px;
    }

    .compare-tray__product-link {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 7px;
    }

    .compare-tray__product-link img {
        width: 42px;
        height: 42px;
    }

    .compare-tray__product-link span {
        font-size: 12px;
    }

}

@media (max-width: 430px) {
    .compare-tray__products {
        grid-template-columns: 1fr;
    }
}

.price-text {
    color: var(--color-primary);
    font-size: 16px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    counter-reset: steps;
}

.process-steps > article,
.process-steps > li {
    position: relative;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    list-style: none;
    counter-increment: steps;
}

.process-steps > article::before,
.process-steps > li::before {
    content: counter(steps, decimal-leading-zero);
    display: block;
    margin-bottom: 9px;
    color: var(--color-primary);
    font-size: 21px;
    font-weight: 800;
}

.process-steps > article:has(> span)::before,
.process-steps > li:has(> span)::before {
    display: none;
}

.process-steps > article > span,
.process-steps > li > span {
    display: block;
    margin-bottom: 9px;
    color: var(--color-primary);
    font-size: 21px;
    font-weight: 800;
}

.process-steps h2,
.process-steps h3 {
    margin-bottom: 7px;
    font-size: 17px;
}

.process-steps p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
}

.support-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 30px;
    padding: 26px;
    color: #fff;
    background: linear-gradient(120deg, #1c2940, #31415d);
    border-radius: var(--radius-lg);
}

.support-cta h2,
.support-cta h3 {
    margin-bottom: 6px;
    color: #fff;
}

.support-cta p {
    margin: 0;
    color: #cbd3df;
    font-size: 15px;
}

.support-cta .eyebrow {
    color: #ffb7a5;
}

.warranty-guide__notes {
    margin-top: 24px;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
}

.not-found-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.75fr);
    gap: 32px;
    align-items: start;
    min-height: 55vh;
    padding-top: 64px;
    padding-bottom: 72px;
}

.not-found-content,
.not-found-suggestions {
    padding: clamp(26px, 4vw, 46px);
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.not-found-content__code {
    margin: 8px 0 0 !important;
    display: block;
    color: var(--color-primary);
    font-size: clamp(64px, 10vw, 112px);
    font-weight: 800;
    line-height: 1;
}

.not-found-content h1 {
    max-width: 650px;
    margin: 10px 0 14px;
    font-size: clamp(28px, 4vw, 42px);
}

.not-found-content > p:not(.not-found-content__code) {
    max-width: 650px;
    color: var(--color-muted);
}

.not-found-content .search-form--large {
    max-width: 650px;
    margin: 26px 0 18px;
}

.not-found-suggestions h2 {
    margin-bottom: 12px;
    font-size: 19px;
}

.not-found-suggestions a {
    display: block;
    padding: 15px 0;
    border-top: 1px solid var(--color-line);
}

.not-found-suggestions strong,
.not-found-suggestions span {
    display: block;
}

.not-found-suggestions strong {
    margin-bottom: 3px;
    color: var(--color-text);
    font-size: 15px;
}

.not-found-suggestions span {
    color: var(--color-muted);
    font-size: 13px;
}

/* Homepage */
.home-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #1d2939;
}

.home-hero__viewport {
    position: relative;
    min-height: 450px;
}

.home-hero__slide {
    position: relative;
    min-height: 450px;
    display: none;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 42px;
    isolation: isolate;
}

.home-hero__slide.is-active,
.home-hero__slide:first-child:last-child {
    display: grid;
}

.home-hero__slide::before {
    content: "";
    position: absolute;
    inset: 0 50% 0 auto;
    z-index: -2;
    width: 100vw;
    background:
        radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.1), transparent 25%),
        linear-gradient(125deg, #182235 0%, #263652 55%, #1f2c43 100%);
}

.home-hero__slide::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 7%;
    z-index: -1;
    width: 360px;
    height: 360px;
    background: color-mix(in srgb, var(--color-primary) 75%, #ff9a53);
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.72;
    transform: translateY(-50%);
}

.home-hero__content {
    position: relative;
    z-index: 2;
    padding: 62px 0 72px;
}

.home-hero__content .eyebrow {
    color: #ffd2c2;
}

.home-hero__content h1,
.home-hero__content h2 {
    max-width: 670px;
    margin-bottom: 17px;
    color: #fff;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.15;
    letter-spacing: -0.05em;
}

.home-hero__content p {
    max-width: 610px;
    margin-bottom: 24px;
    color: #d6dce6;
    font-size: 18px;
}

.home-hero__actions {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-wrap: wrap;
}

.home-hero__actions .button--secondary,
.home-hero__actions .button--outline,
.home-hero__actions .button--ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.36);
}

.home-hero__actions .button--secondary:hover,
.home-hero__actions .button--outline:hover,
.home-hero__actions .button--ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.58);
}

.home-hero__disclosure {
    max-width: 570px;
    margin-top: 19px;
    margin-bottom: 0 !important;
    color: #aeb8c7 !important;
    font-size: 13px !important;
}

.home-hero__visual {
    position: relative;
    z-index: 2;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px 30px 0;
}

.home-hero__visual img {
    position: relative;
    z-index: 2;
    width: min(100%, 510px);
    max-height: 390px;
    object-fit: contain;
    filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.22));
}

.home-hero__shape {
    position: absolute;
    width: 68%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.home-hero__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 5;
    display: flex;
    gap: 7px;
    transform: translateX(-50%);
}

.home-hero__dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    border: 0;
    border-radius: 99px;
    transition: width var(--transition), background var(--transition);
}

.home-hero__dots button.is-active,
.home-hero__dots button[aria-current="true"] {
    width: 25px;
    background: #fff;
}

.home-benefits {
    position: relative;
    z-index: 4;
    margin-top: -1px;
    background: #fff;
    border-bottom: 1px solid var(--color-line);
}

.home-benefits__grid,
.home-benefits .grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-benefits article,
.home-benefits__item,
.home-benefits__grid > div {
    min-height: 98px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 19px 20px;
    border-right: 1px solid var(--color-line);
}

.home-benefits article:first-child,
.home-benefits__item:first-child,
.home-benefits__grid > div:first-child {
    border-left: 1px solid var(--color-line);
}

.home-benefits article > span,
.home-benefits__icon,
.home-benefits__grid > div > .icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--color-primary);
    background: #fff3ee;
    border-radius: 50%;
}

.home-benefits svg {
    width: 21px;
    height: 21px;
}

.home-benefits__grid > div > span {
    min-width: 0;
}

.home-benefits strong,
.home-benefits small {
    display: block;
}

.home-benefits strong {
    font-size: 15px;
}

.home-benefits small {
    margin-top: 3px;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.5;
}

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

.category-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.category-card:hover {
    border-color: color-mix(in srgb, var(--color-primary) 45%, #fff);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.category-card__media {
    aspect-ratio: 1.35 / 1;
    display: grid;
    place-items: center;
    padding: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, #fafafa, #f1f3f6);
}

.category-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 260ms ease;
}

.category-card:hover .category-card__media img {
    transform: scale(1.045);
}

.category-card__copy {
    padding: 13px 12px 15px;
    text-align: center;
}

.category-card__copy h2,
.category-card__copy h3,
.category-card__copy strong {
    margin-bottom: 4px;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-card__copy p,
.category-card__copy small {
    display: block;
    margin: 0;
    color: var(--color-muted);
    font-size: 13px;
}

.category-card > .icon {
    position: absolute;
    right: 9px;
    bottom: 13px;
    width: 14px;
    height: 14px;
    color: #b0b6c0;
}

.home-products .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brand-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.brand-chip {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 9px;
    padding: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 11px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.brand-chip strong,
.brand-chip small {
    display: block;
    line-height: 1.35;
}

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

.brand-chip:hover {
    color: var(--color-primary);
    border-color: color-mix(in srgb, var(--color-primary) 50%, #fff);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.brand-chip img {
    max-width: 100px;
    max-height: 44px;
    object-fit: contain;
}

.home-guides .blog-grid,
.home-guides .post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-seo {
    background: #fff;
}

.home-seo .article-content {
    max-width: 900px;
    margin-inline: auto;
}

.home-seo .content-shell {
    padding-block: 0;
}

/* Product cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
    border-color: color-mix(in srgb, var(--color-primary) 40%, #fff);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.product-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    max-width: calc(100% - 20px);
    padding: 5px 9px;
    overflow: hidden;
    color: #fff;
    background: var(--color-primary);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card__image {
    position: relative;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    padding: 14px;
    overflow: hidden;
    background: #fff;
}

.product-card__image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 260ms ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.015);
}

.product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 15px;
}

.product-card__meta {
    margin-bottom: 6px;
    overflow: hidden;
    color: #8a919d;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-card h2,
.product-card h3 {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.5;
}

.product-card h2 a,
.product-card h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-card h2 a:hover,
.product-card h3 a:hover {
    color: var(--color-primary);
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    color: var(--color-muted);
    font-size: 12px;
}

.rating__stars {
    color: #f5a623;
    font-size: 14px;
    letter-spacing: 0.04em;
}

.rating__stars--muted,
.rating--empty {
    color: #9aa1ad;
}

.product-card__desc {
    display: -webkit-box;
    margin-bottom: 10px;
    overflow: hidden;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-card__price {
    min-height: 47px;
    display: flex;
    align-items: baseline;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: auto;
    margin-bottom: 12px;
}

.product-card__price small {
    width: 100%;
    margin-bottom: -3px;
    color: var(--color-muted);
    font-size: 12px;
}

.product-card__price strong {
    color: var(--color-primary);
    font-size: 20px;
    line-height: 1.25;
}

.product-card__price span {
    color: #9aa1ad;
    font-size: 12px;
    text-decoration: line-through;
}

.product-card__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 8px;
}

.product-card__actions .button {
    width: 100%;
    min-width: 0;
    min-height: 42px;
}

.product-card__compare {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    background: #fff7f4;
    border: 1px solid #ffd2c7;
    border-radius: 9px;
    box-shadow: 0 5px 14px color-mix(in srgb, var(--color-primary) 9%, transparent);
    transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.product-card__compare .icon {
    width: 19px;
    height: 19px;
}

.product-card__compare span {
    display: none;
}

.product-card__compare:hover {
    color: #fff;
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 8px 18px color-mix(in srgb, var(--color-primary) 22%, transparent);
    transform: translateY(-1px);
}

.product-card__compare:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--color-primary) 24%, transparent);
    outline-offset: 2px;
}

/* Catalog and search */
.catalog-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: start;
    gap: 26px;
}

.catalog-sidebar {
    position: sticky;
    top: 154px;
    padding: 19px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
}

.catalog-sidebar__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.catalog-sidebar__head h2 {
    margin: 0;
    font-size: 18px;
}

.catalog-sidebar__close,
.catalog-filter-toggle {
    display: none;
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding: 12px 15px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 10px;
}

.catalog-toolbar > div h2 {
    margin: 0;
    font-size: 19px;
}

.catalog-toolbar > div p {
    margin: 3px 0 0;
    color: var(--color-muted);
    font-size: 13px;
}

.catalog-toolbar > form label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-muted);
    font-size: 13px;
}

.catalog-toolbar > form select {
    width: auto;
    min-width: 150px;
    height: 38px;
    padding: 0 28px 0 10px;
    font-size: 14px;
}

.catalog-sort {
    display: flex;
    align-items: center;
    gap: 9px;
}

.catalog-sort__label {
    flex: 0 0 auto;
    color: var(--color-muted);
    font-size: 13px;
}

.catalog-sort__buttons {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.catalog-sort__button {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 10px;
    color: #475467;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 650;
    white-space: nowrap;
}

.catalog-sort__button b {
    width: 13px;
    color: #98a2b3;
    font-size: 15px;
    line-height: 1;
    text-align: center;
}

.catalog-sort__button:hover,
.catalog-sort__button.is-active {
    color: var(--color-primary);
    background: #fff5f1;
    border-color: #ffb29f;
}

.catalog-sort__button.is-active b {
    color: var(--color-primary);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.pagination a,
.pagination span {
    min-width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0 9px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.pagination a:hover,
.pagination .is-active,
.pagination [aria-current="page"] {
    color: #fff;
    background: var(--color-primary);
    border-color: var(--color-primary);
}

@media (max-width: 520px) {
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
        margin-top: 26px;
    }

    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        padding-inline: 7px;
        font-size: 13px;
    }
}

/* Product detail */
.product-detail {
    padding-bottom: 64px;
    background: #f7f8fa;
}

.product-detail > .container {
    min-width: 0;
}

.product-detail__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
    align-items: start;
    gap: 34px;
    padding: 27px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

.product-gallery__stage {
    position: relative;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    padding: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: var(--radius-md);
}

.product-gallery__stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(1);
    transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-gallery__stage.is-switching img {
    opacity: 0.12;
    transform: scale(0.975);
}

.product-gallery__zoom {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: zoom-in;
}

.product-gallery__zoom > span {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(16, 24, 40, 0.74);
    border-radius: 50%;
    font-size: 25px;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 9px;
    color: #fff;
    background: var(--color-primary);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.product-gallery__thumbs {
    display: flex;
    gap: 9px;
    margin-top: 11px;
    padding-bottom: 3px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.product-gallery__thumb {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    flex: 0 0 68px;
    padding: 5px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
}

.product-gallery__thumb:hover,
.product-gallery__thumb.is-active,
.product-gallery__thumb[aria-current="true"] {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

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

.product-summary__meta {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 9px;
    color: var(--color-muted);
    font-size: 14px;
}

.product-summary__meta a {
    color: var(--color-primary);
    font-weight: 650;
}

.product-summary h1 {
    margin-bottom: 11px;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.28;
    letter-spacing: -0.04em;
}

.product-summary__rating {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-line);
}

.product-summary__rating .rating {
    margin: 0;
}

.product-summary__lead {
    margin: 16px 0;
    color: #475467;
    font-size: 16px;
}

.product-summary__price {
    margin: 17px 0;
    padding: 16px 18px;
    background: linear-gradient(135deg, #fff3ed, #fff9f6);
    border-radius: 10px;
}

.product-summary__price small {
    display: block;
    margin-bottom: 3px;
    color: var(--color-muted);
    font-size: 14px;
}

.product-summary__price strong {
    color: var(--color-primary);
    font-size: 30px;
    line-height: 1.2;
}

.product-summary__price del {
    margin-left: 8px;
    color: #9299a5;
    font-size: 16px;
}

.product-summary__price > span {
    display: block;
    margin-top: 4px;
    color: var(--color-success);
    font-size: 13px;
    font-weight: 650;
}

.product-highlights {
    margin: 18px 0;
    padding: 16px;
    background: #f8fafb;
    border: 1px solid var(--color-line);
    border-radius: 10px;
}

.product-highlights:has(> div) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.product-highlights > div {
    min-width: 0;
    padding: 10px 11px;
    background: #fff;
    border: 1px solid #eceff2;
    border-radius: 8px;
}

.product-highlights > div small,
.product-highlights > div strong {
    display: block;
    overflow: hidden;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-highlights > div small {
    color: var(--color-muted);
    font-size: 12px;
}

.product-highlights > div strong {
    margin-top: 3px;
    font-size: 14px;
}

.product-highlights h2,
.product-highlights h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.product-highlights ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-highlights li {
    position: relative;
    padding-left: 20px;
    color: #475467;
    font-size: 15px;
}

.product-highlights li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--color-success);
    font-weight: 800;
}

.marketplace-mark {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #fff;
    background: var(--color-shopee);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
}

.product-buy-cta {
    width: 100%;
    min-height: 86px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    padding: 15px 20px;
    color: #fff;
    background: linear-gradient(135deg, #f4512f 0%, #e8391b 100%);
    border: 1px solid #e63e1e;
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(238, 77, 45, 0.28);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.product-buy-cta:hover {
    color: #fff;
    filter: brightness(1.03);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(238, 77, 45, 0.34);
}

.product-buy-cta .marketplace-mark {
    width: 52px;
    height: 52px;
    background: #fff;
    color: var(--color-shopee);
    border-radius: 13px;
    font-size: 24px;
}

.product-buy-cta strong,
.product-buy-cta small {
    display: block;
}

.product-buy-cta strong {
    font-size: 21px;
    line-height: 1.25;
}

.product-buy-cta small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
}

.product-buy-cta b {
    font-size: 30px;
    text-align: right;
}

.affiliate-disclosure {
    margin: 12px 0 0;
    color: #7c8491;
    font-size: 13px;
    line-height: 1.55;
}

.affiliate-disclosure--compact {
    margin-top: 9px;
    font-size: 11px;
    text-align: center;
}

.product-price-guide {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: stretch;
    gap: 12px;
    margin-top: 14px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.product-price-guide__heading {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 6px 10px;
}

.product-price-guide__heading span {
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.product-price-guide__heading h2 {
    margin: 3px 0 2px;
    font-size: 16px;
    line-height: 1.35;
}

.product-price-guide__heading p {
    margin: 0;
    color: var(--color-muted);
    font-size: 11px;
}

.product-price-guide__list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
    min-width: 0;
}

.product-price-guide__item {
    min-width: 0;
    min-height: 76px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 9px 11px;
    color: var(--color-text);
    background: #f8fafb;
    border: 1px solid #e9edf1;
    border-radius: 9px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.product-price-guide__item:hover {
    color: var(--color-primary);
    border-color: rgba(238, 77, 45, 0.42);
    transform: translateY(-1px);
}

.product-price-guide__item small,
.product-price-guide__item strong,
.product-price-guide__item b {
    display: block;
}

.product-price-guide__item small {
    margin-bottom: 3px;
    color: var(--color-muted);
    font-size: 10px;
    font-weight: 650;
}

.product-price-guide__item strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-price-guide__item b {
    margin-top: 4px;
    color: var(--color-primary);
    font-size: 14px;
    line-height: 1.2;
}

.product-price-guide__item.is-active {
    color: #fff;
    background: linear-gradient(135deg, #f4512f, #e8391b);
    border-color: #e63e1e;
    box-shadow: 0 8px 18px rgba(238, 77, 45, 0.24);
}

.product-price-guide__item.is-active small,
.product-price-guide__item.is-active b {
    color: #fff;
}

.product-detail__nav {
    position: sticky;
    top: 160px;
    z-index: 20;
    display: flex;
    gap: 4px;
    margin: 24px 0;
    padding: 5px;
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--color-line);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.product-detail__nav a,
.product-detail__nav button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 auto;
    padding: 8px 14px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 650;
    white-space: nowrap;
    background: transparent;
    border: 0;
}

.product-detail__nav a:hover,
.product-detail__nav a.is-active,
.product-detail__nav button:hover,
.product-detail__nav button.is-active,
.product-detail__nav button[aria-selected="true"] {
    color: var(--color-primary);
    background: #fff3ed;
}

[data-scroll-section] {
    scroll-margin-top: 170px;
}

.product-detail__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 24px;
}

.product-description,
.product-detail__sidebar > section,
.specification-card,
.marketplace-reviews {
    padding: 25px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
}

.product-detail__sidebar {
    display: grid;
    gap: 18px;
}

.product-detail__sidebar > section {
    padding: 19px;
}

.product-detail__sidebar .specification-card {
    margin-top: 0;
}

.product-detail__sidebar h2,
.product-detail__sidebar h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.specification-card {
    margin-top: 24px;
}

.specification-card > h2 {
    margin-bottom: 18px;
    font-size: 25px;
}

.specification-card--compact {
    position: sticky;
    top: 230px;
}

.compact-specifications {
    margin: 0;
    border-top: 1px solid var(--color-line);
}

.compact-specifications > div {
    display: grid;
    grid-template-columns: minmax(100px, 42%) 1fr;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-line);
    font-size: 13px;
}

.compact-specifications dt {
    color: var(--color-muted);
}

.compact-specifications dd {
    margin: 0;
    color: #273245;
    font-weight: 650;
    overflow-wrap: anywhere;
}

.specification-card__more {
    width: 100%;
    margin-top: 14px;
}

.specification-groups {
    display: grid;
    gap: 17px;
}

.specification-group {
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: 9px;
}

.specification-group h3 {
    margin: 0;
    padding: 12px 15px;
    background: #f7f8fa;
    border-bottom: 1px solid var(--color-line);
    font-size: 16px;
}

.specification-group dl {
    margin: 0;
}

.specification-group dl > div {
    display: grid;
    grid-template-columns: minmax(135px, 38%) 1fr;
    gap: 15px;
    padding: 10px 15px;
    border-top: 1px solid #eef0f2;
    font-size: 14px;
}

.specification-group dl > div:first-child {
    border-top: 0;
}

.specification-group dt {
    color: var(--color-muted);
}

.specification-group dd {
    margin: 0;
    color: #273245;
    font-weight: 600;
}

.compact-specifications dd.spec-value--missing,
.specification-group dd.spec-value--missing,
.compare-table td.spec-value--missing {
    color: #98a2b3;
    font-weight: 500;
    font-style: italic;
}

.marketplace-reviews {
    margin-top: 24px;
}

.marketplace-reviews__score {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 20px;
    padding: 18px;
    background: #fff8f4;
    border-radius: 10px;
}

.marketplace-reviews__score > strong {
    color: var(--color-primary);
    font-size: 36px;
    line-height: 1;
}

.marketplace-reviews__score .rating {
    margin: 0;
}

.marketplace-reviews__list {
    display: grid;
}

.marketplace-review {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
    padding: 18px 0;
    border-top: 1px solid var(--color-line);
}

.marketplace-review:first-child {
    border-top: 0;
}

.marketplace-review__avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
    background: #f2a38f;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
}

.marketplace-review__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.marketplace-review__body {
    min-width: 0;
}

.marketplace-review__body > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 5px;
}

.marketplace-review__body strong {
    font-size: 14px;
}

.marketplace-review__body time {
    color: var(--color-muted);
    font-size: 12px;
}

.marketplace-review__body > header > span {
    color: var(--color-muted);
    font-size: 12px;
    white-space: nowrap;
}

.marketplace-review__body > header .rating {
    margin: 3px 0 0;
}

.section-block {
    margin-top: 26px;
}

.marketplace-review__body p {
    margin: 7px 0 0;
    color: #475467;
    font-size: 15px;
}

.marketplace-review__photos {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.marketplace-review__photos img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 7px;
}

.site-reviews {
    padding: 25px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
}

.site-reviews__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--color-line);
}

.site-reviews__head h2 {
    margin: 4px 0 6px;
    font-size: clamp(24px, 3vw, 31px);
}

.site-reviews__head p {
    margin: 0;
    color: var(--color-muted);
}

.site-reviews__score {
    min-width: 185px;
    padding: 16px;
    background: #fff7f3;
    border-radius: 10px;
    text-align: center;
}

.site-reviews__score > strong,
.site-reviews__score > span {
    display: block;
}

.site-reviews__score > strong {
    color: var(--color-primary);
    font-size: 30px;
}

.site-reviews__score .rating {
    justify-content: center;
    margin: 5px 0 0;
}

.site-reviews__layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: 28px;
    margin-top: 24px;
}

.site-review-form {
    align-self: start;
    display: grid;
    gap: 14px;
    padding: 20px;
    background: #f8f9fb;
    border: 1px solid var(--color-line);
    border-radius: 11px;
}

.site-review-form h3 {
    margin: 0;
    font-size: 20px;
}

.site-review-form .button {
    width: 100%;
}

.review-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
    margin: 0;
    padding: 0;
    border: 0;
}

.review-stars legend {
    width: 100%;
    margin-bottom: 5px;
    color: #344054;
    font-size: 14px;
    font-weight: 650;
}

.review-stars input {
    position: absolute;
    opacity: 0;
}

.review-stars label {
    color: #d5d9e0;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.review-stars label:hover,
.review-stars label:hover ~ label,
.review-stars input:checked ~ label,
.review-stars input:focus-visible + label {
    color: #f5a623;
}

.site-reviews__list {
    min-width: 0;
}

.site-review {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
    padding: 18px 0;
    border-top: 1px solid var(--color-line);
}

.site-review:first-child {
    padding-top: 0;
    border-top: 0;
}

.marketplace-review__photos button {
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 7px;
    cursor: zoom-in;
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.68);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.product-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.product-modal__dialog {
    width: min(900px, 100%);
    max-height: calc(100vh - 48px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.3);
    opacity: 0;
    transform: translateY(14px) scale(0.975);
    transition: opacity 220ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-modal.is-open .product-modal__dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.product-modal__dialog > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--color-line);
}

.product-modal__dialog > header span {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 750;
}

.product-modal__dialog > header h2 {
    margin: 3px 0 0;
    font-size: 22px;
}

.product-modal__dialog > header button,
.product-lightbox__close {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    color: #344054;
    background: #f2f4f7;
    border: 0;
    border-radius: 50%;
    font-size: 28px;
}

.product-modal__content {
    padding: 20px;
    overflow: auto;
}

.product-lightbox__dialog {
    position: relative;
    width: min(1120px, 100%);
    height: min(820px, calc(100vh - 48px));
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) 60px;
    grid-template-rows: 1fr;
    align-items: center;
    background: #fff;
}

.product-lightbox figure {
    min-width: 0;
    min-height: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 10px;
    margin: 0;
    padding: 18px 0;
    overflow: hidden;
    background: #fff;
}

.product-lightbox figure img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    min-height: 0;
    align-self: center;
    object-fit: contain;
    object-position: center;
    opacity: 1;
    transform: scale(1);
    transition: opacity 190ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-lightbox figure.is-switching img {
    opacity: 0;
    transform: scale(0.985);
}

.product-lightbox figcaption {
    color: #475467;
    font-size: 13px;
    text-align: center;
}

.product-lightbox__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
}

.product-lightbox__nav {
    width: 46px;
    height: 56px;
    justify-self: center;
    color: #344054;
    background: #f2f4f7;
    border: 0;
    border-radius: 10px;
    font-size: 38px;
}

.product-lightbox.is-review-image .product-lightbox__nav {
    visibility: hidden;
}

/* Rich content, posts and static pages */
.article-content {
    color: #344054;
    font-size: 18px;
    line-height: 1.82;
}

.article-content > *:first-child {
    margin-top: 0 !important;
}

.article-content > *:last-child {
    margin-bottom: 0 !important;
}

.article-content h2 {
    margin: 35px 0 14px;
    padding-top: 4px;
    font-size: clamp(24px, 2.4vw, 30px);
    letter-spacing: -0.025em;
}

.article-content h3 {
    margin: 26px 0 11px;
    font-size: 21px;
}

.article-content h4 {
    margin: 22px 0 9px;
    font-size: 18px;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote,
.article-content figure,
.article-content table {
    margin-bottom: 18px;
}

.article-content ul,
.article-content ol {
    padding-left: 24px;
}

.article-content li + li {
    margin-top: 7px;
}

.article-content a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article-content img {
    width: auto;
    max-width: 100%;
    margin-inline: auto;
    border-radius: 10px;
}

.article-content figcaption {
    margin-top: 8px;
    color: var(--color-muted);
    font-size: 13px;
    text-align: center;
}

.article-content blockquote {
    padding: 16px 19px;
    color: #475467;
    background: #fff7f3;
    border-left: 4px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.article-content th,
.article-content td {
    padding: 11px 12px;
    border: 1px solid var(--color-line);
    text-align: left;
    vertical-align: top;
}

.article-content th {
    background: #f6f7f9;
    font-weight: 700;
}

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

.post-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.post-card:hover {
    border-color: color-mix(in srgb, var(--color-primary) 35%, #fff);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.post-card__image,
.post-card__media {
    aspect-ratio: 1.65 / 1;
    display: block;
    overflow: hidden;
    background: #f1f3f6;
}

.post-card__image img,
.post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 280ms ease;
}

.post-card:hover .post-card__image img,
.post-card:hover .post-card__media img {
    transform: scale(1.04);
}

.post-card__media > span {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #a5acb8;
}

.post-card__media > span .icon {
    width: 38px;
    height: 38px;
}

.post-card__body {
    padding: 17px;
}

.post-card__meta {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 7px;
    color: #8a919d;
    font-size: 13px;
}

.post-card__meta a {
    color: var(--color-primary);
    font-weight: 650;
}

.post-card h2,
.post-card h3 {
    margin-bottom: 8px;
    font-size: 19px;
    line-height: 1.45;
}

.post-card h2 a,
.post-card h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.post-card h2 a:hover,
.post-card h3 a:hover {
    color: var(--color-primary);
}

.post-card p {
    display: -webkit-box;
    margin-bottom: 0;
    overflow: hidden;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

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

.contact-form {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
}

.contact-form h2 {
    margin-bottom: 13px;
    font-size: 23px;
}

.contact-form form,
.form-grid {
    display: grid;
    gap: 14px;
}

.form-field label,
.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 650;
}

.form-field input,
.form-field select,
.form-field textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 16px;
}

.contact-form textarea,
.form-field textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.affiliate-note {
    background: #fff7ed;
    border-top: 1px solid #f3dbc4;
    border-bottom: 1px solid #f3dbc4;
}

.affiliate-note__inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-block: 17px;
}

.affiliate-note__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--color-primary);
    background: #fff;
    border: 1px solid #f3d5c5;
    border-radius: 50%;
}

.affiliate-note__icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.affiliate-note strong {
    display: block;
    margin-bottom: 3px;
    font-size: 15px;
}

.affiliate-note p {
    max-width: 970px;
    margin: 0;
    color: #6d5a4c;
    font-size: 14px;
    line-height: 1.6;
}

.site-footer {
    color: #c7cdd7;
    background: #172033;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 52px;
    padding-bottom: 44px;
}

.footer-brand {
    display: grid;
    grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
    align-items: center;
    gap: 28px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
}

.site-brand--footer .site-brand__wordmark {
    color: #fff;
}

.footer-brand > p {
    margin: 0;
    color: #b7c0ce;
    font-size: 14px;
    line-height: 1.75;
}

.footer-support__contacts {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    color: #e7ebf1;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 11px;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.footer-contact:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 179, 159, 0.42);
    transform: translateY(-1px);
}

.footer-contact__icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #ff9b81;
    background: rgba(238, 77, 45, 0.13);
    border-radius: 9px;
}

.footer-contact__icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact small,
.footer-contact strong {
    display: block;
    min-width: 0;
}

.footer-contact small {
    margin-bottom: 2px;
    color: #8f99aa;
    font-size: 11px;
    font-weight: 500;
}

.footer-contact strong {
    overflow-wrap: anywhere;
    color: inherit;
    font-size: 13px;
    line-height: 1.45;
}

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

.footer-section-heading > div > span {
    display: block;
    margin-bottom: 5px;
    color: #ff9b81;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.footer-section-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.3;
}

.footer-section-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    color: #dce2eb;
    font-size: 13px;
    font-weight: 700;
}

.footer-section-heading > a:hover {
    color: #ffb39f;
}

.footer-category-grid {
    column-count: 5;
    column-gap: 14px;
}

.footer-category-group {
    width: 100%;
    min-width: 0;
    display: inline-block;
    margin-bottom: 14px;
    padding: 16px 17px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 13px;
    break-inside: avoid;
}

.footer-category-group h3 {
    margin: 0;
    font-size: 14px;
}

.footer-category-group h3 a {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    color: #fff;
    line-height: 1.5;
}

.footer-category-group h3 a span:last-child {
    color: #ff8f73;
    transition: transform var(--transition);
}

.footer-category-group h3 a:hover span:last-child {
    transform: translateX(3px);
}

.footer-category-group ul {
    display: grid;
    gap: 6px;
    margin: 11px 0 0;
    padding: 11px 0 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-category-group li {
    min-width: 0;
}

.footer-category-group li a {
    display: block;
    color: #aeb7c5;
    font-size: 12px;
    line-height: 1.5;
    transition: color var(--transition), transform var(--transition);
}

.footer-category-group li a:hover {
    color: #fff;
    transform: translateX(2px);
}

.footer-category-group .footer-category-level-2,
.footer-category-group .footer-category-level-3 {
    padding-left: 11px;
}

.footer-category-group .footer-category-level-2 a::before,
.footer-category-group .footer-category-level-3 a::before {
    content: "– ";
    color: #697487;
}

.footer-brands {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section-heading--compact {
    margin-bottom: 16px;
}

.footer-brand-links {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 9px;
}

.footer-brand-links a {
    min-width: 0;
    padding: 10px 12px;
    overflow: hidden;
    color: #c6ceda;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.footer-brand-links a:hover {
    color: #fff;
    background: rgba(238, 77, 45, 0.12);
    border-color: rgba(255, 155, 129, 0.35);
    transform: translateY(-1px);
}

.site-footer__navigation {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding-top: 34px;
    padding-bottom: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-panel {
    min-width: 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.footer-panel__heading {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 49px;
    margin-bottom: 19px;
}

.footer-panel__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #ff9b81;
    background: rgba(238, 77, 45, 0.12);
    border: 1px solid rgba(255, 155, 129, 0.18);
    border-radius: 10px;
}

.footer-panel__icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-panel h2 {
    margin: 1px 0 4px;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
}

.footer-panel__heading p {
    margin: 0;
    color: #8f99aa;
    font-size: 11px;
    line-height: 1.5;
}

.footer-panel__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-panel__links li {
    min-width: 0;
}

.footer-panel__links a {
    min-height: 34px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 2px;
    color: #b7c0cd;
    background: transparent;
    border: 0;
    font-size: 12px;
    line-height: 1.4;
    transition: color var(--transition), transform var(--transition);
}

.footer-panel__links a::before {
    content: "";
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
    background: #ff8f73;
    border-radius: 50%;
}

.footer-panel__links a::after {
    content: "→";
    margin-left: auto;
    color: #667287;
    font-size: 11px;
    opacity: 0;
    transform: translateX(-3px);
    transition: color var(--transition), opacity var(--transition), transform var(--transition);
}

.footer-panel__links a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-panel__links a:hover::after {
    color: #ff9b81;
    opacity: 1;
    transform: translateX(0);
}

.footer-support .footer-contact {
    padding: 8px 10px;
}

.footer-support .footer-contact__icon {
    width: 30px;
    height: 30px;
}

.footer-support__action {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 12px;
    color: #fff;
    background: rgba(238, 77, 45, 0.16);
    border: 1px solid rgba(255, 155, 129, 0.25);
    border-radius: 9px;
    font-size: 12px;
    font-weight: 700;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.footer-support__action:hover {
    color: #fff;
    background: rgba(238, 77, 45, 0.25);
    border-color: rgba(255, 155, 129, 0.45);
    transform: translateY(-1px);
}

.site-footer__disclosures {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-top: 22px;
    padding-bottom: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer__disclosures section {
    padding: 17px 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
}

.site-footer__disclosure-label {
    display: block;
    margin-bottom: 7px;
    color: #ff9b81;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.site-footer__disclosures p {
    margin: 0;
    color: #9da6b4;
    font-size: 13px;
    line-height: 1.65;
}

.site-footer__disclosures strong {
    color: #d8dde5;
}

.site-footer__bottom {
    background: #111827;
}

.site-footer__bottom .container {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-block: 13px;
}

.site-footer__bottom p {
    margin: 0;
    color: #858e9c;
    font-size: 12px;
}

.site-footer__bottom p:last-child {
    text-align: right;
}

/* Responsive */
@media (max-width: 1120px) {
    .header-main__inner {
        gap: 20px;
    }

    .header-actions {
        gap: 10px;
    }

    .header-action:first-child {
        display: none;
    }

    .desktop-menu > li > a {
        padding-inline: 9px;
    }

    .header-nav__highlight {
        display: none;
    }

    .category-grid,
    .brand-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .product-detail__hero {
        gap: 25px;
    }

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

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

    .footer-category-grid {
        column-count: 4;
    }

    .footer-brand-links {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    html {
        scroll-padding-top: 52px;
    }

    .site-header {
        position: sticky;
        top: -30px;
    }

    .site-notice__disclosure,
    .header-actions,
    .header-nav-wrap {
        display: none;
    }

    .site-notice__inner {
        min-height: 30px;
        justify-content: center;
        text-align: center;
    }

    .header-main__inner {
        min-height: 65px;
        grid-template-columns: 40px auto minmax(0, 1fr);
        gap: 12px;
    }

    .header-menu-button {
        display: grid;
    }

    .site-brand__wordmark {
        font-size: 19px;
    }

    .header-search {
        margin-left: auto;
    }

    .header-search button {
        width: 42px;
        padding: 0;
    }

    .header-search button span {
        display: none;
    }

    .home-hero__viewport,
    .home-hero__slide {
        min-height: 420px;
    }

    .home-hero__slide {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
        gap: 18px;
    }

    .home-hero__content h1,
    .home-hero__content h2 {
        font-size: clamp(31px, 5vw, 42px);
    }

    .home-benefits__grid,
    .home-benefits .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-benefits article:nth-child(2),
    .home-benefits__item:nth-child(2),
    .home-benefits__grid > div:nth-child(2) {
        border-right: 1px solid var(--color-line);
    }

    .home-benefits article:nth-child(n + 3),
    .home-benefits__item:nth-child(n + 3),
    .home-benefits__grid > div:nth-child(n + 3) {
        border-top: 1px solid var(--color-line);
    }

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

    .catalog-sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 210;
        width: min(330px, calc(100vw - 44px));
        padding: 20px;
        overflow-y: auto;
        border: 0;
        border-radius: 0;
        box-shadow: var(--shadow-lg);
        transform: translateX(-105%);
        transition: transform 240ms ease;
    }

    .catalog-sidebar.is-open {
        transform: translateX(0);
    }

    .catalog-sidebar__close,
    .catalog-filter-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

.catalog-sidebar__close {
        width: 34px;
        height: 34px;
        padding: 0;
        color: var(--color-muted);
        background: #f5f6f8;
        border: 0;
        border-radius: 50%;
        font-size: 22px;
    }

    .catalog-filter-toggle {
        min-height: 38px;
        gap: 6px;
        padding: 7px 11px;
        color: var(--color-text);
        background: #fff;
        border: 1px solid var(--color-line);
        border-radius: 7px;
        font-size: 12px;
        font-weight: 650;
    }

    .catalog-filter > .button--block[type="submit"] {
        position: sticky;
        bottom: 0;
        z-index: 3;
        margin-top: 12px;
        box-shadow: 0 -12px 18px rgba(255, 255, 255, 0.94), 0 8px 20px rgba(238, 77, 45, 0.2);
    }

    .product-detail__hero {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 20px;
    }

    .product-price-guide {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .product-price-guide__heading {
        padding: 2px 3px;
    }

    .product-price-guide__list {
        grid-template-columns: repeat(5, minmax(170px, 1fr));
        padding-bottom: 4px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
    }

    .product-price-guide__item {
        scroll-snap-align: start;
    }

    .product-detail__content,
    .post-layout,
    .content-page__layout {
        grid-template-columns: 1fr;
    }

    .site-reviews__layout {
        grid-template-columns: 1fr;
    }

    .specification-card--compact {
        position: static;
    }

    .product-detail__sidebar,
    .post-sidebar,
    .content-page__sidebar {
        position: static;
    }

    .product-detail__nav {
        top: 103px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand-links {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .footer-support {
        grid-column: 1 / -1;
    }

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

    .not-found-layout {
        grid-template-columns: 1fr;
    }
}

.catalog-filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 205;
    width: 100%;
    height: 100%;
    display: none;
    padding: 0;
    background: rgba(15, 23, 42, 0.58);
    border: 0;
}

.catalog-filter-backdrop.is-open {
    display: block;
}

@media (max-width: 720px) {
    :root {
        --gutter: 15px;
    }

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        font-size: 16px;
    }

    .site-header,
    .site-notice,
    .header-main,
    .product-detail,
    .product-detail > .container,
    .product-detail__hero,
    .product-gallery,
    .product-gallery__stage,
    .product-summary {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .site-notice__disclosure {
        display: none !important;
    }

    .site-notice__inner {
        min-height: 30px;
        padding-block: 5px;
        overflow: hidden;
    }

    .site-notice p {
        max-width: 100%;
        line-height: 1.35;
        font-size: 12px;
        text-align: center;
    }

    .header-main__inner {
        grid-template-columns: 39px 1fr auto;
    }

    .header-main .site-brand__wordmark {
        font-size: 18px;
    }

    .header-search {
        width: 42px;
        height: 42px;
        padding: 0;
        border-width: 1px;
    }

    .header-search input,
    .header-search .search-suggestions {
        display: none;
    }

    .header-search button {
        width: 100%;
        height: 100%;
        color: var(--color-primary);
        background: #fff;
    }

    .section {
        padding: 42px 0;
    }

    .section-heading--row {
        align-items: flex-start;
    }

    .section-heading h1,
    .section-heading h2 {
        font-size: 27px;
    }

    .page-hero {
        padding: 32px 0;
    }

    .page-hero h1 {
        font-size: 31px;
    }

    .page-hero__content {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .content-shell {
        padding-block: 30px 48px;
    }

    .home-hero__viewport,
    .home-hero__slide {
        min-height: auto;
    }

    .home-hero__slide {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 35px;
    }

    .home-hero__slide::after {
        top: auto;
        right: -60px;
        bottom: -100px;
        width: 300px;
        height: 300px;
        transform: none;
    }

    .home-hero__content {
        padding: 43px 0 15px;
    }

    .home-hero__content h1,
    .home-hero__content h2 {
        font-size: 34px;
    }

    .home-hero__content p {
        font-size: 16px;
    }

    .home-hero__visual {
        min-height: 220px;
        padding: 0 30px;
    }

    .home-hero__visual img {
        max-height: 245px;
    }

    .home-hero__dots {
        bottom: 14px;
    }

    .home-benefits article,
    .home-benefits__item,
    .home-benefits__grid > div {
        min-height: 88px;
        padding: 14px 10px;
    }

    .home-benefits article > span,
    .home-benefits__icon,
    .home-benefits__grid > div > .icon {
        width: 37px;
        height: 37px;
    }

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

    .product-grid,
    .home-products .product-grid,
    .catalog-results .product-grid,
    .product-grid--catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 11px;
    }

    .product-card__actions {
        grid-template-columns: 1fr;
    }

    .product-card__compare {
        width: 100%;
        min-height: 42px;
        height: auto;
        gap: 7px;
    }

    .product-card__compare span {
        display: inline;
    }

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

    .brand-hero__identity {
        align-items: flex-start;
    }

    .posts-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .post-content,
    .content-page__article,
    .contact-info,
    .contact-form-card {
        padding: 19px;
    }

    .support-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-grid,
    .post-grid,
    .home-guides .blog-grid,
    .home-guides .post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 13px;
    }

    .product-detail {
        padding-bottom: 45px;
    }

    .product-detail > .container {
        padding-inline: 0;
    }

    .product-detail__hero {
        grid-template-columns: 1fr;
        padding: 15px;
        border-radius: 12px;
    }

    .product-gallery__stage {
        aspect-ratio: 1 / 1;
        padding: 12px;
    }

    [data-scroll-section] {
        scroll-margin-top: 115px;
    }

    .product-summary h1 {
        font-size: 29px;
        overflow-wrap: anywhere;
    }

    .product-summary__price strong {
        font-size: 28px;
    }

    .product-buy-cta {
        min-height: 78px;
        grid-template-columns: 44px minmax(0, 1fr) 30px;
        gap: 11px;
        padding: 13px 14px;
    }

    .product-buy-cta .marketplace-mark {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .product-buy-cta strong {
        font-size: 18px;
    }

    .product-buy-cta small {
        font-size: 12px;
    }

    .product-buy-cta b {
        font-size: 24px;
    }

    .product-detail__nav {
        top: 96px;
        margin: 16px 0;
    }

    .product-description,
    .specification-card,
    .marketplace-reviews,
    .site-reviews {
        padding: 19px;
    }

    .site-reviews__head {
        flex-direction: column;
    }

    .site-reviews__score {
        width: 100%;
    }

    .product-modal {
        padding: 10px;
    }

    .product-modal__dialog {
        max-height: calc(100vh - 20px);
    }

    .product-lightbox__dialog {
        height: calc(100vh - 20px);
        grid-template-columns: 44px minmax(0, 1fr) 44px;
    }

    .product-lightbox__nav {
        width: 38px;
        height: 50px;
    }

    .article-content {
        font-size: 17px;
        line-height: 1.78;
    }

    .article-content table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
    }

    .contact-grid,
    .form-grid--two {
        grid-template-columns: 1fr;
    }

    .site-footer__top {
        padding-top: 40px;
    }

    .footer-brand {
        display: block;
    }

    .footer-brand > p {
        margin: 17px 0 20px;
    }

    .footer-category-grid {
        column-count: 2;
    }

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

    .site-footer__navigation {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-support {
        grid-column: auto;
    }

    .site-footer__disclosures {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom .container {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .site-footer__bottom p:last-child {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .section-heading--row {
        flex-direction: column;
        gap: 8px;
    }

    .home-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-hero__actions .button {
        width: 100%;
    }

    .home-benefits article,
    .home-benefits__item,
    .home-benefits__grid > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .category-grid,
    .brand-strip,
    .brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-hero__identity {
        flex-direction: column;
    }

    .brand-logo {
        width: 94px;
        height: 70px;
    }

    .product-card__body {
        padding: 11px;
    }

    .product-card__image {
        padding: 10px;
    }

    .product-card h2,
    .product-card h3 {
        font-size: 15px;
    }

    .product-card__price strong {
        font-size: 18px;
    }

    .product-card__desc,
    .product-card__actions .button--light {
        display: none;
    }

    .catalog-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-sort {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-sort__buttons {
        width: 100%;
    }

    .catalog-filter__price,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .blog-grid,
    .post-grid,
    .home-guides .blog-grid,
    .home-guides .post-grid {
        grid-template-columns: 1fr;
    }

    .specification-group dl > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .marketplace-reviews__score {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .marketplace-review {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 9px;
    }

    .marketplace-review__avatar {
        width: 34px;
        height: 34px;
    }

    .affiliate-note__inner {
        align-items: flex-start;
    }

    .affiliate-note__icon {
        width: 38px;
        height: 38px;
    }

    .footer-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .footer-category-grid {
        column-count: 1;
    }

    .footer-brand-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .site-header,
    .site-footer,
    .affiliate-note,
    .compare-tray,
    .product-detail__nav,
    .catalog-sidebar,
    .button,
    .product-card__actions {
        display: none !important;
    }

    body,
    .product-detail {
        color: #000;
        background: #fff;
    }

    .content-shell,
    .container {
        width: 100%;
    }

    .article-content a {
        color: #000;
        text-decoration: none;
    }
}
