:root {
    --blue-900: rgb(16, 0, 125);
    --blue-800: rgb(16, 0, 125);
    --blue-700: #2a18d8;
    --orange: #ffffff;
    --orange-dark: #f4f6ff;
    --ink: #172033;
    --muted: #697386;
    --line: #e5e9f2;
    --soft: #f4f7fb;
    --white: #ffffff;
    --shadow: 0 18px 44px rgba(16, 0, 125, 0.16);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--ink);
    background: #f2f5f9;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.94);
    transition: opacity 260ms ease, visibility 260ms ease;
}

.site-loader__media {
    width: clamp(130px, 22vw, 210px);
    aspect-ratio: 1 / 1;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 999px;
    border: 5px solid rgba(16, 0, 125, 0.22);
    box-shadow: 0 16px 44px rgba(16, 0, 125, 0.28);
    background: linear-gradient(135deg, rgba(16, 0, 125, 0.96), rgba(42, 24, 216, 0.82));
    animation: loaderBlink 850ms ease-in-out infinite;
}

.site-loader__media::before {
    content: "MATT";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: 0.16em;
}

.site-loader img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    object-fit: cover;
    animation: loaderBlink 850ms ease-in-out infinite;
}

body.page-loaded .site-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes loaderBlink {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.34;
        transform: scale(0.96);
    }
}

.maintenance-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    color: var(--white);
    background: radial-gradient(circle at top left, var(--blue-700), var(--blue-900) 48%, #09053f);
}

.maintenance-card {
    width: min(560px, 100%);
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    text-align: center;
}

.maintenance-card img {
    width: 246px;
    height: 74px;
    object-fit: contain;
    border-radius: 31px;
    background: var(--blue-900);
}

.maintenance-card > i {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-top: 10px;
    border-radius: 999px;
    color: var(--blue-900);
    background: var(--white);
    font-size: 30px;
}

.maintenance-card span {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.maintenance-card h1 {
    margin: 0;
    font-size: clamp(34px, 7vw, 54px);
    line-height: 1;
}

.maintenance-card p {
    max-width: 440px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.shell {
    width: min(1260px, calc(100% - 32px));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.top-strip {
    background: var(--blue-900);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}

.top-strip__inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.top-strip span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--blue-900);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 4px 22px rgba(16, 0, 125, 0.12);
}

.header-main {
    min-height: 104px;
    display: grid;
    grid-template-columns: 280px 1fr auto;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand__logo {
    width: 258px;
    height: 78px;
    object-fit: contain;
    object-position: center;
    border: 3px solid rgba(255, 255, 255, 0.22);
    border-radius: 32px;
    background: var(--blue-900);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
    image-rendering: auto;
}

.search-bar {
    position: relative;
    height: 50px;
    display: grid;
    grid-template-columns: 1fr 56px;
    overflow: visible;
    border: 2px solid rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    background: var(--white);
}

.search-bar input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 18px;
    border-radius: 999px 0 0 999px;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    color: var(--ink);
}

.search-bar input[type="search"]::-webkit-search-decoration,
.search-bar input[type="search"]::-webkit-search-cancel-button,
.search-bar input[type="search"]::-webkit-search-results-button,
.search-bar input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.search-bar > button {
    border: 0;
    border-radius: 0 999px 999px 0;
    color: var(--blue-900);
    background: var(--white);
    cursor: pointer;
    font-size: 20px;
}

.search-autocomplete {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 70;
    max-height: min(420px, calc(100vh - 160px));
    overflow: auto;
    padding: 8px;
    border: 1px solid rgba(16, 0, 125, 0.12);
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: 0 18px 42px rgba(16, 0, 125, 0.22);
}

.search-autocomplete[hidden] {
    display: none;
}

.search-autocomplete__option {
    width: 100%;
    min-height: 66px;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border: 0;
    border-radius: 12px;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.search-autocomplete__option:hover,
.search-autocomplete__option.is-active {
    background: #eff4ff;
}

.search-autocomplete__media {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 10px;
    color: var(--blue-900);
    background: #f4f7fb;
}

.search-autocomplete__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.search-autocomplete__text {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.search-autocomplete__text strong {
    overflow: hidden;
    color: var(--blue-900);
    font-size: 14px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-autocomplete__text small {
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-autocomplete__price {
    color: var(--blue-900);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.search-autocomplete__sentinel {
    height: 1px;
}

.search-autocomplete__sentinel[hidden] {
    display: none;
}

.search-autocomplete__loading {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--blue-900);
    font-size: 13px;
    font-weight: 800;
}

.search-autocomplete__loading[hidden] {
    display: none;
}

.search-autocomplete__loading .public-spinner {
    width: 20px;
    height: 20px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-actions a {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 4px;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.header-actions i {
    font-size: 22px;
}

.cart-link b {
    position: absolute;
    top: -7px;
    right: 5px;
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--blue-900);
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.78);
    font-size: 11px;
}

.category-bar {
    background: var(--blue-900);
    color: var(--white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
}

.category-bar__inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 4px;
    overflow: hidden;
    padding-block: 6px;
    scrollbar-width: none;
}

.category-bar__inner::-webkit-scrollbar {
    display: none;
}

.category-bar a {
    height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    padding: 0 15px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    outline: 0;
}

.all-categories {
    height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    padding: 0 15px;
    border: 0;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}

.category-bar a:hover,
.category-bar a:focus-visible,
.all-categories {
    background: var(--orange);
    color: var(--blue-900);
}

.category-bar a:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(16, 0, 125, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.category-drawer {
    position: fixed;
    inset: 0;
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.category-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 5, 63, 0.48);
}

.category-drawer__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(360px, 92vw);
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    transform: translateX(-100%);
    transition: transform 240ms ease;
}

.category-drawer__header {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid var(--line);
}

.category-drawer__header h2 {
    margin: 0;
    color: var(--blue-900);
    font-size: 18px;
}

.category-drawer__header button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    color: var(--blue-900);
    background: rgba(16, 0, 125, 0.08);
    cursor: pointer;
}

.category-drawer__list {
    overflow-y: auto;
    padding: 10px;
    display: grid;
    gap: 6px;
}

.category-drawer__list a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    border-radius: 10px;
    color: #24314f;
    font-weight: 700;
}

.category-drawer__list a:hover,
.category-drawer__list a:focus-visible {
    color: var(--blue-900);
    background: #edf3ff;
}

.category-drawer.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.category-drawer.is-open .category-drawer__panel {
    transform: translateX(0);
}

body.category-drawer-open {
    overflow: hidden;
}

.hero-shell {
    display: block;
    width: min(100% - 32px, 1300px);
    padding-top: 24px;
}

.promo-slider {
    position: relative;
    aspect-ratio: 1300 / 430;
    min-height: 280px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--soft);
    box-shadow: var(--shadow);
}

.promo-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px);
    transition: opacity 360ms ease, transform 360ms ease;
}

.promo-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}


.promo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    padding: 30px;
    color: var(--white);
    background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
            rgba(255, 255, 255, 0.08);
    text-align: center;
}

.carousel-placeholder i {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 36px;
}

.carousel-placeholder strong {
    max-width: 230px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.4;
}

.carousel-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: var(--white);
    background: rgba(16, 0, 125, 0.42);
    cursor: pointer;
    transform: translateY(-50%);
}

.carousel-control:hover {
    background: rgba(16, 0, 125, 0.74);
}

.carousel-control--prev {
    left: 18px;
}

.carousel-control--next {
    right: 18px;
}

.carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 3;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.carousel-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
}

.carousel-dots button.is-active {
    width: 26px;
    background: var(--white);
}

.eyebrow,
.section-heading span,
.listing-hero span {
    display: inline-block;
    color: var(--blue-900);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.promo-slide .eyebrow,
.listing-hero span {
    color: var(--white);
}

.promo-slide h1 {
    margin: 10px 0 14px;
    max-width: 560px;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.02;
}

.promo-slide p {
    margin: 0 0 26px;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.55;
}

.primary-cta,
.ghost-button,
.buy-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
}

.primary-cta {
    padding: 0 20px;
    color: var(--blue-900);
    background: var(--orange);
}

.primary-cta:hover {
    background: var(--orange-dark);
}

.quick-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 22px 0 10px;
}

.quick-benefits div {
    min-height: 90px;
    display: grid;
    grid-template-columns: 44px 1fr;
    align-content: center;
    column-gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.quick-benefits--subcategories a {
    min-height: 90px;
    display: grid;
    grid-template-columns: 44px 1fr;
    align-content: center;
    column-gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.quick-benefits--subcategories a:hover {
    border-color: rgba(16, 0, 125, 0.26);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(16, 0, 125, 0.12);
}

.quick-benefits--subcategories a.is-active {
    border-color: var(--blue-900);
    background: #eef1ff;
}

.quick-benefits--subcategories i {
    grid-row: span 2;
}

.quick-benefits--subcategories strong {
    color: var(--ink);
}

.quick-benefits i {
    grid-row: span 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--white);
    background: var(--blue-800);
    font-size: 22px;
}

.quick-benefits strong {
    font-size: 15px;
}

.quick-benefits span {
    color: var(--muted);
    font-size: 13px;
}

.section-block {
    padding: 28px 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.section-heading h2 {
    margin: 4px 0 0;
    color: var(--blue-900);
    font-size: 28px;
}

.section-heading a {
    color: var(--blue-800);
    font-weight: 800;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.product-grid--featured {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid--single-row {
    display: flex;
    overflow: hidden;
    gap: 16px;
}

.product-grid--single-row > * {
    flex: 0 0 calc((100% - 48px) / 4);
    min-width: 0;
}

.product-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.product-card__image {
    position: relative;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    padding: 18px;
    overflow: hidden;
    background: #f8fafc;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 190px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    border: 1px dashed rgba(16, 0, 125, 0.20);
    border-radius: var(--radius-sm);
    color: var(--blue-900);
    background:
            linear-gradient(135deg, rgba(16, 0, 125, 0.06), rgba(255, 255, 255, 0.82)),
            #f4f7fb;
    text-align: center;
}

.image-placeholder i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--white);
    background: var(--blue-900);
    font-size: 28px;
    box-shadow: 0 12px 26px rgba(16, 0, 125, 0.16);
}

.image-placeholder strong {
    max-width: 150px;
    color: #536079;
    font-size: 13px;
    line-height: 1.35;
}

.image-placeholder--large {
    min-height: 420px;
}

.image-placeholder--large i {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    font-size: 36px;
}

.image-placeholder--loading {
    position: absolute;
    inset: 18px;
    min-height: 0;
    overflow: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.image-placeholder--loading::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
    transform: translateX(-100%);
    animation: imagePlaceholderSweep 1.1s ease-in-out infinite;
}

.image-placeholder--loading strong,
.image-placeholder--loading i {
    position: relative;
    z-index: 1;
}

[data-image-frame].is-loaded .image-placeholder--loading {
    opacity: 0;
    visibility: hidden;
}

.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    padding: 5px 8px;
    border-radius: 999px;
    color: var(--blue-900);
    background: var(--orange);
    border: 1px solid rgba(16, 0, 125, 0.16);
    font-size: 12px;
    font-weight: 800;
}

.product-card__body {
    padding: 15px;
}

.product-card__brand {
    color: var(--blue-900);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-card__title {
    min-height: 44px;
    display: -webkit-box;
    overflow: hidden;
    margin: 7px 0;
    color: #23314f;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-row {
    min-height: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-row span {
    padding: 4px 7px;
    border-radius: 999px;
    color: var(--blue-800);
    background: #eaf2ff;
    font-size: 11px;
    font-weight: 800;
}

.price-row,
.product-price {
    display: grid;
    gap: 3px;
    margin: 12px 0;
}

.old-price {
    color: #98a2b3;
    font-size: 13px;
    text-decoration: line-through;
}

.price-row strong,
.product-price strong {
    color: var(--blue-900);
    font-size: 22px;
    font-weight: 800;
}

.buy-button {
    width: 100%;
    color: var(--white);
    background: var(--blue-800);
}

.buy-button:hover {
    background: var(--blue-700);
}

.wide-band {
    margin: 18px 0;
    background: var(--blue-900);
}

.brand-strip {
    min-height: 74px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    overflow: hidden;
    padding: 12px 0;
    scrollbar-width: none;
}

.brand-strip::-webkit-scrollbar {
    display: none;
}

.all-brands {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    color: var(--blue-900);
    background: var(--orange);
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
    flex: 0 0 auto;
}

.brand-strip a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    font-weight: 800;
    white-space: nowrap;
    flex: 0 0 auto;
}

.brand-drawer {
    position: fixed;
    inset: 0;
    z-index: 121;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.brand-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 5, 63, 0.48);
}

.brand-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px, 92vw);
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    transform: translateX(100%);
    transition: transform 240ms ease;
}

.brand-drawer__header {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid var(--line);
}

.brand-drawer__header h2 {
    margin: 0;
    color: var(--blue-900);
    font-size: 18px;
}

.brand-drawer__header button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    color: var(--blue-900);
    background: rgba(16, 0, 125, 0.08);
    cursor: pointer;
}

.brand-drawer__list {
    overflow-y: auto;
    padding: 10px;
    display: grid;
    gap: 6px;
}

.brand-drawer__list a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 10px;
    color: #24314f;
    font-weight: 700;
}

.brand-drawer__list a:hover,
.brand-drawer__list a:focus-visible {
    color: var(--blue-900);
    background: #edf3ff;
}

.brand-drawer.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.brand-drawer.is-open .brand-drawer__panel {
    transform: translateX(0);
}

body.brand-drawer-open {
    overflow: hidden;
}

.listing-hero {
    margin-top: 24px;
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background: linear-gradient(120deg, var(--blue-900), var(--blue-700));
}

.listing-hero h1 {
    margin: 6px 0 8px;
    font-size: clamp(30px, 5vw, 48px);
}

.listing-hero p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.listing-hero > i {
    color: rgba(255, 255, 255, 0.28);
    font-size: 88px;
}

.listing-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 18px;
    padding: 24px 0 34px;
}

.filter-panel,
.listing-toolbar,
.empty-state {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.filter-panel {
    align-self: start;
    padding: 18px;
}

.filter-panel h2 {
    margin: 0 0 14px;
    color: var(--blue-900);
    font-size: 18px;
}

.filter-panel label {
    display: flex;
    gap: 9px;
    padding: 10px 0;
    color: #33415f;
    font-weight: 700;
}

.listing-toolbar {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
    padding: 10px 14px;
}

.listing-toolbar select {
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    background: var(--white);
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1.08fr);
    gap: 24px;
    padding: 28px 0;
}

.product-media {
    display: grid;
    gap: 10px;
    align-content: start;
}

.product-gallery,
.product-info {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
}

.product-gallery {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 520px;
    overflow: hidden;
    padding: 28px;
}

.product-gallery img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    position: relative;
    z-index: 1;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-gallery .image-placeholder--loading {
    inset: 28px;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 10px;
}

.product-thumbs-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    padding: 2px;
}

.product-thumbs-track::-webkit-scrollbar {
    height: 6px;
}

.product-thumbs-track::-webkit-scrollbar-thumb {
    background: rgba(16, 0, 125, 0.30);
    border-radius: 999px;
}

.product-thumbs-nav {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(16, 0, 125, 0.22);
    border-radius: 999px;
    color: var(--blue-900);
    background: var(--white);
    cursor: pointer;
}

.product-thumbs-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.product-thumb {
    flex: 0 0 78px;
    height: 78px;
    padding: 6px;
    border: 1px solid rgba(16, 0, 125, 0.18);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.product-thumb:hover {
    border-color: rgba(16, 0, 125, 0.42);
}

.product-thumb.is-active {
    border-color: var(--blue-900);
    box-shadow: 0 0 0 2px rgba(16, 0, 125, 0.16);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-info {
    padding: 30px;
}

.product-info__brand {
    color: var(--blue-900);
    font-weight: 800;
    text-transform: uppercase;
}

.product-info h1 {
    margin: 10px 0 12px;
    color: var(--blue-900);
    font-size: clamp(30px, 5vw, 44px);
    line-height: 1.08;
}


.product-copy {
    color: var(--muted);
    line-height: 1.65;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0;
}

.ghost-button {
    padding: 0 18px;
    border: 1px solid var(--line);
    color: var(--blue-800);
    background: var(--white);
    border-radius: 999px;
}

.service-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #33415f;
    font-weight: 700;
}

.service-list i {
    color: var(--blue-900);
}

.empty-state {
    display: grid;
    place-items: center;
    min-height: 260px;
    padding: 30px;
    text-align: center;
}

.empty-state i {
    color: var(--blue-900);
    font-size: 54px;
}

.empty-state h2 {
    margin: 10px 0 4px;
    color: var(--blue-900);
}

.infinite-loader,
.infinite-end {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    color: var(--blue-900);
    font-weight: 800;
}

.infinite-loader[hidden],
.infinite-end[hidden] {
    display: none;
}

.public-spinner {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(16, 0, 125, 0.16);
    border-top-color: var(--blue-900);
    border-radius: 999px;
    animation: publicSpin 800ms linear infinite;
}

@keyframes publicSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes imagePlaceholderSweep {
    to {
        transform: translateX(100%);
    }
}

.site-footer {
    margin-top: 28px;
    padding: 34px 0;
    color: rgba(255, 255, 255, 0.82);
    background: var(--blue-900);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 12px;
    color: var(--white);
}

.site-footer a,
.site-footer p {
    display: block;
    margin: 8px 0;
    line-height: 1.5;
}

.payment-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-row span {
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.10);
    font-weight: 800;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: #25d366;
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.38);
    cursor: pointer;
    font-size: 31px;
}

.whatsapp-float:hover {
    background: #1fb75a;
}

.scroll-top-button {
    position: fixed;
    right: 22px;
    bottom: 96px;
    z-index: 39;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: var(--white);
    background: var(--blue-900);
    box-shadow: 0 14px 30px rgba(16, 0, 125, 0.24);
    cursor: pointer;
    font-size: 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.scroll-top-button.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-button:hover {
    background: var(--blue-700);
}

.whatsapp-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: end;
    pointer-events: none;
    opacity: 0;
    transition: opacity 160ms ease;
}

.whatsapp-modal.is-open {
    pointer-events: auto;
    opacity: 1;
}

.whatsapp-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 15, 32, 0.42);
}

.whatsapp-modal__panel {
    position: relative;
    width: min(390px, calc(100% - 28px));
    margin: 0 22px 96px 0;
    overflow: hidden;
    border: 1px solid rgba(16, 0, 125, 0.12);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 24px 64px rgba(16, 0, 125, 0.22);
    transform: translateY(10px);
    transition: transform 160ms ease;
}

.whatsapp-modal.is-open .whatsapp-modal__panel {
    transform: translateY(0);
}

.whatsapp-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
    color: var(--white);
    background: var(--blue-900);
}

.whatsapp-modal__header span {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.whatsapp-modal__header h2 {
    margin: 0;
    font-size: 21px;
}

.whatsapp-modal__header button {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.whatsapp-vendors {
    display: grid;
    gap: 10px;
    padding: 14px;
}

.whatsapp-vendors a {
    min-height: 70px;
    display: grid;
    grid-template-columns: 46px 1fr 18px;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--blue-900);
    background: #f8fafc;
    font-weight: 800;
}

.whatsapp-vendors a:hover {
    border-color: rgba(37, 211, 102, 0.55);
    background: #effdf4;
}

.whatsapp-vendors a > i:first-child {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: #25d366;
    font-size: 21px;
}

.whatsapp-vendors span {
    display: grid;
    gap: 3px;
}

.whatsapp-vendors small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.cart-modal {
    position: fixed;
    inset: 0;
    z-index: 65;
    display: grid;
    place-items: stretch end;
    pointer-events: none;
    opacity: 0;
    transition: opacity 160ms ease;
}

.cart-modal.is-open {
    pointer-events: auto;
    opacity: 1;
}

.cart-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 15, 32, 0.42);
}

.cart-modal__panel {
    position: relative;
    width: min(430px, calc(100% - 24px));
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
    background: var(--white);
    box-shadow: -18px 0 50px rgba(16, 0, 125, 0.22);
    transform: translateX(18px);
    transition: transform 160ms ease;
}

.cart-modal.is-open .cart-modal__panel {
    transform: translateX(0);
}

.cart-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
    color: var(--white);
    background: var(--blue-900);
}

.cart-modal__header span {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.cart-modal__header h2 {
    margin: 0;
    font-size: 21px;
}

.cart-modal__header button {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.cart-list {
    display: grid;
    align-content: start;
    gap: 10px;
    overflow: auto;
    padding: 14px;
}

.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr 38px;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #f8fafc;
}

.cart-item img,
.cart-item__placeholder {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--white);
    object-fit: contain;
}

.cart-item__placeholder {
    color: var(--blue-900);
    border: 1px dashed rgba(16, 0, 125, 0.22);
}

.cart-item strong,
.cart-item span,
.cart-item small {
    display: block;
}

.cart-item strong {
    color: var(--blue-900);
    line-height: 1.3;
}

.cart-item span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.cart-item small {
    margin-top: 4px;
    color: #33415f;
    font-weight: 800;
}

.cart-item button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(217, 45, 32, 0.18);
    border-radius: 999px;
    color: #d92d20;
    background: var(--white);
    cursor: pointer;
}

.cart-empty {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 34px;
    color: var(--muted);
    text-align: center;
}

.cart-empty[hidden] {
    display: none;
}

.cart-empty i {
    color: var(--blue-900);
    font-size: 48px;
}

.cart-empty strong {
    color: var(--blue-900);
}

.cart-modal__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid var(--line);
    background: var(--white);
}

.cart-modal__footer strong {
    color: var(--blue-900);
}

.cart-modal__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.cart-checkout-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: #25d366;
    cursor: pointer;
    font-weight: 800;
}

.cart-checkout-button:hover {
    background: #1fb75a;
}

.cart-checkout-button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

@media (max-width: 980px) {
    .top-strip__inner {
        justify-content: center;
        flex-wrap: wrap;
        padding: 8px 0;
    }

    .header-main {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 15px 0;
    }

    .header-actions {
        justify-content: space-between;
    }

    .listing-layout,
    .product-detail {
        grid-template-columns: 1fr;
    }

    .quick-benefits,
    .product-grid,
    .product-grid--featured,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid--single-row > * {
        flex-basis: calc((100% - 16px) / 2);
    }
}

@media (max-width: 640px) {
    .shell {
        width: min(100% - 20px, 1260px);
    }

    .top-strip span:nth-child(n+2) {
        display: none;
    }

    .brand__logo {
        width: 214px;
        height: 66px;
        border-radius: 28px;
    }

    .search-autocomplete__option {
        grid-template-columns: 44px 1fr;
    }

    .search-autocomplete__price {
        grid-column: 2;
    }

    .header-actions span {
        display: none;
    }

    .promo-slide {
        min-height: 0;
    }

    .carousel-control {
        display: none;
    }

    .quick-benefits,
    .product-grid,
    .product-grid--featured,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-grid--single-row > * {
        flex-basis: 100%;
    }

    .listing-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .listing-hero > i {
        font-size: 58px;
    }

    .listing-toolbar,
    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-gallery {
        min-height: 360px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .scroll-top-button {
        right: 17px;
        bottom: 82px;
        width: 48px;
        height: 48px;
    }

    .whatsapp-modal {
        place-items: end center;
    }

    .whatsapp-modal__panel {
        width: calc(100% - 20px);
        margin: 0 0 82px;
    }

    .cart-modal__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .cart-modal__actions,
    .cart-checkout-button,
    .cart-modal__actions .ghost-button {
        width: 100%;
    }
}
