:root {
--brand: #154a8d;
--brand-dark: #9a0b14;
--brand-darker: #112b4c;
--ink: #1a1a1a;
--ink-muted: #6b6b6b;
--line: #e4e4e4;
--line-strong: #c8c8c8;
--bg: #f5f5f5;
--card: #ffffff;
--accent-green: #2e7d32;
--accent-amber: #b8860b;
--accent-red: #b00020;
--paint-accent: #ff4200;
--paint-accent-hover: #e03a00;
--paint-accent-deep: #cc3500;
--paint-accent-ink: #ffffff;
--main-pad-x: 24px;
--main-pad-y: 24px;
}
* { box-sizing: border-box; }
html, body {
margin: 0;
padding: 0;
font-family: "Barlow", sans-serif;
color: var(--ink);
background: #fff;
font-size: 15px;
line-height: 1.5;
}
body {
min-height: 100vh;
display: flex;
flex-direction: column;
overflow-x: clip;
}
.site-main { flex: 1; }
a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; }
.site-header {
background: #112b4c;
color: #fff;
position: relative;
z-index: 50;
}
.site-header__inner {
max-width: 1440px;
margin: 0 auto;
display: flex;
align-items: center;
gap: 24px;
padding: 14px 24px;
justify-content: space-between;
flex-wrap: wrap;
}
.brand {
display: flex;
align-items: center;
gap: 8px;
color: #fff !important;
font-weight: 700;
letter-spacing: 0.04em;
}
.brand:hover { text-decoration: none; }
.brand__logo {
display: block;
height: 40px;
width: auto;
}
.header-search {
flex: 1;
display: flex;
align-items: stretch;
background: #fff;
border-radius: 3px;
position: relative;
max-width: 720px;
}
.header-search input {
flex: 1;
border: 0;
background: transparent;
border-radius: 999px;
padding: 8px 12px;
font: inherit;
outline: none;
color: var(--ink);
font-size: 0.9rem;
}
.header-search button {
background: var(--brand);
color: #fff;
border: 0;
padding: 0 18px;
cursor: pointer;
display: inline-flex;
align-items: center;
}
.header-search button:hover { background: #0f3a70; }
@media (max-width: 720px) {
.site-header__inner { gap: 10px; padding: 10px 14px; }
.brand__logo { height: 32px; }
.header-search {
order: 3;
flex: 0 0 100%;
width: 100%;
max-width: none;
}
.header-search input { padding: 8px 10px; }
}
.header-actions {
display: flex;
align-items: center;
gap: 6px;
}
.header-action {
position: relative;
color: #fff !important;
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 10px;
border-radius: 4px;
}
.header-action:hover { text-decoration: none; background: rgba(255, 255, 255, 0.08); }
.header-action__label { font-size: 0.85rem; font-weight: 600; }
.vat-toggle {
display: inline-flex;
border: 1px solid rgba(255, 255, 255, 0.35);
border-radius: 5px;
overflow: hidden;
margin-right: 4px;
}
.vat-toggle__btn {
background: transparent;
color: #fff;
border: 0;
padding: 5px 10px;
font: inherit;
font-size: 0.78rem;
font-weight: 600;
cursor: pointer;
line-height: 1.2;
}
.vat-toggle__btn:hover { background: rgba(255, 255, 255, 0.08); }
.vat-toggle__btn[aria-pressed="true"] {
background: #fff;
color: #112b4c;
}
.vat-toggle__btn + .vat-toggle__btn { border-left: 1px solid rgba(255, 255, 255, 0.35); }
@media (max-width: 720px) {
.vat-toggle { display: none; }
}
.vat-price--incl { display: none; }
html.vat-mode-incl .vat-price--incl { display: inline; }
html.vat-mode-incl .vat-price--excl { display: none; }
.vat-price-block--incl { display: none; }
html.vat-mode-incl .vat-price-block--incl { display: block; }
html.vat-mode-incl .vat-price-block--excl { display: none; }
.paypal-message {
margin: 10px 0 4px;
min-height: 20px;
}
.cart-btn { padding: 6px 8px; }
.cart-btn:hover { text-decoration: none; opacity: 0.95; }
.menu-toggle {
display: none;
background: transparent;
border: 0;
color: #fff;
padding: 6px 8px;
cursor: pointer;
border-radius: 4px;
}
.menu-toggle:hover { background: rgba(255, 255, 255, 0.08); }
@media (max-width: 720px) {
.menu-toggle { display: inline-flex; }
.header-action__label { display: none; }
}
.cart-btn__badge {
position: absolute;
top: -2px;
right: -2px;
background: #ff8100;
color: #1a1a1a;
font-size: 11px;
font-weight: 700;
border-radius: 999px;
min-width: 18px;
height: 18px;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0 5px;
}
.site-header__inner,
.mega-nav { position: relative; }
.site-header__inner { z-index: 3; }
.mega-nav { z-index: 2; }
.nav-dim {
position: fixed;
inset: 0;
z-index: 1;
background: rgba(0, 0, 0, 0.35);
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity 0.15s ease-out, visibility 0.15s;
}
body:has(.mega-nav__item--has-panel:hover) .nav-dim,
body:has(.mega-nav__item--has-panel:focus-within) .nav-dim,
.nav-open .nav-dim {
opacity: 1;
visibility: visible;
}
.nav-open .nav-dim { pointer-events: auto; }
body.nav-locked { overflow: hidden; }
.mega-nav__drawerhead,
.mega-nav__drill,
.mega-nav__panelhead { display: none; }
.mega-nav {
background: #f1f1f1;
}
.mega-nav__bar {
max-width: 1440px;
margin: 0 auto;
padding: 0 24px;
display: flex;
align-items: stretch;
list-style: none;
gap: 0;
position: relative;
}
.mega-nav__item + .mega-nav__item { border-left: 1px solid #fff; }
.mega-nav__item { display: flex; flex: 1 1 0; min-width: 0; }
.mega-nav__top {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
padding: 9px 14px;
color: var(--ink) !important;
font-size: 0.84rem;
font-weight: 600;
line-height: 1.25;
text-align: center;
}
.mega-nav__top:hover,
.mega-nav__item:hover .mega-nav__top,
.mega-nav__item:focus-within .mega-nav__top {
background: #fff;
color: var(--brand) !important;
box-shadow: inset 0 -3px 0 var(--brand);
text-decoration: none;
}
button.mega-nav__top {
background: transparent;
border: 0;
font-family: inherit;
cursor: pointer;
}
.mega-nav__panel {
position: absolute;
top: 100%;
left: 0;
right: 0;
z-index: 50;
background: #fff;
border: 1px solid var(--line);
border-top: 0;
box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
padding: 26px 28px 20px;
display: none;
margin: 0px 23px;
}
.mega-nav__item:hover .mega-nav__panel,
.mega-nav__item:focus-within .mega-nav__panel {
display: block;
}
.mega-nav__layout { display: flex; gap: 36px; align-items: flex-start; }
.mega-nav__groups {
flex: 1;
min-width: 0;
columns: 220px 4;
column-gap: 36px;
}
.mega-nav__group {
break-inside: avoid;
margin: 0 0 24px;
}
.mega-nav__groupname {
display: block;
margin: 0 0 8px;
color: var(--ink) !important;
font-size: 0.92rem;
font-weight: 700;
line-height: 1.3;
}
a.mega-nav__groupname:hover { color: var(--brand) !important; text-decoration: none; }
.mega-nav__leaves {
list-style: none;
margin: 0;
padding: 0;
}
.mega-nav__leaf {
display: block;
padding: 3px 0;
color: var(--ink) !important;
font-size: 0.86rem;
line-height: 1.35;
}
.mega-nav__leaf:hover { color: var(--brand) !important; text-decoration: underline; }
.mega-nav__showall {
display: inline-block;
margin-top: 7px;
color: #046ec5 !important;
font-size: 0.84rem;
font-weight: 600;
text-decoration: underline;
}
.mega-nav__showall:hover { color: var(--brand) !important; }
.mega-nav__brandcol {
flex: 0 0 190px;
border-left: 1px solid var(--line);
padding-left: 32px;
}
.mega-nav__everything {
display: inline-flex;
align-items: center;
gap: 7px;
margin-top: 4px;
color: #046ec5 !important;
font-size: 0.9rem;
font-weight: 600;
}
.mega-nav__everything::before {
content: "";
width: 8px;
height: 8px;
border-right: 2px solid currentColor;
border-top: 2px solid currentColor;
transform: rotate(45deg);
flex: none;
}
.mega-nav__everything:hover { text-decoration: underline; }
.mega-nav__grid {
list-style: none;
margin: 0;
padding: 0;
columns: 230px 5;
column-gap: 28px;
}
.mega-nav__grid li {
break-inside: avoid;
margin: 0 0 10px;
}
.mega-nav__link {
display: block;
position: relative;
padding-left: 16px;
color: var(--ink) !important;
font-size: 0.86rem;
line-height: 1.35;
}
.mega-nav__link::before {
content: "\00bb";
position: absolute;
left: 0;
color: var(--brand);
font-weight: 700;
}
.mega-nav__link:hover {
color: var(--brand) !important;
text-decoration: none;
}
.mega-nav__link--icon {
display: flex;
align-items: center;
gap: 9px;
padding-left: 0;
}
.mega-nav__link--icon::before { content: none; }
.mega-nav__link--icon .paint-finish-icon {
flex: none;
width: 22px;
height: 22px;
color: #046ec5;
}
@media (max-width: 900px) and (min-width: 721px) {
.mega-nav { overflow-x: auto; }
.mega-nav__bar { flex-wrap: nowrap; }
.mega-nav__panel { display: none !important; }
.mega-nav__item--info { display: none; }
.nav-dim { display: none; }
.mega-nav__top { white-space: nowrap; }
}
@media (max-width: 720px) {
.mega-nav {
display: flex;
flex-direction: column;
position: fixed;
top: 0;
bottom: 0;
left: 0;
width: min(88vw, 400px);
z-index: 4;
background: #fff;
border-bottom: 0;
overflow: hidden;
transform: translateX(-100%);
transition: transform 0.24s ease-out;
box-shadow: 0 0 26px rgba(0, 0, 0, 0.28);
}
.nav-open .mega-nav { transform: translateX(0); }
.mega-nav__drawerhead {
display: flex;
flex: none;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 16px 18px;
border-bottom: 1px solid var(--line-strong);
}
.mega-nav__drawertitle { font-size: 1.15rem; color: var(--ink); }
.mega-nav__close {
background: transparent;
border: 0;
color: #112b4c;
font-size: 1.6rem;
line-height: 1;
padding: 0 4px;
cursor: pointer;
}
.mega-nav__bar {
flex: 1;
min-height: 0;
flex-direction: column;
align-items: stretch;
gap: 0;
padding: 0;
position: static;
overflow-y: auto;
margin: 0px;
}
.mega-nav__item { display: block; flex: none; }
.mega-nav__item + .mega-nav__item { border-left: 0; }
.mega-nav__item--has-panel .mega-nav__top { display: none; }
.mega-nav__drill { display: block; }
.mega-nav__top,
.mega-nav__drill {
width: 100%;
background: transparent;
border: 0;
border-bottom: 1px solid var(--line);
padding: 17px 44px 17px 18px;
font: inherit;
font-size: 0.98rem;
color: var(--ink) !important;
text-align: left;
cursor: pointer;
position: relative;
white-space: normal;
}
.mega-nav__top:hover,
.mega-nav__item:hover .mega-nav__top,
.mega-nav__item:focus-within .mega-nav__top {
background: transparent;
box-shadow: none;
color: var(--ink) !important;
}
.mega-nav__drill::after {
content: "";
position: absolute;
right: 18px;
top: 50%;
width: 9px;
height: 9px;
margin-top: -5px;
border-right: 2px solid #112b4c;
border-top: 2px solid #112b4c;
transform: rotate(45deg);
}
.mega-nav__panel {
position: fixed;
top: 0;
bottom: 0;
left: 0;
width: min(88vw, 400px);
right: auto;
z-index: 4;
display: block;
padding: 0;
border: 0;
box-shadow: none;
overflow-y: auto;
transform: translateX(100%);
transition: transform 0.22s ease-out, visibility 0.22s;
visibility: hidden;
margin: 0px;
}
.mega-nav__item.is-open .mega-nav__panel {
transform: translateX(0);
visibility: visible;
}
.mega-nav__item:hover .mega-nav__panel,
.mega-nav__item:focus-within .mega-nav__panel {
transform: translateX(100%);
visibility: hidden;
}
.mega-nav__item.is-open:hover .mega-nav__panel,
.mega-nav__item.is-open:focus-within .mega-nav__panel {
transform: translateX(0);
visibility: visible;
}
.mega-nav__panelhead {
display: block;
border-bottom: 1px solid var(--line-strong);
padding: 10px 18px 14px;
}
.mega-nav__back {
display: block;
width: 100%;
background: transparent;
border: 0;
padding: 6px 0 10px 16px;
font: inherit;
font-size: 0.9rem;
color: var(--ink-muted);
text-align: left;
cursor: pointer;
position: relative;
}
.mega-nav__back::before {
content: "";
position: absolute;
left: 2px;
top: 50%;
width: 8px;
height: 8px;
margin-top: -6px;
border-left: 2px solid var(--ink-muted);
border-bottom: 2px solid var(--ink-muted);
transform: rotate(45deg);
}
.mega-nav__shopall {
display: block;
font-size: 1.05rem;
font-weight: 700;
color: var(--ink) !important;
}
.mega-nav__grid {
columns: auto;
column-gap: 0;
}
.mega-nav__grid li { margin: 0; }
.mega-nav__link {
padding: 17px 44px 17px 18px;
border-bottom: 1px solid var(--line);
font-size: 0.98rem;
}
.mega-nav__link::before {
content: "";
left: auto;
right: 18px;
top: 50%;
width: 9px;
height: 9px;
margin-top: -5px;
border-right: 2px solid #112b4c;
border-top: 2px solid #112b4c;
transform: rotate(45deg);
}
.mega-nav__layout { display: block; }
.mega-nav__groups { columns: auto; column-gap: 0; }
.mega-nav__group { margin: 0; break-inside: auto; }
.mega-nav__group .mega-nav__leaves,
.mega-nav__group .mega-nav__showall,
.mega-nav__brandcol,
.mega-nav__everything { display: none; }
.mega-nav__groupname {
margin: 0;
padding: 17px 44px 17px 18px;
border-bottom: 1px solid var(--line);
font-size: 0.98rem;
font-weight: 400;
position: relative;
}
.mega-nav__groupname::after {
content: "";
position: absolute;
right: 18px;
top: 50%;
width: 9px;
height: 9px;
margin-top: -5px;
border-right: 2px solid #112b4c;
border-top: 2px solid #112b4c;
transform: rotate(45deg);
}
}
.reviews-ribbon {
justify-content: center;
align-items: center;
gap: 8px;
font-size: 0.82rem;
color: var(--ink);
}
.reviews-ribbon:hover { text-decoration: none; }
.reviews-ribbon__stars {
display: inline-block;
font-size: 1.05rem;
line-height: 1;
letter-spacing: 2px;
color: #ff8100;
}
.reviews-ribbon__star-part {
position: relative;
display: inline-block;
color: #d9d9d9;
}
.reviews-ribbon__star-part-fill {
position: absolute;
top: 0;
left: 0;
overflow: hidden;
color: #ff8100;
}
.reviews-ribbon__text strong { font-weight: 700; }
.reviews-ribbon--strip {
display: inline-flex;
flex: none;
white-space: nowrap;
font-weight: 600;
}
.reviews-ribbon--strip { font-size: 0.78rem; }
.reviews-ribbon--strip .reviews-ribbon__stars { font-size: 1rem; }
.reviews-ribbon--footer {
display: flex;
color: #fff;
margin-bottom: 4px;
}
.header-strip {
background: #fff;
border-bottom: 1px solid var(--line);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.header-strip__inner {
max-width: 1440px;
margin: 0 auto;
padding: 0 24px;
display: grid;
grid-auto-flow: column;
grid-auto-columns: 1fr;
align-items: center;
gap: 18px;
min-height: 40px;
}
.header-strip__cell { display: flex; justify-content: center; min-width: 0; }
.header-strip__item {
display: inline-flex;
align-items: center;
gap: 7px;
padding: 7px 0;
color: var(--ink);
font-size: 0.82rem;
font-weight: 700;
white-space: nowrap;
flex: none;
}
.header-strip__item:hover { text-decoration: none; color: var(--brand); }
.header-strip__icon { color: var(--brand); flex: none; width: 20px; height: 20px; }
.header-strip__sub {
font-weight: 400;
color: var(--ink-muted);
font-size: 0.78rem;
border-left: 1px solid var(--line-strong);
padding-left: 8px;
}
@media (max-width: 900px) {
.header-strip__inner {
grid-auto-flow: row;
grid-template-columns: 1fr;
padding: 0 14px;
gap: 0;
}
.header-strip__cell {
grid-area: 1 / 1;
opacity: 0;
visibility: hidden;
transition: opacity 0.35s ease, visibility 0.35s;
}
.header-strip__cell.is-active { opacity: 1; visibility: visible; }
.header-strip__item { font-size: 0.8rem; }
.header-strip__icon { width: 18px; height: 18px; }
}
.site-main {
max-width: 1440px;
margin: 0 auto;
padding: var(--main-pad-y) var(--main-pad-x);
width: 100%;
}
@media (max-width: 720px) {
:root { --main-pad-x: 12px; --main-pad-y: 14px; }
}
.home-band {
width: 100vw;
margin-left: calc(50% - 50vw);
border-radius: 0;
}
.home-band__inner {
max-width: 1440px;
margin: 0 auto;
padding-left: var(--main-pad-x);
padding-right: var(--main-pad-x);
}
.campaign-ribbon {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
padding: 8px var(--main-pad-x);
background: #ecf7ee;
border-bottom: 1px solid #c4e7cb;
color: #1d6b33;
font-size: 0.88rem;
text-align: center;
}
.campaign-ribbon__close-form { display: inline-flex; }
.campaign-ribbon__close {
border: 0;
background: none;
color: inherit;
font-size: 0.95rem;
line-height: 1;
padding: 2px 4px;
cursor: pointer;
opacity: 0.7;
}
.campaign-ribbon__close:hover { opacity: 1; }
.flash {
display: flex;
align-items: center;
gap: 10px;
padding: 11px 14px;
border-radius: 4px;
margin-bottom: 14px;
font-size: 0.92rem;
line-height: 1.4;
border: 1px solid transparent;
}
.flash svg { flex: none; }
.flash.notice { background: #eef8f0; border-color: #cfe9d6; color: #1d6b33; }
.flash.alert  { background: #fdf0ee; border-color: #f2cfc9; color: #8a2b1f; }
.flash.notice svg { color: var(--accent-green); }
.flash.alert svg  { color: var(--accent-red); }
.impersonation-banner {
position: sticky;
top: 0;
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
flex-wrap: wrap;
padding: 8px 16px;
background: #5b21b6;
color: #fff;
font-size: 14px;
text-align: center;
}
.impersonation-banner form { display: inline; margin: 0; }
.impersonation-banner__btn {
padding: 4px 12px;
border: 1px solid rgba(255, 255, 255, 0.85);
border-radius: 4px;
background: transparent;
color: #fff;
font-size: 13px;
font-weight: 600;
cursor: pointer;
}
.impersonation-banner__btn:hover { background: rgba(255, 255, 255, 0.15); }
.page-head {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 16px;
}
.page-head h1 {
margin: 0;
font-size: 1.6rem;
font-weight: 700;
}
@media (max-width: 720px) {
.page-head {
flex-direction: column;
align-items: flex-start;
gap: 6px;
}
.page-head p { margin: 0; }
}
.breadcrumb {
font-size: 12px;
color: var(--ink-muted);
margin-bottom: 12px;
display: flex;
align-items: baseline;
flex-wrap: nowrap;
min-width: 0;
white-space: nowrap;
overflow-x: auto;
scrollbar-width: none;
}
.breadcrumb::-webkit-scrollbar { display: none; }
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb__sep { margin: 0 6px; color: var(--line-strong); flex: none; }
.breadcrumb__crumb {
flex: 0 1 auto;
min-width: var(--crumb-floor, 4.5em);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.breadcrumb__crumb:first-of-type,
.breadcrumb__crumb--current { flex: none; min-width: 0; }
.breadcrumb__crumb--short { --crumb-floor: 0; }
.with-sidebar {
display: grid;
grid-template-columns: 260px 1fr;
gap: 20px;
}
.with-sidebar > * { min-width: 0; }
@media (max-width: 900px) {
.with-sidebar { grid-template-columns: 1fr; }
}
.sidebar .panel {
background: var(--card);
border: 1px solid var(--line);
border-radius: 4px;
padding: 16px;
margin-bottom: 16px;
}
.sidebar .panel h3 {
margin: 0 0 12px;
font-size: 1rem;
font-weight: 700;
}
.sidebar .panel ul { list-style: none; padding: 0; margin: 0; }
.sidebar .panel li { padding: 4px 0; font-size: 0.92rem; }
.sidebar .panel li a { color: var(--ink); }
.sidebar .panel li a:hover { color: var(--brand); text-decoration: none; }
.sidebar .panel .count { color: var(--ink-muted); font-size: 0.85rem; }
.sidebar .search-input {
display: flex;
border: 1px solid var(--line-strong);
border-radius: 4px;
overflow: hidden;
}
.sidebar .search-input input {
flex: 1; border: 0; padding: 8px 10px; font: inherit; outline: none;
}
.sidebar .search-input button {
background: var(--bg); color: var(--ink-muted); border: 0; padding: 0 12px; cursor: pointer;
}
.filters-collapse__toggle { display: none; }
@media (max-width: 900px) {
.filters-collapse__toggle {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
background: var(--card);
border: 1px solid var(--line);
border-radius: 4px;
padding: 12px 16px;
margin-bottom: 16px;
font: inherit;
font-size: 1rem;
font-weight: 700;
color: var(--ink);
cursor: pointer;
}
.filters-collapse__chevron { transition: transform 0.15s; }
.filters-collapse.is-expanded .filters-collapse__chevron { transform: rotate(180deg); }
.filters-collapse.is-collapsed .filters-collapse__body { display: none; }
}
.brand-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 16px;
}
.brand-card {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
gap: 8px;
padding: 20px 14px 16px;
background: var(--card);
border: 1px solid var(--line);
border-radius: 8px;
color: var(--ink) !important;
text-decoration: none;
transition: border-color 0.12s, transform 0.12s, box-shadow 0.12s;
}
.brand-card:hover {
text-decoration: none;
border-color: var(--brand);
box-shadow: 0 4px 14px rgba(21, 74, 141, 0.08);
transform: translateY(-2px);
}
.brand-card__logo {
height: 70px;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
.brand-card__logo img {
max-height: 100%;
max-width: 100%;
object-fit: contain;
}
.brand-card__name {
font-weight: 700;
text-align: center;
font-size: 0.95rem;
}
.brand-card__count {
font-size: 0.78rem;
color: var(--ink-muted);
}
.brand-card[hidden] { display: none; }
.brand-grid__empty {
margin: 24px 0;
color: var(--ink-muted);
}
.brand-search,
.brand-alpha,
.brand-search__clear {
--filter-accent: var(--brand);
--filter-accent-hover: var(--brand);
--filter-accent-deep: var(--brand);
--filter-accent-ring: rgba(21, 74, 141, 0.15);
}
.paint-search,
.paint-alpha,
.paint-search__clear {
--filter-accent: var(--paint-accent);
--filter-accent-hover: var(--paint-accent-hover);
--filter-accent-deep: var(--paint-accent-deep);
--filter-accent-ring: rgba(255, 66, 0, 0.15);
}
.brand-search,
.paint-search {
display: flex;
margin-top: 16px;
max-width: 720px;
}
.brand-search input[type="text"],
.paint-search input[type="text"] {
flex: 1;
min-width: 0;
padding: 11px 14px;
border: 1px solid var(--line-strong);
font: inherit;
font-size: 0.9rem;
}
.brand-search input[type="text"]:focus,
.paint-search input[type="text"]:focus {
outline: none;
border-color: #046ec5;
box-shadow: 0 0 0 1px #046ec5;
}
.brand-search button,
.paint-search button {
display: inline-flex;
align-items: center;
gap: 7px;
padding: 0 18px;
border: 0;
background: var(--brand-darker);
color: #fff;
font: inherit;
font-weight: 600;
cursor: pointer;
}
.brand-search button:hover,
.paint-search button:hover { background: var(--filter-accent-hover); }
.brand-search__clear,
.paint-search__clear { color: var(--filter-accent-deep); font-weight: 600; }
.brand-alpha,
.paint-alpha {
display: flex;
flex-wrap: wrap;
gap: 4px;
margin: 0 0 14px;
}
.brand-alpha__letter,
.paint-alpha__letter {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 30px;
height: 30px;
padding: 0 6px;
border: 1px solid var(--line);
border-radius: 4px;
background: #fff;
font-size: 0.84rem;
font-weight: 700;
color: var(--ink) !important;
}
.brand-alpha__letter--all,
.paint-alpha__letter--all { min-width: 46px; }
.brand-alpha__letter:hover,
.paint-alpha__letter:hover {
border-color: var(--filter-accent);
color: var(--filter-accent-deep) !important;
text-decoration: none;
}
.brand-alpha__letter.is-current, .paint-alpha__letter.is-current {
background: #2a2a2a;
border-color: #2a2a2a;
color: #fff !important;
}
.brand-alpha__letter.is-empty,
.paint-alpha__letter.is-empty {
color: var(--line-strong) !important;
background: var(--bg);
border-color: var(--line);
cursor: default;
}
@media (max-width: 720px) {
.brand-search button,
.paint-search button { padding: 11px 18px; justify-content: center; }
.brand-alpha,
.paint-alpha { gap: 3px; }
.brand-alpha__letter,
.paint-alpha__letter { min-width: 26px; height: 26px; padding: 0 4px; font-size: 0.78rem; }
.brand-alpha__letter--all,
.paint-alpha__letter--all { min-width: 40px; }
}
.home-hero {
background: var(--brand-darker);
color: #fff;
margin-top: calc(-1 * var(--main-pad-y));
margin-bottom: 22px;
padding: 44px 0 40px;
}
.flash + .home-hero { margin-top: 0; }
.home-hero__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 48px;
}
.home-hero__copy {
flex: 1;
max-width: 640px;
text-align: left;
}
.home-hero__title {
margin: 0 0 8px;
font-family: "Barlow Condensed", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 2.6rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.01em;
line-height: 1.05;
color: #fff;
}
.home-hero__subtitle {
margin: 0 0 22px;
color: #c8d4e6;
font-size: 1.02rem;
}
.home-hero__search {
display: flex;
gap: 8px;
background: var(--card);
border: 1px solid var(--line-strong);
border-radius: 8px;
padding: 6px;
box-shadow: 0 1px 2px rgba(0,0,0,0.04);
position: relative;
}
.home-hero__search:focus-within {
border-color: var(--brand);
box-shadow: 0 0 0 3px rgba(21,74,141,0.15);
}
.home-hero__search input[type="text"] {
flex: 1;
border: 0;
outline: none;
background: transparent;
font-size: 1rem;
padding: 10px 12px;
color: var(--ink);
}
.home-hero__search button {
display: inline-flex;
align-items: center;
gap: 6px;
background: var(--brand);
color: #fff;
border: 0;
border-radius: 6px;
padding: 0 16px;
font-size: 0.95rem;
font-weight: 600;
cursor: pointer;
transition: background 0.12s;
}
.home-hero__search button:hover { background: var(--brand-dark); }
.home-hero__ctas {
margin-top: 18px;
display: flex;
align-items: center;
gap: 20px;
font-size: 0.92rem;
}
.home-hero__btn {
display: inline-flex;
align-items: center;
gap: 8px;
background: #ff8100;
color: #1a1a1a !important;
font-weight: 700;
font-size: 0.95rem;
padding: 10px 20px;
border-radius: 4px;
transition: background 0.12s;
}
.home-hero__btn:hover {
background: #ffa040;
text-decoration: none;
}
.home-hero__cta {
color: #ff8100;
font-weight: 600;
}
.home-hero__cta:hover { text-decoration: underline; }
.home-hero__gallery {
display: flex;
align-items: center;
gap: 18px;
}
.home-hero__tile {
display: flex;
align-items: center;
justify-content: center;
width: 150px;
height: 150px;
padding: 14px;
background: #fff;
border-radius: 8px;
transition: transform 0.12s, box-shadow 0.12s;
}
.home-hero__tile:hover {
transform: translateY(-2px);
box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}
.home-hero__tile img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
@media (max-width: 1160px) {
.home-hero__tile { width: 120px; height: 120px; }
.home-hero__gallery :nth-child(3) { display: none; }
}
@media (max-width: 940px) {
.home-hero__gallery { display: none; }
.home-hero__copy { max-width: none; }
}
.usp-strip {
background: var(--bg);
padding: 18px 0;
margin-bottom: 24px;
}
.usp-strip__inner {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
}
.usp-strip__tile {
background: var(--card);
border: 1px solid var(--line);
border-radius: 8px;
padding: 16px 16px 14px;
text-align: left;
}
.usp-strip__icon {
width: 36px;
height: 36px;
border-radius: 8px;
background: #eef3fb;
color: var(--brand);
display: inline-flex;
align-items: center;
justify-content: center;
margin-bottom: 10px;
}
.usp-strip__title {
font-weight: 600;
color: var(--ink);
margin-bottom: 4px;
}
.usp-strip__copy {
font-size: 0.88rem;
line-height: 1.4;
color: var(--ink-muted);
}
.greeting-bar {
background: var(--card);
color: var(--ink);
border-bottom: 1px solid var(--line);
margin-bottom: 24px;
margin-top: -20px;
box-shadow: 0 4px 16px 0 hsla(230,26%,18%,.12);
}
.greeting-bar__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding-top: 16px;
padding-bottom: 16px;
flex-wrap: wrap;
}
.greeting-bar__hello {
font-size: 1.3rem;
font-weight: 600;
}
.greeting-bar__links {
display: flex;
align-items: center;
gap: 6px 22px;
flex-wrap: wrap;
}
.greeting-bar__link {
display: inline-flex;
align-items: center;
gap: 6px;
color: #046ec5;
font-size: 0.92rem;
font-weight: 600;
text-decoration: none;
}
.greeting-bar__link:hover { text-decoration: underline; }
.greeting-bar__link svg { flex-shrink: 0; }
.greeting-bar__link--primary {
background: var(--brand);
color: #fff;
padding: 6px 12px;
border-radius: 4px;
text-decoration: none;
}
.greeting-bar__link--primary:hover {
background: var(--brand-darker);
color: #fff;
text-decoration: none;
}
.section-heading {
font-size: 1.25rem;
margin: 4px 0 12px;
color: var(--ink);
}
.home-about {
background: var(--bg);
padding: 32px 0 36px;
margin-top: 24px;
margin-bottom: 24px;
overflow: hidden;
}
.home-about__title {
margin: 0 0 4px;
font-size: 1.4rem;
color: var(--ink);
}
.home-about__lead {
margin: 0 0 12px;
font-weight: 600;
color: var(--ink);
}
.home-about__copy {
margin: 0 0 18px;
max-width: 820px;
color: var(--ink-muted);
line-height: 1.55;
}
.home-about__ctas {
display: flex;
align-items: center;
gap: 20px;
}
.home-about__btn {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--brand);
color: #fff !important;
font-weight: 700;
font-size: 0.95rem;
padding: 10px 20px;
border-radius: 4px;
transition: background 0.12s;
}
.home-about__btn:hover {
background: var(--brand-darker);
text-decoration: none;
}
.home-about__link {
color: #046ec5;
font-weight: 600;
}
.home-about__readmore {
color: #046ec5;
font-weight: 700;
}
.home-about__readmore:hover { text-decoration: underline; }
.home-about__row {
display: flex;
align-items: center;
gap: 36px;
}
.home-about__text { flex: 1; min-width: 0; }
.home-about__img {
width: 280px;
max-width: 38%;
height: auto;
flex-shrink: 0;
align-self: flex-end;
margin-bottom: -100px;
}
@media (max-width: 980px) {
.usp-strip__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
.home-hero { padding: 26px 0 24px; }
.home-hero__title { font-size: 1.9rem; }
.home-hero__subtitle { font-size: 0.95rem; margin-bottom: 16px; }
.home-hero__search { flex-direction: column; padding: 8px; }
.home-hero__search button { padding: 12px; justify-content: center; }
.usp-strip__inner { grid-template-columns: 1fr; }
.home-about__row { flex-direction: column; align-items: flex-start; }
.home-about__img { max-width: 70%; margin: 0 auto -100px; align-self: center; }
.greeting-bar__inner { padding-top: 12px; padding-bottom: 12px; }
.greeting-bar__hello { font-size: 1.1rem; }
.greeting-bar__links { gap: 6px 14px; }
}
.brand-carousel {
background: var(--card);
border: 1px solid var(--line);
border-radius: 8px;
padding: 16px 0 18px;
margin: 0 0 24px;
overflow: hidden;
}
.brand-carousel__head {
display: flex;
align-items: baseline;
justify-content: space-between;
padding: 0 20px 12px;
}
.brand-carousel__head h2 {
margin: 0;
font-size: 1.05rem;
font-weight: 700;
}
.brand-carousel__all {
color: var(--brand) !important;
font-size: 0.85rem;
font-weight: 600;
}
.brand-carousel__all:hover { text-decoration: underline; }
.brand-carousel__grid {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
gap: 12px 24px;
padding: 0 20px;
}
.brand-carousel__item {
flex: 0 0 auto;
display: flex;
align-items: center;
justify-content: center;
height: 56px;
width: 130px;
padding: 6px 8px;
border-radius: 6px;
transition: background 0.12s;
}
.brand-carousel__item:hover {
background: var(--bg);
text-decoration: none;
}
.brand-carousel__item img {
max-height: 100%;
max-width: 100%;
object-fit: contain;
transition: filter 0.12s, opacity 0.12s;
}
.brand-carousel__item:hover img {
filter: none;
opacity: 1;
}
@media (max-width: 720px) {
.brand-carousel__head { padding: 0 14px 10px; }
.brand-carousel__item { width: 100px; height: 48px; }
.brand-carousel__grid { gap: 10px 16px; padding: 0 14px; }
}
.filter-form { display: contents; }
.filter-panel .filter-list {
max-height: 220px;
overflow-y: auto;
}
.filter-panel .filter-list li { padding: 3px 0; }
.filter-panel .filter-list label {
display: flex;
align-items: center;
gap: 8px;
cursor: pointer;
font-size: 0.9rem;
line-height: 1.3;
}
.filter-panel .filter-list label:hover { color: var(--brand); }
.filter-panel .filter-list input[type="checkbox"] {
margin: 0;
flex: 0 0 auto;
}
.filter-panel .filter-list label > span:first-of-type {
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.brand-logo-link { display: inline-flex; }
.brand-logo-link:hover img { opacity: 0.8; }
.price-filter {
display: flex;
align-items: center;
gap: 6px;
}
.price-filter input {
width: 100%;
min-width: 0;
border: 1px solid var(--line-strong);
border-radius: 4px;
padding: 6px 8px;
font: inherit;
font-size: 0.9rem;
}
.price-filter input:focus {
outline: none;
border-color: var(--brand);
}
.price-filter__dash { color: var(--ink-muted); }
.price-filter__note {
margin: 6px 0 0;
font-size: 0.75rem;
color: var(--ink-muted);
}
.filter-chips {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin: 0 0 14px;
}
.filter-chip {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 4px 8px 4px 10px;
background: #eef3fb;
color: var(--ink) !important;
border: 1px solid #d4dff0;
border-radius: 999px;
font-size: 0.82rem;
line-height: 1.3;
text-decoration: none;
}
.filter-chip:hover { background: #dee8f7; text-decoration: none; }
.filter-chip__key { color: var(--ink-muted); font-weight: 500; }
.filter-chip__val { font-weight: 600; }
.filter-chip__x {
font-size: 1.1rem;
line-height: 1;
color: var(--ink-muted);
margin-left: 2px;
}
.filter-chip--clear {
background: transparent;
border-color: transparent;
color: var(--brand) !important;
text-decoration: underline;
}
.filter-chip--clear:hover { background: transparent; }
.btn {
display: inline-block;
background: var(--brand);
color: #fff !important;
border: 0;
padding: 10px 18px;
border-radius: 4px;
font: inherit;
font-weight: 600;
cursor: pointer;
text-decoration: none !important;
}
.btn:hover { background: var(--brand-dark); }
.btn.secondary {
background: #fff;
color: var(--ink) !important;
border: 1px solid var(--line-strong);
}
.btn.secondary:hover { background: var(--bg); }
.btn.link {
background: transparent;
color: var(--brand) !important;
padding: 0;
font-weight: 600;
border-radius: 0;
}
.btn.link:hover { background: transparent; text-decoration: underline !important; }
.btn.danger { background: var(--accent-red); }
.btn.danger:hover { background: #8a0019; }
.btn--sm { padding: 4px 10px; font-size: 0.8rem; }
.results-meta {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 12px;
color: var(--ink-muted);
font-size: 0.9rem;
}
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 12px;
}
@media (max-width: 720px) {
.product-grid {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
.product-grid > .product-card { padding: 12px; }
}
.product-card {
background: var(--card);
border: 1px solid #e1e1e1;
border-radius: 0;
padding: 20px;
display: flex;
flex-direction: column;
gap: 8px;
transition: border-color 0.15s, box-shadow 0.15s;
position: relative;
}
.product-card:hover {
border-color: var(--line-strong);
box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.product-card .thumb {
background: #fff;
border-radius: 4px;
aspect-ratio: 1 / 1;
display: flex;
align-items: center;
justify-content: center;
color: var(--line-strong);
font-size: 2rem;
margin-bottom: 4px;
overflow: hidden;
padding: 10px;
}
.product-card .thumb img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.product-card__brand {
height: 22px;
display: flex;
align-items: center;
}
.product-card__brand img {
max-height: 100%;
max-width: 110px;
object-fit: contain;
object-position: left center;
}
.product-card__brand--text {
font-size: 0.78rem;
font-weight: 600;
color: var(--ink-muted);
}
.product-card .sku {
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
font-size: 0.8rem;
color: var(--ink-muted);
}
.product-card .desc {
font-weight: 600;
flex: 1;
line-height: 1.3;
color: var(--ink);
}
.product-card .price {
font-weight: 700;
font-size: 1.05rem;
}
.product-card .price .muted { font-weight: 400; }
.category-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 14px;
}
.category-card {
display: flex;
flex-direction: column;
background: var(--card);
border: 1px solid var(--line);
border-radius: 4px;
padding: 14px;
text-align: left;
color: var(--ink);
transition: border-color 0.15s, box-shadow 0.15s;
}
.category-card:hover {
border-color: var(--line-strong);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
text-decoration: none;
}
.category-card__thumb {
background: #fff;
border-radius: 4px;
aspect-ratio: 1 / 1;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 14px;
margin-bottom: 10px;
color: var(--line-strong);
}
.category-card__thumb img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.category-card__brand {
font-size: 0.78rem;
color: var(--ink-muted);
margin-bottom: 2px;
display: none;
}
.category-card__name {
font-size: 14px;
font-weight: 600;
line-height: 1.3;
flex: 1;
}
.category-card__more {
margin-top: 10px;
font-size: 0.82rem;
color: var(--brand);
font-weight: 600;
}
.category-card__count {
color: var(--ink-muted);
font-weight: 400;
margin-left: 2px;
}
.category-card:hover .category-card__more { text-decoration: underline; }
.home-category-columns {
columns: 4;
column-gap: 40px;
}
.home-category-group {
break-inside: avoid;
margin-bottom: 26px;
}
.home-category-group__name {
margin: 0 0 10px;
font-size: 1rem;
font-weight: 700;
line-height: 1.25;
}
.home-category-group__name a {
color: var(--ink);
}
.home-category-group__name a:hover {
color: var(--brand);
text-decoration: none;
}
.home-category-group__subs {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 8px;
}
.home-category-group__subs li {
font-size: 0.92rem;
line-height: 1.35;
}
.home-category-group__subs a {
color: var(--ink);
}
.home-category-group__subs a:hover {
color: var(--brand);
text-decoration: none;
}
@media (max-width: 1100px) {
.home-category-columns { columns: 3; }
}
@media (max-width: 860px) {
.home-category-columns { columns: 2; column-gap: 28px; }
}
@media (max-width: 560px) {
.home-category-columns { columns: 1; }
}
.pager {
display: flex;
gap: 6px;
justify-content: center;
margin: 28px 0;
align-items: center;
}
.pager a, .pager span {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 36px;
height: 36px;
padding: 0 10px;
border-radius: 4px;
font-size: 0.9rem;
border: 1px solid var(--line);
background: var(--card);
color: var(--ink);
}
.pager a:hover { border-color: var(--ink); text-decoration: none; }
.pager .current { background: var(--ink); color: #fff; border-color: var(--ink); }
.product-show {
background: var(--card);
border-radius: 4px;
padding: 20px 24px;
font-size: 0.875rem;
}
.product-show .layout {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
gap: 28px;
}
@media (max-width: 800px) {
.product-show .layout { grid-template-columns: 1fr; }
}
.product-show .thumb-lg {
background: var(--bg);
border-radius: 4px;
aspect-ratio: 1 / 1;
display: flex;
align-items: center;
justify-content: center;
color: var(--line-strong);
font-size: 5rem;
}
.product-show .product-meta { min-width: 0; }
.product-show h1 {
margin: 2px 0 8px;
font-size: 1.25rem;
font-weight: 600;
line-height: 1.3;
}
.product-show .sku {
color: var(--ink-muted);
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
font-size: 0.78rem;
}
.product-show .sku__mpn { margin-left: 4px; }
.product-show .price-big {
font-size: 1.4rem;
font-weight: 700;
margin: 10px 0 2px;
}
.price-was {
color: #8a8a8a;
font-weight: 400;
}
.product-show .price-was {
margin-top: 10px;
font-size: 0.95rem;
}
.product-show .price-was ~ .price-big { margin-top: 0; }
s.price-was { margin-right: 4px; }
.clearance-flag {
display: inline-block;
margin-left: 6px;
padding: 1px 7px;
border-radius: 3px;
background: #d21c1c;
color: #fff;
font-size: 0.68rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.clearance-flag--pdp {
margin: 0 0 6px;
padding: 2px 10px;
font-size: 14px;
}
.product-show .price-big__vat {
font-size: 0.7rem;
font-weight: 600;
color: var(--ink-muted);
text-transform: uppercase;
letter-spacing: 0.05em;
margin-left: 6px;
}
.product-show .price-list {
color: var(--ink-muted);
font-size: 0.8rem;
}
.product-show .product-image {
background: #fff;
border-radius: 4px;
aspect-ratio: 1 / 1;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 32px;
}
@media (min-width: 801px) {
.product-show .product-image { max-width: 430px; }
}
.product-show .product-image img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.product-show .product-thumbs {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
gap: 6px;
margin-top: 10px;
}
.product-show .product-thumb {
background: #fff;
border: 1px solid var(--line);
border-radius: 4px;
aspect-ratio: 1 / 1;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 4px;
cursor: pointer;
}
.product-show .product-thumb:hover { border-color: var(--ink-muted); }
.product-show .product-thumb.is-active {
border-color: var(--brand);
box-shadow: 0 0 0 1px var(--brand) inset;
}
.product-show .product-thumb img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.product-show .brand-badge {
display: inline-block;
padding: 3px 9px;
margin: 2px 0 6px;
background: var(--bg);
border: 1px solid var(--line);
border-radius: 999px;
font-size: 0.78rem;
color: var(--ink-muted);
}
.product-show .brand-badge strong { color: var(--ink); }
.free-ship-badge {
display: inline-flex;
align-items: center;
gap: 5px;
margin-top: 8px;
padding: 3px 9px;
font-size: 0.72rem;
font-weight: 600;
line-height: 1.2;
color: #ffffff;
background: #1a73e8;
width: fit-content;
}
.free-ship-badge__icon { flex: none; }
.recently-viewed__thumb {
position: relative;
}
.product-card .thumb .free-ship-badge,
.recently-viewed__thumb .free-ship-badge {
position: absolute;
top: 0px;
left: 0px;
margin-top: -20px;
z-index: 1;
margin-left: -20px;
}
.product-card .thumb .free-ship-badge {
margin-top: 0;
margin-left: 0;
}
.clearance-badge {
display: inline-flex;
align-items: center;
gap: 5px;
margin-top: 8px;
padding: 3px 9px;
font-size: 0.72rem;
font-weight: 600;
line-height: 1.2;
color: #ffffff;
background: #d21c1c;
width: fit-content;
}
.clearance-badge__icon { flex: none; }
.product-card .thumb .clearance-badge {
position: absolute;
top: 0;
right: 0;
margin-top: 0;
z-index: 1;
}
.product-show .product-meta__head {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 16px;
}
@media (max-width: 720px) {
.product-show .product-meta__head {
flex-direction: column;
gap: 0px;
}
.product-show .product-tagline {
margin-bottom: 12px !important;
}
}
.product-show .product-meta__title { min-width: 0; flex: 1; }
.product-show .brand-logo {
max-height: 32px;
max-width: 120px;
width: auto;
height: auto;
object-fit: contain;
}
.product-show .brand-logo--lg {
max-height: 80px;
max-width: 180px;
flex-shrink: 0;
}
.product-show .product-tagline {
margin: 6px 0 0;
color: var(--ink-muted);
font-size: 0.9rem;
line-height: 1.45;
}
.product-show .product-about {
margin-top: 24px;
padding-top: 18px;
border-top: 1px solid var(--line);
}
.product-show .product-about h2 {
font-size: 0.95rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
color: var(--ink);
margin: 0 0 10px;
}
.product-show .product-about p {
margin: 0 0 10px;
line-height: 1.55;
color: var(--ink);
font-size: 0.88rem;
}
.product-show .product-about p:last-child { margin-bottom: 0; }
.product-show .product-attrs,
.product-show .product-specs {
margin-top: 24px;
padding-top: 18px;
border-top: 1px solid var(--line);
}
.product-show .product-attrs h2,
.product-show .product-specs h2 {
font-size: 0.95rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
color: var(--ink);
margin: 0 0 10px;
}
.product-show .product-attrs table,
.product-show .product-specs table {
width: 100%;
border-collapse: collapse;
font-size: 0.82rem;
}
.product-show .product-attrs th,
.product-show .product-attrs td,
.product-show .product-specs th,
.product-show .product-specs td {
padding: 6px 12px;
text-align: left;
vertical-align: top;
line-height: 1.4;
border-bottom: 1px solid var(--line);
}
.product-show .product-attrs th,
.product-show .product-specs th {
width: 38%;
max-width: 240px;
font-weight: 500;
color: var(--ink-muted);
background: var(--bg);
}
.product-show .product-attrs tr:last-child th,
.product-show .product-attrs tr:last-child td,
.product-show .product-specs tr:last-child th,
.product-show .product-specs tr:last-child td {
border-bottom: 0;
}
.product-show .product-fitment {
--fitment-bg: #eef0f3;
--fitment-blue: #046ec5;
margin: 28px calc(50% - 50vw) 4px;
padding: 22px calc(50vw - 50%) 24px;
background: var(--fitment-bg);
}
.product-show .product-fitment > * { max-width: 100%; }
.product-show .product-fitment h2 {
font-size: 0.95rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
color: var(--ink);
margin: 0 0 4px;
}
.fitment-lead {
margin: 0 0 10px;
font-size: 0.85rem;
line-height: 1.5;
color: var(--ink-muted);
}
.fitment-lead strong { color: var(--ink); font-weight: 600; }
.fitment-filter {
position: relative;
display: block;
margin-bottom: 6px;
color: var(--ink-muted);
}
.fitment-filter__input {
width: 100%;
padding: 8px 110px 8px 12px;
border: 1px solid var(--line-strong);
border-radius: 4px;
background: var(--card);
color: var(--ink);
font: inherit;
font-size: 0.84rem;
}
.fitment-filter__input::placeholder { color: #9a9a9a; }
.fitment-filter__input:focus {
outline: none;
border-color: var(--fitment-blue);
box-shadow: 0 0 0 3px rgba(4, 110, 197, 0.15);
}
.fitment-filter svg {
position: absolute;
right: 11px;
top: 50%;
width: 16px;
height: 16px;
transform: translateY(-50%);
pointer-events: none;
}
.fitment-filter__hits {
position: absolute;
right: 34px;
top: 50%;
transform: translateY(-50%);
font-size: 0.72rem;
font-weight: 600;
color: var(--fitment-blue);
pointer-events: none;
}
.fitment-make { border-bottom: 1px solid var(--line-strong); }
.fitment-make__summary {
display: flex;
align-items: center;
gap: 6px;
padding: 10px 2px;
cursor: pointer;
list-style: none;
user-select: none;
font-size: 0.9rem;
font-weight: 700;
color: var(--fitment-blue);
}
.fitment-make__summary::-webkit-details-marker { display: none; }
.fitment-make__summary:hover .fitment-make__name { text-decoration: underline; }
.fitment-make__count { font-weight: 600; }
.fitment-make__chevron {
margin-left: auto;
margin-right: 6px;
width: 7px;
height: 7px;
border-right: 2px solid var(--fitment-blue);
border-bottom: 2px solid var(--fitment-blue);
transform: rotate(45deg) translate(-2px, -2px);
transition: transform 0.15s ease;
}
.fitment-make[open] .fitment-make__chevron { transform: rotate(-135deg) translate(-2px, -2px); }
.fitment-make__body { padding: 2px 0 10px; }
.fitment-table {
width: 100%;
border-collapse: collapse;
font-size: 0.8rem;
table-layout: fixed;
}
.fitment-table td,
.fitment-table th {
padding: 5px 8px;
vertical-align: middle;
line-height: 1.35;
border-top: 1px solid var(--line);
text-align: left;
}
.fitment-group__label th {
padding: 8px 8px 3px;
border-top: 0;
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--ink-muted);
}
.fitment-group:first-child .fitment-row:first-child td,
.fitment-group:first-child .fitment-group__label + .fitment-row td { border-top: 0; }
.fitment-row__model  { width: 28%; }
.fitment-row__type   { width: 14%; }
.fitment-row__status { width: 20%; }
.fitment-row__see    { width: 110px; text-align: right; }
.fitment-row__model { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fitment-row__tick {
width: 13px;
height: 13px;
margin-right: 8px;
vertical-align: -2px;
color: var(--accent-green);
}
.fitment-row--aftermarket .fitment-row__tick { color: var(--fitment-blue); }
.fitment-row--supplier    .fitment-row__tick { color: var(--fitment-blue); }
.fitment-row--unverified  .fitment-row__tick { color: #9a9a9a; }
.fitment-status {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 0.74rem;
font-weight: 500;
color: var(--ink-muted);
white-space: nowrap;
}
.fitment-status::before {
content: "";
width: 7px;
height: 7px;
border-radius: 50%;
background: currentColor;
flex: none;
}
.fitment-status--manufacturer::before { background: var(--accent-green); }
.fitment-status--aftermarket::before  { background: var(--fitment-blue); }
.fitment-status--supplier::before     { background: var(--fitment-blue); }
.fitment-status--unverified::before   { background: #b5b5b5; }
.fitment-row__link {
color: var(--ink) !important;
font-weight: 500;
text-decoration: none;
}
.fitment-row__link:hover { text-decoration: underline; }
.fitment-pill {
display: inline-block;
padding: 2px 8px;
border-radius: 999px;
background: #e6f1fb;
color: var(--fitment-blue);
font-size: 0.72rem;
font-weight: 600;
line-height: 1.3;
white-space: nowrap;
}
.fitment-row__note {
color: var(--ink-muted);
font-size: 0.76rem;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.fitment-row__see-link {
color: var(--fitment-blue) !important;
font-weight: 500;
text-decoration: underline;
text-underline-offset: 2px;
white-space: nowrap;
}
.fitment-row:hover td { background: #fff; }
.fitment-more {
display: inline-flex;
align-items: center;
gap: 6px;
margin: 8px 8px 0;
padding: 0;
border: 0;
background: none;
color: var(--fitment-blue);
font: inherit;
font-size: 0.8rem;
font-weight: 600;
cursor: pointer;
}
.fitment-more:hover { text-decoration: underline; }
.fitment-more[hidden] { display: none; }
.fitment-more::after {
content: "";
width: 6px;
height: 6px;
border-right: 2px solid currentColor;
border-bottom: 2px solid currentColor;
transform: rotate(45deg) translate(-1px, -1px);
transition: transform 0.15s ease;
}
.fitment-more[aria-expanded="true"]::after { transform: rotate(-135deg) translate(-1px, -1px); }
.fitment-empty {
margin: 10px 0 0;
padding: 12px 14px;
border: 1px dashed var(--line-strong);
border-radius: 4px;
font-size: 0.82rem;
color: var(--ink-muted);
}
.fitment-empty q { color: var(--ink); font-weight: 600; }
.fitment-note {
display: flex;
gap: 8px;
align-items: flex-start;
margin: 12px 0 0;
font-size: 0.74rem;
line-height: 1.45;
color: var(--ink-muted);
}
.fitment-note svg { flex: none; width: 14px; height: 14px; margin-top: 2px; }
.fitment-report {
display: inline-block;
margin-top: 26px;
padding: 8px 16px;
background: #cccccc;
color: var(--ink) !important;
font-size: 0.8rem;
font-weight: 600;
text-decoration: none !important;
}
.fitment-report:hover { background: #bfbfbf; }
@media (max-width: 640px) {
.fitment-table { table-layout: auto; font-size: 0.78rem; }
.fitment-table td { padding: 5px 4px; }
.fitment-row__model { width: auto; }
.fitment-row__type  { width: 1%; }
.fitment-row__type   { display: none; }
.fitment-row__status { width: 1%; }
.fitment-status { font-size: 0.7rem; }
.fitment-row__note  { white-space: normal; font-size: 0.7rem; }
.fitment-row__see   { display: none; }
.fitment-filter__input { padding-right: 96px; }
.product-show .product-fitment { margin-top: 20px; padding-top: 16px; padding-bottom: 18px; }
}
.product-show .product-accessories {
margin-top: 24px;
padding-top: 18px;
border-top: 1px solid var(--line);
}
.product-show .product-accessories h2 {
font-size: 0.95rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
color: var(--ink);
margin: 0 0 4px;
}
.product-accessories__lead {
margin: 0 0 14px;
font-size: 0.85rem;
}
.accessory-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 12px;
}
.accessory-card {
display: flex;
flex-direction: column;
background: var(--card);
border: 1px solid var(--line);
border-radius: 6px;
padding: 12px;
color: var(--ink) !important;
text-decoration: none;
transition: border-color 0.12s, transform 0.12s, box-shadow 0.12s;
}
.accessory-card:hover {
text-decoration: none;
border-color: var(--brand);
box-shadow: 0 4px 12px rgba(21, 74, 141, 0.08);
transform: translateY(-2px);
}
.accessory-card--unlinked {
cursor: default;
opacity: 0.7;
}
.accessory-card--unlinked:hover {
border-color: var(--line);
box-shadow: none;
transform: none;
}
.accessory-card__thumb {
height: 90px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 8px;
background: #ffffff;
border-radius: 4px;
}
.accessory-card__thumb img {
max-height: 100%;
max-width: 100%;
object-fit: contain;
}
.accessory-card__thumb svg {
color: var(--ink-muted);
opacity: 0.5;
}
.accessory-card__mpn {
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
font-size: 0.78rem;
color: var(--ink-muted);
margin-bottom: 2px;
}
.accessory-card__name {
font-size: 0.88rem;
font-weight: 600;
line-height: 1.3;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
margin-bottom: 6px;
}
.accessory-card__price {
margin-top: auto;
font-size: 0.85rem;
font-weight: 600;
}
.accessory-card__price .muted { font-weight: 400; font-size: 0.75rem; }
.product-show .expand-toggle {
margin-top: 8px;
background: none;
border: 0;
padding: 4px 0;
color: var(--brand);
font: inherit;
font-size: 0.82rem;
font-weight: 600;
cursor: pointer;
}
.product-show .expand-toggle:hover { text-decoration: underline; }
@media (max-width: 600px) {
.product-show .product-attrs th,
.product-show .product-specs th { width: 45%; }
}
@media (max-width: 720px) {
.breadcrumb { font-size: 0.8rem; --crumb-floor: 3em; }
.breadcrumb__sep { margin: 0 4px; }
.product-show { padding: 14px; font-size: 0.85rem; }
.product-show .layout { gap: 18px; }
.product-show h1 { font-size: 1.1rem; }
.product-show .price-big { font-size: 1.25rem; }
.product-show .product-image { padding: 18px; }
.product-show .product-thumbs {
grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
gap: 5px;
}
.product-show .brand-logo--lg { max-height: 56px; max-width: 140px; }
.product-show .product-attrs,
.product-show .product-specs { margin-top: 18px; padding-top: 14px; }
.product-show .product-attrs h2,
.product-show .product-specs h2 { font-size: 0.85rem; margin-bottom: 8px; }
.product-show .product-attrs th,
.product-show .product-attrs td,
.product-show .product-specs th,
.product-show .product-specs td { padding: 5px 8px; font-size: 0.78rem; }
.product-show .add-form { padding: 12px; gap: 8px; }
.live-block { margin: 8px 0; font-size: 0.85rem; }
.back-link { font-size: 0.85rem; margin-bottom: 8px; }
}
.product-show--loading {
padding: 60px 24px;
}
.scrape-loading {
display: flex;
gap: 16px;
align-items: center;
justify-content: center;
text-align: left;
}
.scrape-loading__spinner {
color: var(--brand);
display: flex;
align-items: center;
justify-content: center;
}
.scrape-loading__text {
display: flex;
flex-direction: column;
gap: 2px;
}
.scrape-loading__text strong { font-size: 1rem; }
.scrape-loading__text .sku {
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
font-size: 0.78rem;
color: var(--ink-muted);
margin-top: 6px;
}
.live-block {
margin: 12px 0;
}
.live-block.loading { border-color: var(--line-strong); color: var(--ink-muted); background: var(--bg); }
.live-block strong { color: var(--ink); }
.view-stock-btn {
background: none;
color: #046ec5 !important;
padding: 0px 0px;
text-decoration: underline !important;
font-size: 14px;
font-weight: normal;
border: 0;
display: inline-flex;
align-items: center;
gap: 6px;
cursor: pointer;
}
.view-stock-btn__spinner {
display: none;
width: 13px;
height: 13px;
border: 2px solid rgba(4, 110, 197, 0.25);
border-top-color: #046ec5;
border-radius: 50%;
animation: view-stock-spin 0.7s linear infinite;
}
turbo-frame[busy] .view-stock-btn__spinner,
turbo-frame[aria-busy="true"] .view-stock-btn__spinner {
display: inline-block;
}
@keyframes view-stock-spin {
to { transform: rotate(360deg); }
}
.add-form {
display: flex;
flex-direction: column;
gap: 10px;
align-items: stretch;
margin-top: 16px;
padding: 16px;
background: var(--bg);
border-radius: 4px;
}
.add-form label { font-weight: 600; }
.add-form__submit {
width: 100%;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 16px;
font-size: 1rem;
border: 0;
border-radius: 4px;
cursor: pointer;
}
.add-form input[type="number"] {
padding: 8px 10px;
border: 1px solid var(--line-strong);
border-radius: 4px;
font: inherit;
}
.backorder-dialog {
border: 0;
border-radius: 6px;
padding: 28px;
width: min(560px, calc(100vw - 32px));
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
color: var(--ink);
text-align: left;
}
.backorder-dialog::backdrop { background: rgba(0, 0, 0, 0.55); }
.backorder-dialog__head {
display: flex;
align-items: flex-start;
gap: 14px;
padding-bottom: 16px;
border-bottom: 1px solid var(--line);
}
.backorder-dialog__title {
margin: 0;
font-size: 1.35rem;
line-height: 1.2;
}
.backorder-dialog__sub {
margin: 6px 0 0;
color: var(--ink-muted);
}
.backorder-dialog__body { margin: 16px 0; }
.backorder-dialog__ack {
display: flex;
align-items: flex-start;
gap: 10px;
padding: 14px;
border: 1px solid #ff8100;
border-radius: 4px;
cursor: pointer;
font-weight: 600;
}
.backorder-dialog__ack input {
margin-top: 3px;
width: 16px;
height: 16px;
flex-shrink: 0;
accent-color: var(--brand);
}
.backorder-dialog__actions {
display: flex;
justify-content: flex-end;
gap: 10px;
margin-top: 20px;
}
.backorder-dialog__cancel {
background: #3a3a3a;
color: #fff;
}
.backorder-dialog__cancel:hover { background: #262626; }
.backorder-dialog .backorder-dialog__confirm:disabled {
background: var(--line);
color: #9a9a9a !important;
cursor: not-allowed;
}
.qty-stepper--split {
display: flex;
gap: 8px;
width: 100%;
border: 0;
border-radius: 0;
overflow: visible;
background: transparent;
}
.qty-stepper--split .qty-stepper__btn,
.qty-stepper--split .qty-stepper__input {
flex: 1;
width: auto;
height: 44px;
border: 1px solid var(--line-strong);
border-radius: 4px;
background: #fff;
}
.qty-stepper--split .qty-stepper__btn { font-size: 1.2rem; }
.qty-stepper--split .qty-stepper__input {
color: var(--ink);
font-weight: 700;
font-size: 1.05rem;
text-align: center;
}
.qty-stepper--split .add-form__check-stock {
flex: 0 0 44px;
height: 44px;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0;
border: 2px solid #008f35;
border-radius: 4px;
background: #fff;
cursor: pointer;
}
.qty-stepper--split .add-form__check-stock:hover { background: #eef7f1; }
.qty-stepper--split .add-form__check-stock[hidden] { display: none; }
turbo-frame[busy] .add-form__check-stock svg,
turbo-frame[aria-busy="true"] .add-form__check-stock svg { display: none; }
.add-form__check-stock .view-stock-btn__spinner {
border-color: rgba(0, 143, 53, 0.25);
border-top-color: #008f35;
}
.basket-page {
background: #eaeded;
padding: 20px 0 28px;
margin-top: calc(-1 * var(--main-pad-y));
margin-bottom: 0;
}
.basket-page + .clearance-strip { margin: 0 auto calc(-1 * var(--main-pad-y)); border-top: 0; padding: 40px 0 0; }
.basket-page + .clearance-strip .recently-viewed__track { padding-bottom: 0; }
.basket-page + .clearance-strip .recently-viewed__card { border-color: transparent; }
.basket-page + .clearance-strip .recently-viewed__card:hover { border-color: transparent; }
.basket-layout {
display: grid;
grid-template-columns: minmax(0, 1fr) 300px;
gap: 20px;
align-items: start;
}
.basket-main { min-width: 0; }
.basket-main .flash { margin-bottom: 12px; }
.basket-aside { position: sticky; top: 14px; }
.basket-card {
background: #fff;
border-radius: 4px;
padding: 20px 24px;
}
.basket__head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.basket__head h1 { margin: 0; font-size: 1.65rem; font-weight: 500; }
.basket__pricehead {
text-align: right;
font-size: 0.8rem;
color: var(--ink-muted);
padding: 8px 0 6px;
border-bottom: 1px solid var(--line);
}
.basket-more { position: relative; }
.basket-more__btn {
list-style: none;
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border-radius: 50%;
color: var(--ink-muted);
cursor: pointer;
}
.basket-more__btn::-webkit-details-marker { display: none; }
.basket-more__btn:hover, .basket-more[open] .basket-more__btn { background: var(--bg); color: var(--ink); }
.basket-more__panel {
position: absolute;
right: 0;
top: 42px;
z-index: 5;
width: 300px;
background: #fff;
border-radius: 4px;
box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
padding: 14px 16px 16px;
display: flex;
flex-direction: column;
gap: 4px;
}
.basket-more__panel label { font-size: 0.8rem; font-weight: 600; margin-top: 6px; }
.basket-more__panel input {
padding: 7px 9px;
border: 1px solid var(--line-strong);
border-radius: 4px;
font: inherit;
font-size: 0.88rem;
}
.basket-more__panel .btn { align-self: flex-end; margin-top: 10px; }
.basket-item {
display: grid;
grid-template-columns: 150px minmax(0, 1fr) auto;
gap: 18px;
padding: 18px 0;
border-bottom: 1px solid var(--line);
}
.basket-item--oos { background: #fff6f6; margin: 0 -24px; padding-left: 24px; padding-right: 24px; }
.basket-item__thumb {
display: flex;
align-items: center;
justify-content: center;
width: 150px;
height: 150px;
color: var(--line-strong);
}
.basket-item__thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.basket-item__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.basket-item__name { font-size: 1.05rem; font-weight: 500; line-height: 1.3; }
.basket-item__name:hover { color: var(--brand); }
.basket-item__meta { font-size: 0.8rem; color: var(--ink-muted); }
.basket-item__avail {
display: flex;
align-items: center;
gap: 8px;
margin-top: 8px;
}
.basket-item__icon { flex: none; }
.basket-item__stock { font-size: 0.9rem; font-weight: 600; color: var(--ink); line-height: 1.35; }
.basket-item__eta { font-size: 0.85rem; font-weight: 700; line-height: 1.35; margin-top: 2px; }
.basket-item__avail--ok   .basket-item__eta { color: #008f35; }
.basket-item__avail--warn .basket-item__eta { color: #ff8100; }
.basket-item__avail--err  .basket-item__eta { color: #d32f2f; }
.basket-item__controls {
display: flex;
align-items: center;
gap: 14px;
margin-top: 12px;
flex-wrap: wrap;
}
.basket-item__qty {
border: 1px solid var(--line-strong);
border-radius: 4px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.basket-item__linkform { display: inline; }
.basket-item__link {
background: none;
border: 0;
padding: 0;
font: inherit;
font-size: 0.85rem;
color: var(--brand);
cursor: pointer;
}
.basket-item__link:hover { text-decoration: underline; }
.basket-item__pack { font-size: 0.8rem; color: var(--ink-muted); }
.basket-item__price {
display: flex;
flex-direction: column;
align-items: flex-end;
text-align: right;
min-width: 90px;
}
.basket-item__price strong { font-size: 1.15rem; }
.basket-item__price small { font-size: 0.78rem; color: var(--ink-muted); }
.basket__subtotal {
text-align: right;
padding: 14px 0 0;
font-size: 1.1rem;
}
.basket__subtotal strong { font-weight: 700; }
.basket__amount { white-space: nowrap; }
.basket__vat { font-size: 0.75rem; color: #046ec5; font-weight: 700; }
.basket__empty { text-align: center; padding: 28px 0 10px; }
.basket__empty p { margin: 0 0 14px; color: var(--ink-muted); }
.basket-summary__ship {
margin: 0 0 12px;
font-size: 0.85rem;
display: flex;
gap: 6px;
align-items: flex-start;
}
.basket-summary__ship--ok { color: var(--accent-green); }
.basket-summary__ship svg { flex: none; margin-top: 2px; }
.basket-summary .co-totals { margin-top: 0; }
.basket-summary__btn {
margin-top: 14px;
font-weight: 600;
background: #ff8100;
color: #fff !important;
}
.basket-summary__btn:hover { background: #e57300; }
.basket-summary__btn:disabled { opacity: 0.55; cursor: not-allowed; }
.basket-summary__note { margin: 10px 0 0; font-size: 0.78rem; color: var(--ink-muted); text-align: center; }
@media (max-width: 1024px) {
.basket-layout { grid-template-columns: minmax(0, 1fr); }
.basket-aside { position: static; order: -1; }
}
@media (max-width: 720px) {
.basket-card { padding: 16px; }
.basket-item { grid-template-columns: 96px minmax(0, 1fr); gap: 12px; }
.basket-item__thumb { width: 96px; height: 96px; }
.basket-item__price { grid-column: 2; flex-direction: row; align-items: baseline; gap: 8px; justify-content: flex-start; text-align: left; }
.basket-item--oos { margin: 0 -16px; padding-left: 16px; padding-right: 16px; }
.basket-more__panel { width: min(300px, 86vw); }
}
.card {
background: var(--card);
border: 1px solid var(--line);
border-radius: 6px;
padding: 18px 20px;
}
.card h1, .card h2, .card h3 {
margin: 0 0 10px;
font-weight: 700;
}
.card h1 { font-size: 1.25rem; }
.card h2 { font-size: 1rem; }
.card h3 { font-size: 0.95rem; }
.btn-outline {
display: inline-flex;
align-items: center;
gap: 6px;
background: #fff;
border: 1px solid var(--line-strong);
border-radius: 4px;
padding: 8px 14px;
font: inherit;
font-weight: 600;
color: var(--ink) !important;
cursor: pointer;
text-decoration: none !important;
}
.btn-outline:hover { background: var(--bg); }
.btn-outline:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-outline:disabled:hover { background: #fff; }
.icon-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 34px;
height: 34px;
background: #fff;
border: 1px solid var(--line-strong);
border-radius: 4px;
color: var(--ink-muted);
cursor: pointer;
padding: 0;
}
.icon-btn:hover { background: var(--bg); color: var(--ink); }
.icon-btn--danger:hover { background: var(--accent-red); border-color: var(--accent-red); color: #fff; }
.btn--accent {
background: #ff8100;
color: var(--ink) !important;
}
.btn--accent:hover { background: #e57300; }
.btn--block { display: block; text-align: center; margin-top: 14px; }
.qty-stepper {
display: inline-flex;
align-items: stretch;
border-radius: 4px;
overflow: hidden;
}
.qty-stepper__btn {
background: #fff;
border: 0;
width: 32px;
height: 36px;
cursor: pointer;
font-size: 1.1rem;
color: var(--ink);
}
.qty-stepper__btn:hover { background: var(--bg); }
.qty-stepper__input {
width: 50px;
border: 0;
border-left: 1px solid var(--line);
border-right: 1px solid var(--line);
text-align: center;
font: inherit;
height: 36px;
-moz-appearance: textfield;
}
.qty-stepper__input::-webkit-outer-spin-button,
.qty-stepper__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-pack-note {
color: var(--ink-muted);
font-size: 0.8rem;
margin: 4px 0 0;
}
}
.qo { max-width: 1240px; }
.qo__title { margin: 8px 0 8px; font-size: 1.9rem; font-weight: 700; }
.qo__intro { margin: 0 0 22px; color: var(--ink-muted); font-size: 1.02rem; }
.qo__head, .qo__row, .qo__cells {
display: grid;
grid-template-columns: 320px 76px minmax(0, 2fr) minmax(0, 1.3fr) minmax(0, 1fr);
gap: 16px;
align-items: center;
}
.qo__row .qo__cells {
grid-column: 3 / -1;
grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr) minmax(0, 1fr);
}
.qo__result { display: contents; }
.qo__head {
padding: 10px 0;
border-bottom: 1px solid var(--line);
font-weight: 700;
font-size: 0.95rem;
}
.qo__row { padding: 14px 0; border-bottom: 1px solid var(--line); }
.qo__code, .qo__qty {
width: 100%;
padding: 14px 12px;
border: 1px solid var(--line-strong);
border-radius: 2px;
font: inherit;
font-size: 0.95rem;
background: #fff;
}
.qo__qty { padding-left: 8px; padding-right: 6px; text-align: center; }
.qo__code::placeholder { color: var(--ink-muted); }
.qo__code:focus, .qo__qty:focus { outline: 2px solid var(--brand); outline-offset: -1px; }
.qo__row--nomatch .qo__code { border-color: var(--accent-red); }
.qo__cell { min-width: 0; font-size: 0.95rem; }
.qo__cell--name { display: flex; flex-direction: column; gap: 2px; }
.qo__name { font-weight: 600; line-height: 1.3; }
.qo__name:hover { color: var(--brand); }
.qo__sku { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.8rem; color: var(--ink-muted); }
.qo__pack { font-size: 0.8rem; color: var(--accent-amber); }
.qo__nomatch { color: var(--accent-red); }
.qo__cell--stock { display: flex; flex-direction: column; gap: 2px; }
.qo__stock { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; }
.qo__eta { font-size: 0.82rem; color: var(--ink-muted); }
.qo__cell--price { display: flex; flex-direction: column; gap: 2px; }
.qo__price { font-weight: 700; font-size: 1.02rem; }
.qo__vat { font-size: 0.78rem; }
.qo__actions {
display: flex;
justify-content: flex-end;
align-items: center;
gap: 36px;
padding: 56px 0 8px;
}
.qo__clear {
background: none;
border: 0;
padding: 0;
font: inherit;
font-size: 1.02rem;
color: var(--ink);
text-decoration: underline;
cursor: pointer;
}
.qo__clear:hover { color: var(--brand); }
.qo__submit {
font-size: 1.05rem;
padding: 14px 32px;
border-radius: 0;
}
.qo__submit:disabled { background: #dcdcdc; color: #6b6b6b; cursor: not-allowed; }
.qo__help { margin-top: 24px; }
@media (max-width: 960px) {
.qo__head, .qo__row {
grid-template-columns: minmax(0, 1fr) 72px;
gap: 10px;
}
.qo__head [role="columnheader"]:nth-child(n + 3) { display: none; }
.qo__row .qo__cells {
grid-column: 1 / -1;
grid-template-columns: 1fr;
gap: 4px;
padding-top: 6px;
}
.qo__cells > .qo__cell { display: none; }
.qo__result { display: grid; gap: 4px; padding-top: 4px; }
.qo__code, .qo__qty { padding: 12px 10px; }
.qo__actions { flex-direction: column-reverse; align-items: stretch; gap: 16px; padding-top: 28px; }
.qo__submit { width: 100%; }
.qo__clear { text-align: center; }
}
.csteps { margin: 0 0 var(--main-pad-y); }
.csteps__back {
display: inline-flex;
align-items: center;
gap: 4px;
margin-bottom: 10px;
font-size: 0.9rem;
color: var(--ink-muted) !important;
text-decoration: none;
}
.csteps__back:hover { color: var(--ink) !important; }
.csteps__list {
display: flex;
align-items: center;
list-style: none;
margin: 0;
padding: 0;
}
.csteps__step { display: flex; align-items: center; min-width: 0; }
.csteps__step + .csteps__step { flex: 1 1 auto; }
.csteps__step + .csteps__step::before {
content: "";
flex: 1 1 auto;
min-width: 20px;
height: 2px;
margin: 0 10px;
border-radius: 1px;
background: var(--line-strong);
}
.csteps__step--done::before,
.csteps__step--current::before { background: #046ec5 !important; }
.csteps__inner {
display: inline-flex;
align-items: center;
gap: 8px;
min-width: 0;
text-decoration: none;
color: inherit;
}
.csteps__marker {
width: 26px;
height: 26px;
flex: 0 0 auto;
border-radius: 50%;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid var(--line-strong);
background: var(--card);
color: var(--ink-muted);
font-size: 13px;
font-weight: 700;
line-height: 1;
}
.csteps__label {
font-size: 0.95rem;
color: var(--ink-muted);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.csteps__step--done .csteps__marker,
.csteps__step--current .csteps__marker {
background: #046ec5;
border-color: #046ec5;
color: #fff;
}
.csteps__step--done .csteps__label {
color: #046ec5;
font-weight: bold;
}
.csteps__step--current .csteps__label { color: #046ec5; font-weight: 700; }
a.csteps__inner:hover .csteps__label { color: var(--brand); text-decoration: underline; }
.csteps__sr {
position: absolute;
width: 1px; height: 1px;
margin: -1px; padding: 0; border: 0;
overflow: hidden;
clip: rect(0 0 0 0);
clip-path: inset(50%);
white-space: nowrap;
}
.csteps__count { display: none; margin: 0 0 8px; font-size: 0.8rem; color: var(--ink-muted); }
@media (max-width: 720px) {
.csteps { display: none; }
.csteps__count { display: block; }
.csteps__marker { width: 24px; height: 24px; font-size: 12px; }
.csteps__label { font-size: 0.9rem; }
.csteps__inner { gap: 8px; }
.csteps__step + .csteps__step::before { margin: 0 8px; min-width: 12px; }
.csteps__step:not(.csteps__step--current) .csteps__label { display: none; }
.csteps__step--current .csteps__label { overflow: visible; text-overflow: clip; }
}
.checkout-layout {
display: grid;
grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
gap: 18px;
align-items: start;
margin-bottom: 14px;
}
.checkout-column {
display: flex;
flex-direction: column;
gap: 18px;
min-width: 0;
}
@media (max-width: 900px) {
.checkout-layout { grid-template-columns: minmax(0, 1fr); }
}
.checkout-prices table {
width: 100%;
border-collapse: collapse;
margin-bottom: 14px;
}
.checkout-prices thead th {
text-align: right;
font-weight: 600;
font-size: 0.8rem;
color: var(--ink-muted);
background: var(--bg);
padding: 8px 12px;
}
.checkout-prices thead th:first-child { text-align: left; }
.checkout-prices tbody th,
.checkout-prices tbody td {
padding: 10px 12px;
border-bottom: 1px solid var(--line);
font-size: 0.9rem;
}
.checkout-prices tbody th { font-weight: 600; text-align: left; }
.checkout-prices tbody td { text-align: right; }
.checkout-prices .cart-totals__final th,
.checkout-prices .cart-totals__final td { font-weight: 700; border-bottom: 0; }
.totals-breakdown {
display: grid;
grid-template-columns: 1fr auto;
gap: 6px 14px;
margin: 0;
font-size: 0.92rem;
max-width: 360px;
}
.totals-breakdown dt { color: var(--ink); }
.totals-breakdown dd { margin: 0; text-align: right; font-weight: 600; }
.totals-breakdown dt.total,
.totals-breakdown dd.total {
border-top: 1px solid var(--line);
padding-top: 8px;
margin-top: 4px;
font-size: 1.05rem;
font-weight: 700;
}
.co-page {
background: #eaeded;
padding: 20px 0 28px;
margin-bottom: 0;
}
.co-layout {
display: grid;
grid-template-columns: minmax(0, 1fr) 360px;
gap: 20px;
align-items: start;
}
.co-main { min-width: 0; }
.co-aside { position: sticky; top: 14px; min-width: 0; }
.co-card {
background: #fff;
border-radius: 4px;
padding: 22px 28px 26px;
}
.co-section + .co-section {
border-top: 1px solid var(--line);
margin-top: 22px;
padding-top: 22px;
}
.co-section__title {
display: flex;
align-items: center;
gap: 10px;
margin: 0 0 16px;
font-size: 1.2rem;
font-weight: 500;
}
.co-num {
flex: none;
display: inline-flex;
align-items: center;
justify-content: center;
width: 26px;
height: 26px;
border-radius: 50%;
background: #046ec5;
color: #fff;
font-size: 0.85rem;
font-weight: 700;
}
.co-delivery { margin-top: 4px; }
.co-delivery[hidden] { display: none; }
.co-ship { padding: 2px 0 6px; }
.co-ship[hidden] { display: none; }
.co-ship__row {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 16px;
font-size: 1rem;
}
.co-ship__name { font-weight: 600; }
.co-ship__price { font-size: 1.05rem; }
.co-ship__note { margin: 6px 0 0; font-size: 0.85rem; max-width: 560px; }
.co-section__title .co-section__edit {
margin-left: auto;
font-size: 0.85rem;
font-weight: 500;
color: var(--brand);
background: none;
border: 0;
padding: 0;
font-family: inherit;
cursor: pointer;
}
.co-section__edit:hover { text-decoration: underline; }
.co-section__edit[hidden] { display: none; }
.co-section__summary {
flex: 1 1 auto;
min-width: 0;
margin-left: 6px;
font-size: 0.85rem;
font-weight: 400;
color: var(--ink-muted);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.co-section__summary[hidden] { display: none; }
.co-section__body[hidden] { display: none; }
.co-acc .co-section--done .co-section__title,
.co-acc .co-section--upcoming .co-section__title { margin-bottom: 0; }
.co-acc .co-section--upcoming .co-section__title { color: var(--ink-muted); }
.co-acc .co-section--upcoming .co-num { background: #c9ced4; }
.co-acc .co-section--done .co-num { background: #008f35; font-size: 0; }
.co-acc .co-section--done .co-num::after { content: "\2713"; font-size: 0.85rem; }
.co-section__next { display: flex; justify-content: flex-end; margin-top: 4px; }
.co-next {
min-width: 200px;
padding: 10px 28px;
background: #ff8100;
color: #fff !important;
border-radius: 0;
}
.co-next:hover { background: #e57300; }
.co-next:disabled { background: #6b6b6b; cursor: not-allowed; }
.co-section__next--pay { flex-direction: column; align-items: flex-end; gap: 8px; margin-top: 12px; }
.co-section__next--pay[hidden] { display: none; }
.pay-choose__prompt { margin: 0 0 10px; font-size: 0.82rem; color: var(--ink-muted); }
.payment-options.pay-tiles { display: flex; flex-direction: row; flex-wrap: wrap; align-items: stretch; gap: 12px; }
.pay-tile { position: relative; cursor: pointer; display: flex; }
.pay-tile input { position: absolute; opacity: 0; width: 0; height: 0; }
.pay-tile__body {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
flex: 1;
min-width: 150px;
min-height: 46px;
padding: 9px 16px;
font-size: 0.88rem;
background: #eef1f5;
border: 2px solid transparent;
border-radius: 2px;
font-weight: 700;
color: var(--ink);
transition: border-color 0.12s, background 0.12s;
}
.pay-tile:hover .pay-tile__body { background: #e6eaf0; }
.pay-tile input:checked + .pay-tile__body { border-color: #046ec5; }
.pay-tile input:focus-visible + .pay-tile__body { outline: 2px solid var(--brand); outline-offset: 2px; }
.pay-tile__label small { display: block; font-weight: 400; font-size: 0.75rem; color: var(--ink-muted); }
.pay-tile__paypal { display: block; height: 22px; width: auto; }
.pay-tile__icon { width: 24px; height: 17px; }
@media (max-width: 600px) {
.payment-options.pay-tiles { flex-direction: column; }
.pay-tile__body { min-width: 0; }
}
.co-inline-panel { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.co-inline-panel[hidden] { display: none; }
.co-next--pay { min-width: 260px; }
.co-section__terms { margin: 0; font-size: 0.78rem; color: var(--ink-muted); text-align: right; max-width: 360px; }
.co-section__terms a { color: var(--ink-muted); text-decoration: underline; }
.field-row--lookup:has(.address-lookup-block[hidden]) { grid-template-columns: 1fr; }
.field-row--lookup .address-lookup-block { margin-bottom: 12px; }
.field-row--lookup .idpc-select-container { flex: 1 1 100%; }
.field-row--lookup .address-lookup { flex-wrap: wrap; }
.co-num--done { background: #008f35; }
.co-done {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px 24px;
font-size: 0.9rem;
line-height: 1.55;
}
.co-summary__ref { margin: -8px 0 12px; font-size: 0.8rem; }
.co-pay__lead { margin: 0 0 16px; font-size: 0.95rem; }
.co-pay__paypal { max-width: 420px; }
.co-pay__secure { margin: 6px 0 0; font-size: 0.82rem; }
.co-tyl { max-width: 620px; }
.co-tyl__form { min-width: 0; }
.co-tyl .tyl-field { margin-bottom: 12px; }
.co-tyl .tyl-field label { font-size: 0.85rem; font-weight: 500; margin-bottom: 4px; }
.co-tyl .tyl-field input[type="text"] {
padding: 9px 10px;
font-size: inherit;
border-radius: 4px;
}
.co-tyl .tyl-field__wrap input[type="text"] { padding-right: 56px; }
.co-tyl .tyl-field__row { gap: 10px; }
.co-tyl .tyl-pay__actions .btn { padding: 11px 18px; font-size: 1rem; }
.co-pay__powered-row { display: flex; align-items: center; gap: 16px; margin-top: 12px; }
.co-pay__powered-row .tyl-powered__logo { margin: 0; flex: none; width: 120px; height: auto; }
.co-pay__powered { margin: 0; font-size: 0.9rem; }
.co-tyl .co-pay__secure { margin: 2px 0 0; }
.co-tyl .btn.btn--tyl { background: #ff8100; color: #fff !important; }
.co-tyl .btn.btn--tyl:hover { background: #e57300; }
.co-tyl .tyl-pay__aside { position: static; width: auto; margin: 0; padding: 0; }
@media (max-width: 800px) {
.co-done { grid-template-columns: 1fr; }
}
.co-summary__title { margin: 0 0 14px; font-size: 1.2rem; font-weight: 500; }
.co-items-fold__summary {
display: flex;
align-items: center;
justify-content: space-between;
list-style: none;
cursor: pointer;
font-size: 0.92rem;
font-weight: 600;
padding: 4px 0;
}
.co-items-fold__summary::-webkit-details-marker { display: none; }
.co-items-fold__chevron { transition: transform 0.15s ease; color: var(--ink-muted); }
.co-items-fold[open] .co-items-fold__chevron { transform: rotate(180deg); }
.co-items-fold .co-items { padding-top: 12px; }
.co-items { display: flex; flex-direction: column; gap: 14px; }
.co-item {
display: grid;
grid-template-columns: 56px minmax(0, 1fr) auto;
gap: 12px;
align-items: start;
}
.co-item__thumb {
width: 56px;
height: 56px;
display: flex;
align-items: center;
justify-content: center;
color: var(--line-strong);
}
.co-item__thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.co-item__body { min-width: 0; font-size: 0.85rem; }
.co-item__name { font-weight: 600; line-height: 1.3; }
.co-item__meta { color: var(--ink-muted); font-size: 0.8rem; margin-top: 2px; }
.co-item__stock { font-size: 0.78rem; margin-top: 2px; font-weight: 600; }
.co-item__stock--ok { color: #008f35; }
.co-item__stock--warn { color: #ff8100; }
.co-item__price { font-weight: 700; font-size: 0.95rem; white-space: nowrap; }
.co-summary .discount-box { margin-top: 8px; }
.discount-box__summary {
display: flex;
align-items: center;
justify-content: space-between;
list-style: none;
cursor: pointer;
font-size: 0.82rem;
font-weight: 400;
color: var(--ink-muted);
padding: 4px 0;
}
.discount-box__summary::-webkit-details-marker { display: none; }
.discount-box__chevron { transition: transform 0.15s ease; color: var(--ink-muted); }
.discount-box[open] .discount-box__chevron { transform: rotate(180deg); }
.discount-box__body { padding: 8px 0 4px; }
.co-summary .discount-box .btn { padding: 8px 14px; }
.co-totals {
display: grid;
grid-template-columns: 1fr auto;
gap: 8px 12px;
margin: 16px 0 0;
font-size: 0.92rem;
}
.co-totals__rule { grid-column: 1 / -1; border-top: 1px solid var(--line); margin: 2px 0; }
.co-totals dt { color: var(--ink); }
.co-totals dd { margin: 0; text-align: right; font-weight: 600; }
.co-totals__discount { color: #008f35; }
.co-totals dt.co-totals__total,
.co-totals dd.co-totals__total {
font-size: 1.1rem;
font-weight: 700;
}
.co-details { position: relative; text-align: right; margin-top: 4px; }
.co-details__trigger {
background: none;
border: 0;
padding: 0;
font: inherit;
font-size: 0.8rem;
color: var(--brand);
text-decoration: underline;
cursor: pointer;
}
.co-details__pop {
display: none;
position: absolute;
right: 0;
top: calc(100% + 8px);
z-index: 20;
width: 300px;
max-width: calc(100vw - 32px);
background: #fff;
border-radius: 4px;
box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
padding: 14px 16px 16px;
text-align: left;
}
.co-details:hover .co-details__pop,
.co-details:focus-within .co-details__pop { display: block; }
.co-details__head {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 8px;
font-size: 1rem;
}
.co-details__close {
background: none;
border: 0;
font-size: 1.4rem;
line-height: 1;
color: var(--ink);
cursor: pointer;
padding: 0 2px;
}
.co-details__list {
display: grid;
grid-template-columns: 1fr auto;
gap: 5px 12px;
margin: 0;
font-size: 0.9rem;
}
.co-details__list dd { margin: 0; text-align: right; }
.co-details__list dt.co-details__total,
.co-details__list dd.co-details__total { font-size: 1.05rem; font-weight: 700; margin-top: 4px; }
.co-summary__ship {
margin: 12px 0 0;
font-size: 0.85rem;
display: flex;
gap: 6px;
align-items: flex-start;
}
.co-summary__ship--ok { color: #008f35; }
.co-summary__ship svg { flex: none; margin-top: 2px; }
.co-summary__ship[hidden] { display: none; }
@media (max-width: 960px) {
.co-layout { grid-template-columns: minmax(0, 1fr); }
.co-aside { position: static; }
.co-card { padding: 18px 16px 20px; }
}
@media (max-width: 720px) {
.co-page { margin-top: calc(-1 * var(--main-pad-y)); }
.co-section__title { flex-wrap: wrap; row-gap: 4px; font-size: 1.1rem; }
.co-section__title .co-section__edit { margin-left: auto; }
.co-section__summary {
order: 2;
flex-basis: 100%;
margin-left: 36px;
white-space: normal;
font-size: 0.82rem;
}
}
.checkout-address .field,
.address-form .field {
display: flex;
flex-direction: column;
gap: 4px;
margin-bottom: 12px;
}
.checkout-address .field[hidden],
.address-form .field[hidden] {
display: none;
}
.checkout-address .field-row[hidden],
.address-form .field-row[hidden] {
display: none;
}
.checkout-address label,
.address-form label {
font-weight: 500;
font-size: 0.85rem;
color: var(--ink);
}
.checkout-address input[type="text"],
.checkout-address input[type="email"],
.checkout-address input[type="tel"],
.checkout-address select,
.address-form input,
.address-form select {
padding: 9px 10px;
border: 1px solid var(--line-strong);
border-radius: 4px;
font: inherit;
background: #fff;
}
.checkout-address input:focus,
.address-form input:focus,
.checkout-address select:focus,
.address-form select:focus {
outline: none;
border-color: var(--brand);
box-shadow: 0 0 0 3px rgba(21, 74, 141, 0.12);
}
.checkout-address .field-row,
.address-form .field-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
@media (max-width: 600px) {
.address-form .field-row,
.checkout-address .field-row { grid-template-columns: 1fr; }
}
.address-lookup-block { margin-bottom: 14px; }
.address-lookup-block[hidden] { display: none; }
.address-lookup__label {
display: block;
font-weight: 600;
font-size: 0.85rem;
margin-bottom: 4px;
}
.address-lookup {
display: flex;
flex-wrap: wrap;
align-items: stretch;
gap: 0;
}
.address-lookup .idpc-input {
flex: 1 1 200px;
min-width: 0;
margin: 0;
border-radius: 4px 0 0 4px;
border-right: 0;
}
.address-lookup .idpc-button {
flex: 0 0 auto;
background: #ff8100;
color: #fff;
border: 0;
border-radius: 0 4px 4px 0;
padding: 9px 16px;
font: inherit;
font-weight: 600;
cursor: pointer;
white-space: nowrap;
}
.address-lookup .idpc-button:hover { background: #e57300; }
.address-lookup .idpc-select-container { flex: 1 1 100%; margin-top: 8px; }
.address-lookup .idpc-select {
width: 100%;
margin: 0;
}
.address-lookup .idpc-error {
flex: 1 1 100%;
font-size: 0.85rem;
color: var(--ink-muted);
}
.address-lookup__manual {
display: inline-block;
margin-top: 8px;
background: none;
border: 0;
padding: 0;
font: inherit;
font-size: 0.85rem;
color: var(--brand);
cursor: pointer;
}
.address-lookup__manual:hover { text-decoration: underline; }
.address-lookup__manual[hidden] { display: none; }
.address-fields[hidden] { display: none; }
.address-chosen {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 16px;
margin: 2px 0 14px;
font-size: 0.92rem;
line-height: 1.55;
}
.address-chosen[hidden] { display: none; }
.address-chosen__text { display: flex; flex-direction: column; }
.address-form .address-chosen__edit,
.checkout-address .address-chosen__edit {
background: none;
border: 0;
padding: 0;
font: inherit;
font-size: 0.85rem;
color: #046ec5;
cursor: pointer;
flex: none;
}
.address-form .address-chosen__edit:hover,
.checkout-address .address-chosen__edit:hover { text-decoration: underline; }
.address-saved__controls[hidden] { display: none; }
.address-display {
background: var(--bg);
border-radius: 4px;
padding: 12px 14px;
font-size: 0.9rem;
line-height: 1.6;
margin-bottom: 12px;
}
.checkbox-row {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.9rem;
margin-bottom: 12px;
}
.checkbox-row input { width: 16px; height: 16px; }
.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-option {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 10px 12px;
border-radius: 4px;
cursor: pointer;
transition: background 0.15s;
}
.payment-option:hover { background: var(--bg); }
.payment-option input[type="radio"] {
margin-top: 3px;
flex-shrink: 0;
width: 16px;
height: 16px;
accent-color: var(--brand);
}
.payment-option:has(input:checked) { background: rgba(21, 74, 141, 0.05); }
.payment-option__body { flex: 1; min-width: 0; }
.payment-option__title {
font-weight: 700;
font-size: 0.95rem;
display: flex;
align-items: center;
gap: 8px;
}
.payment-option__badge {
display: inline-block;
padding: 2px 8px;
background: var(--brand);
color: #fff;
font-size: 0.7rem;
font-weight: 700;
border-radius: 999px;
letter-spacing: 0.04em;
text-transform: uppercase;
}
.payment-option__badge--alt { background: #ff8100; color: var(--ink); }
.payment-option__desc { font-size: 0.85rem; margin-top: 2px; }
.payment-option__detail {
margin-top: 10px;
display: flex;
flex-direction: column;
gap: 4px;
}
.payment-option__detail label { font-weight: 600; font-size: 0.8rem; }
.payment-option__detail input {
padding: 8px 10px;
border: 1px solid var(--line-strong);
border-radius: 4px;
font: inherit;
}
.card-pay__head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
flex-wrap: wrap;
}
.card-pay__head h2 { margin: 0; }
.card-pay__logos {
height: auto;
max-width: 200px;
width: 100%;
flex: 0 0 auto;
}
.card-pay__meta { margin-top: 6px; }
.card-fields .field {
display: flex;
flex-direction: column;
gap: 6px;
margin-bottom: 14px;
}
.card-fields label {
font-weight: 600;
font-size: 0.85rem;
color: var(--ink, #1a1a1a);
}
.card-fields .field-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.card-field {
min-height: 46px;
}
.card-fields.is-loading .card-field {
border: 1px solid var(--line-strong);
border-radius: 8px;
background-image: linear-gradient(100deg,
#f3f4f6 30%, #e9ebef 50%, #f3f4f6 70%);
background-size: 200% 100%;
animation: card-field-shimmer 1.2s ease-in-out infinite;
}
.card-fields.is-loading .card-fields__submit { opacity: 0.6; pointer-events: none; }
@keyframes card-field-shimmer {
from { background-position: 200% 0; }
to   { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
.card-fields.is-loading .card-field { animation: none; }
}
.card-fields__submit {
width: 100%;
margin-top: 6px;
padding: 13px;
font-size: 1rem;
}
.card-fields__submit:disabled { opacity: 0.6; cursor: default; }
.card-fields__secure {
display: flex;
align-items: center;
gap: 6px;
margin-top: 12px;
font-size: 0.82rem;
}
.card-fields__secure svg { flex: 0 0 auto; color: #2e7d32; }
.discount-box__form {
display: flex;
gap: 8px;
align-items: stretch;
}
.discount-box__input {
flex: 1;
text-transform: uppercase;
padding: 9px 10px;
border: 1px solid var(--line-strong);
border-radius: 4px;
background: #fff;
font: inherit;
}
.discount-box__input::placeholder { text-transform: none; letter-spacing: 0; }
.discount-box__input:focus {
outline: none;
border-color: var(--brand);
box-shadow: 0 0 0 3px rgba(21, 74, 141, 0.12);
}
.discount-box__applied {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
flex-wrap: wrap;
}
.out-of-line-form { display: none; }
.order-success {
max-width: 640px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 14px;
}
.order-success .card { padding: 22px 24px; }
.order-success__hero { text-align: center; }
.order-success__check {
display: inline-flex;
align-items: center;
justify-content: center;
width: 56px;
height: 56px;
margin-bottom: 14px;
border-radius: 50%;
background: rgba(46, 125, 50, 0.12);
color: var(--accent-green);
}
.order-success__hero h1 { margin: 0 0 8px; font-size: 1.5rem; color: var(--brand-darker); }
.order-success__hero p { margin: 0 0 4px; color: var(--ink-muted); }
.order-success__email { margin-top: 10px !important; }
.order-success__ref {
background: #f4f6fa !important;
border-left: 4px solid var(--brand) !important;
}
.order-success__ref-label {
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--ink-muted);
margin-bottom: 4px;
}
.order-success__ref-value {
font-size: 1.25rem;
font-weight: 700;
color: var(--brand-darker);
margin-bottom: 14px;
}
.order-success__ref-meta {
display: grid;
grid-template-columns: auto 1fr;
gap: 4px 24px;
margin: 0;
font-size: 0.9rem;
}
.order-success__ref-meta dt { color: var(--ink-muted); }
.order-success__ref-meta dd { margin: 0; color: var(--ink); }
.order-summary__scroll { overflow-x: auto; }
.order-summary__table {
width: 100%;
border-collapse: collapse;
font-size: 0.9rem;
margin-bottom: 16px;
}
.order-summary__table thead th {
background: var(--brand-darker);
color: #fff;
font-weight: 600;
font-size: 0.78rem;
letter-spacing: 0.3px;
text-align: left;
padding: 10px 12px;
white-space: nowrap;
}
.order-summary__table tbody td {
padding: 10px 12px;
border-bottom: 1px solid var(--line);
vertical-align: top;
}
.order-summary__table .num { text-align: right; }
.order-summary__table .strong { font-weight: 600; }
.order-summary__sku {
font-family: Menlo, Consolas, monospace;
font-size: 0.82rem;
color: var(--brand);
white-space: nowrap;
}
.order-summary__totals { margin-left: auto; }
.order-success__address p { margin: 0; line-height: 1.6; color: var(--ink); }
.order-success__review { text-align: center; }
.order-success__help {
padding: 14px 18px;
background: #fff6ec;
border-left: 3px solid #ff8100;
border-radius: 4px;
font-size: 0.9rem;
line-height: 1.5;
color: var(--ink);
}
.order-success__help strong { display: block; color: var(--brand-darker); }
.order-success__actions { text-align: center; margin-top: 6px; }
.muted { color: var(--ink-muted); font-size: 0.9rem; }
.back-link {
display: inline-flex;
align-items: center;
gap: 6px;
color: var(--ink-muted) !important;
font-size: 0.92rem;
margin-bottom: 12px;
}
.back-link:hover { color: var(--brand) !important; text-decoration: none; }
.recently-viewed {
max-width: 1440px;
margin: 40px auto 12px;
padding: 18px 0 20px;
border-top: 1px solid var(--line);
}
.recently-viewed--padded {
padding-left: 24px;
padding-right: 24px;
}
.recently-viewed__head {
display: flex;
align-items: baseline;
justify-content: space-between;
margin-bottom: 12px;
}
.recently-viewed__head h2 {
font-size: 0.95rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
margin: 0;
}
.clearance-strip__all {
font-size: 0.85rem;
color: var(--ink-muted);
}
.clearance-strip__all:hover { color: #d21c1c; }
.recently-viewed__track {
display: grid;
grid-auto-flow: column;
grid-auto-columns: 210px;
gap: 12px;
overflow-x: auto;
scroll-snap-type: x mandatory;
padding-top: 6px;
padding-bottom: 6px;
}
.recently-viewed__track::-webkit-scrollbar { height: 6px; }
.recently-viewed__track::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }
.recently-viewed__card {
display: flex;
flex-direction: column;
background: var(--card);
border: 1px solid #e1e1e1;
border-radius: 0;
padding: 20px;
color: var(--ink) !important;
text-decoration: none;
scroll-snap-align: start;
transition: border-color 0.12s, box-shadow 0.12s, transform 0.12s;
}
.recently-viewed__card:hover {
text-decoration: none;
border-color: var(--brand);
box-shadow: 0 4px 10px rgba(21, 74, 141, 0.08);
transform: translateY(-2px);
}
.recently-viewed__thumb {
height: 100px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 8px;
background: #ffffff;
border-radius: 4px;
}
.recently-viewed__thumb img {
max-height: 100%;
max-width: 100%;
object-fit: contain;
}
.recently-viewed__thumb svg {
color: #fff;
}
.recently-viewed__sku {
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
font-size: 0.72rem;
color: var(--ink-muted);
margin-bottom: 2px;
}
.recently-viewed__name {
font-size: 0.84rem;
font-weight: 600;
line-height: 1.3;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
margin-bottom: 6px;
}
.recently-viewed__price {
margin-top: auto;
font-size: 0.82rem;
font-weight: 600;
}
.recently-viewed__price .muted {
font-weight: 400;
font-size: 0.72rem;
}
@media (max-width: 720px) {
.recently-viewed { padding: 16px 0; }
.recently-viewed--padded { padding-left: 14px; padding-right: 14px; }
.recently-viewed__track {
grid-auto-columns: minmax(190px, 70%);
}
}
.pre-footer {
background: #ff8100;
color: #1a1a1a;
margin-top: 40px;
}
.pre-footer__inner {
max-width: 1440px;
margin: 0 auto;
padding: 22px 24px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 28px;
align-items: center;
}
.pre-footer__help {
display: flex;
align-items: center;
gap: 14px;
}
.pre-footer__help svg {
flex-shrink: 0;
color: #1a1a1a;
}
.pre-footer__help-text {
display: flex;
flex-direction: column;
line-height: 1.4;
}
.pre-footer__help-text strong { font-size: 1rem; }
.pre-footer__help-text span { font-size: 0.88rem; }
.pre-footer a {
color: #1a1a1a;
text-decoration: underline;
font-weight: 600;
}
.pre-footer a:hover { text-decoration: none; }
.pre-footer__signup { display: block; }
.pre-footer__signup-label {
display: flex;
flex-direction: column;
line-height: 1.4;
margin-bottom: 8px;
cursor: pointer;
}
.pre-footer__signup-label strong { font-size: 1rem; }
.pre-footer__signup-label span { font-size: 0.85rem; }
.pre-footer__signup-row {
display: flex;
gap: 8px;
max-width: 440px;
}
.pre-footer__signup-row input[type="email"] {
flex: 1;
border: 0;
border-radius: 4px;
padding: 10px 12px;
font: inherit;
font-size: 0.9rem;
background: #fff;
color: var(--ink);
outline: none;
}
.pre-footer__signup-row input[type="email"]:focus {
box-shadow: 0 0 0 2px rgba(26, 26, 26, 0.35);
}
.pre-footer__signup-row input[type="submit"] {
background: #1a1a1a;
color: #fff;
border: 0;
border-radius: 4px;
padding: 0 18px;
font: inherit;
font-size: 0.9rem;
font-weight: 700;
cursor: pointer;
}
.pre-footer__signup-row input[type="submit"]:hover { background: #000; }
@media (max-width: 720px) {
.pre-footer__inner {
grid-template-columns: 1fr;
gap: 18px;
padding: 18px 14px;
}
}
.site-footer {
background: var(--brand-darker);
color: #d8e0eb;
}
.site-footer a { color: #d8e0eb; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__inner {
max-width: 1440px;
margin: 0 auto;
padding: 32px 24px;
display: grid;
grid-template-columns: 1.4fr repeat(3, 1fr);
gap: 28px;
min-height: 430px;
}
.site-footer__col h4 {
margin: 0 0 12px;
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.06em;
color: #fff;
font-weight: 700;
}
.site-footer__col ul {
list-style: none;
padding: 0;
margin: 0;
}
.site-footer__col li {
padding: 3px 0;
font-size: 0.88rem;
}
.site-footer__brand p {
margin: 0;
font-size: 0.88rem;
line-height: 1.5;
max-width: 36ch;
}
.site-footer__contact {
margin: 18px 0 0;
font-size: 0.88rem;
line-height: 1.55;
}
.site-footer__contact p { margin: 0 0 14px; }
.site-footer__hours { margin: 0; }
.site-footer__hours dt {
color: #fff;
font-weight: 600;
margin-top: 10px;
}
.site-footer__hours dt:first-child { margin-top: 0; }
.site-footer__hours dd { margin: 0; }
.site-footer__social {
margin: 14px 0;
}
.site-footer__social-link {
display: inline-flex;
align-items: center;
justify-content: center;
}
.site-footer__social-link svg { display: block; }
.site-footer__logo {
height: 40px;
width: fit-content;
margin-bottom: 12px;
display: block;
margin-left: -6px;
}
.footer-payments {
background: var(--brand-darker);
border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-payments__inner {
max-width: 1440px;
margin: 0 auto;
padding: 14px 24px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
flex-wrap: wrap;
}
.footer-payments__img {
height: 32px;
width: auto;
display: block;
max-width: 100%;
}
.footer-payments__badges {
display: flex;
align-items: center;
gap: 16px;
margin-left: auto;
}
.footer-payments__pci { display: inline-flex; }
.footer-payments__pci img {
display: block;
height: 40px;
width: auto;
}
.footer-payments__trustedsite { width: 120px; height: 50px; flex: none; }
.site-footer__bottom {
border-top: 1px solid rgba(255, 255, 255, 0.08);
padding: 14px 24px;
max-width: 1440px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: space-between;
font-size: 0.8rem;
}
.site-footer__bottom .muted { color: rgba(255, 255, 255, 0.55); }
@media (max-width: 720px) {
.site-footer__inner {
grid-template-columns: 1fr 1fr;
gap: 20px;
padding: 24px 14px;
height: auto;
}
.site-footer__brand { grid-column: 1 / -1; }
.site-footer__bottom {
padding: 12px 14px;
flex-direction: column;
gap: 4px;
}
}
.post-footer {
background: #fff;
color: var(--ink-muted);
font-size: 0.78rem;
line-height: 1.5;
}
.post-footer__inner {
max-width: 1440px;
margin: 0 auto;
padding: 22px 24px;
}
.post-footer p { margin: 0 0 4px; font-size: 10px; }
.post-footer a {
color: var(--brand);
text-decoration: underline;
}
@media (max-width: 720px) {
.post-footer__inner { padding: 18px 14px; }
.footer-payments__inner { padding: 10px 14px; }
.footer-payments__img { height: 26px; }
}
.checkout-header {
background: #112b4c;
color: #fff;
border-bottom: 4px solid var(--brand-darker);
}
.checkout-header__inner {
max-width: 1440px;
margin: 0 auto;
display: flex;
align-items: center;
gap: 24px;
padding: 14px 24px;
}
.checkout-header__back {
display: inline-flex;
align-items: center;
gap: 6px;
color: rgba(255, 255, 255, 0.85) !important;
font-size: 0.88rem;
font-weight: 500;
}
.checkout-header__back:hover {
color: #fff !important;
text-decoration: none;
}
.checkout-header__secure {
margin-left: auto;
display: inline-flex;
align-items: center;
gap: 6px;
color: rgba(255, 255, 255, 0.85);
font-size: 0.88rem;
font-weight: 500;
}
@media (max-width: 720px) {
.checkout-header__inner {
gap: 10px;
padding: 10px 14px;
flex-wrap: wrap;
}
.checkout-header .brand__logo { height: 32px; }
.checkout-header__back span { display: none; }
.checkout-header__secure span { display: none; }
}
.checkout-footer {
background: #112b4c;
color: #fff;
border-top: 4px solid var(--brand-darker);
font-size: 0.82rem;
}
.checkout-footer__inner {
max-width: 1440px;
margin: 0 auto;
padding: 48px 24px 44px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
}
.checkout-footer__meta { min-width: 0; }
.checkout-footer__links {
list-style: none;
padding: 0;
margin: 0 0 26px;
display: flex;
flex-wrap: wrap;
align-items: center;
font-size: 0.95rem;
}
.checkout-footer__links li:not(:last-child)::after { content: "|"; margin: 0 8px; opacity: 0.6; }
.checkout-footer__links a { color: #fff; }
.checkout-footer__links a:hover { text-decoration: underline; }
.checkout-footer__copy { margin: 0 0 6px; }
.checkout-footer__legal { margin: 0; opacity: 0.85; }
.checkout-footer__payments {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 16px;
flex-wrap: wrap;
flex: none;
}
.checkout-footer__payments-label { font-size: 0.95rem; margin-right: 4px; }
.checkout-footer__payments-img {
height: 30px;
width: auto;
display: block;
}
.checkout-footer__pci { display: inline-flex; }
.checkout-footer__pci img {
display: block;
height: 36px;
width: auto;
}
.checkout-footer__trustedsite { width: 120px; height: 50px; flex: none; }
.checkout-footer .reviews-ribbon--footer { flex: 1 1 100%; justify-content: flex-end; margin: 6px 0 0; }
@media (max-width: 900px) {
.checkout-footer__inner {
flex-direction: column;
align-items: flex-start;
gap: 28px;
padding: 32px 20px;
}
.checkout-footer__payments { justify-content: flex-start; }
.checkout-footer .reviews-ribbon--footer { justify-content: flex-start; }
}
@media (max-width: 720px) {
.checkout-footer__payments-img { height: 24px; }
.checkout-footer__pci img { height: 30px; }
}
.auth-card {
max-width: 420px;
margin: 32px auto;
background: var(--card);
border: 1px solid var(--line);
border-radius: 6px;
padding: 28px;
}
.auth-card h1 { margin: 0 0 8px; font-size: 1.3rem; }
.auth-card .muted { margin-top: 0; }
.auth-form {
display: flex;
flex-direction: column;
gap: 8px;
margin-top: 16px;
}
.auth-form label {
font-size: 0.85rem;
font-weight: 600;
color: var(--ink-muted);
}
.auth-form input[type="email"],
.auth-form input[type="text"] {
padding: 10px 12px;
font: inherit;
border: 1px solid var(--line-strong);
border-radius: 4px;
}
.auth-form input[type="email"]:focus,
.auth-form input[type="text"]:focus {
outline: none;
border-color: var(--brand);
box-shadow: 0 0 0 3px rgba(21, 74, 141, 0.15);
}
.auth-form .btn { margin-top: 8px; }
.track-form label { display: block; margin-bottom: 4px; }
.track-form input[type="text"] { display: block; width: 100%; }
.track-form div + div { margin-top: 6px; }
.track-card { max-width: 900px; }
.email-suggest {
margin-top: 4px;
font-size: 0.85rem;
color: var(--accent-amber);
}
.email-suggest__fix {
background: none;
border: 0;
padding: 0;
font: inherit;
font-weight: 600;
color: var(--brand);
text-decoration: underline;
cursor: pointer;
}
.email-suggest__fix:hover { color: var(--brand-darker); }
.account-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 18px;
}
@media (max-width: 720px) {
.account-grid { grid-template-columns: 1fr; }
}
.panel {
background: var(--card);
border: 1px solid var(--line);
border-radius: 6px;
padding: 18px 20px;
}
.panel h2 { margin: 0 0 12px; font-size: 1rem; font-weight: 700; }
.account-meta { display: grid; grid-template-columns: 140px 1fr; gap: 6px 12px; margin: 0; }
.account-meta dt { color: var(--ink-muted); font-size: 0.85rem; }
.account-meta dd { margin: 0; font-size: 0.9rem; }
.account-orders { list-style: none; padding: 0; margin: 0; }
.account-orders li {
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
padding: 10px 0;
border-bottom: 1px solid var(--line);
font-size: 0.9rem;
}
.account-orders li:last-child { border-bottom: 0; }
.account-orders__main { flex: 1; color: var(--ink); display: block; }
.account-orders__main:hover { color: var(--brand); }
.account-orders__pdf { font-size: 0.8rem; padding: 6px 10px; flex-shrink: 0; }
.account-layout {
display: grid;
grid-template-columns: 240px 1fr;
gap: 22px;
align-items: start;
}
@media (max-width: 860px) {
.account-layout { grid-template-columns: 1fr; }
}
.account-sidebar {
background: var(--card);
border: 1px solid var(--line);
border-radius: 6px;
padding: 16px;
}
.account-sidebar h3 {
margin: 14px 0 6px;
font-size: 0.78rem;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--ink-muted);
font-weight: 700;
}
.account-sidebar h3:first-child { margin-top: 0; }
.account-sidebar ul { list-style: none; padding: 0; margin: 0; }
.account-sidebar li a {
display: flex;
align-items: center;
gap: 10px;
padding: 7px 8px;
border-radius: 4px;
font-size: 0.9rem;
color: var(--ink);
}
.account-sidebar li a:hover { background: var(--bg); text-decoration: none; color: var(--brand); }
.account-sidebar li.is-active a {
background: var(--bg);
color: var(--brand);
font-weight: 700;
}
.account-sidebar li a svg { flex-shrink: 0; }
.account-sidebar__signout {
margin-top: 16px;
width: 100%;
text-align: center;
}
.account-address { font-style: normal; line-height: 1.5; font-size: 0.9rem; }
.account-filter {
display: flex;
gap: 8px;
margin-bottom: 16px;
flex-wrap: wrap;
}
.account-filter input[type="text"] {
flex: 1;
min-width: 180px;
max-width: 320px;
padding: 8px 10px;
border: 1px solid var(--line);
border-radius: 4px;
font: inherit;
}
.account-table-wrap { overflow-x: auto; }
.account-table {
width: 100%;
border-collapse: collapse;
font-size: 0.9rem;
}
.account-table th {
text-align: left;
font-size: 0.8rem;
color: var(--ink-muted);
font-weight: 700;
padding: 8px 10px;
border-bottom: 2px solid var(--line);
white-space: nowrap;
}
.account-table td {
padding: 10px;
border-bottom: 1px solid var(--line);
vertical-align: middle;
}
.account-table tr:last-child td { border-bottom: 0; }
.account-table .btn-outline { font-size: 0.8rem; padding: 5px 10px; }
.account-pagination {
display: flex;
align-items: center;
gap: 14px;
margin-top: 16px;
}
.account-addresses {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
@media (max-width: 720px) {
.account-addresses { grid-template-columns: 1fr; }
}
.addr-card__head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
margin-bottom: 10px;
}
.addr-card__actions {
display: flex;
gap: 8px;
flex-wrap: wrap;
margin-top: 14px;
}
.addr-card__actions .btn-outline { font-size: 0.8rem; padding: 5px 10px; }
.addr-card__delete { color: var(--accent-red); border-color: var(--accent-red); }
.account-panel--narrow { max-width: 560px; }
.account-form .field {
display: flex;
flex-direction: column;
gap: 4px;
margin-bottom: 12px;
}
.account-form .field label { font-weight: 600; font-size: 0.85rem; }
.account-form .field input,
.account-form .field select {
padding: 8px 10px;
border: 1px solid var(--line);
border-radius: 4px;
font: inherit;
background: #fff;
}
.account-form .field input:disabled { background: var(--bg); color: var(--ink-muted); }
.account-form__hint { font-size: 0.8rem; margin: 2px 0 0; }
.account-form__row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
@media (max-width: 560px) {
.account-form__row { grid-template-columns: 1fr; }
}
.account-form .checkbox-row {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.9rem;
margin: 4px 0 14px;
}
.account-form__actions { display: flex; gap: 10px; align-items: center; }
.account-order { display: flex; flex-direction: column; }
.account-order__meta {
display: flex;
flex-wrap: wrap;
gap: 12px 18px;
align-items: center;
margin-bottom: 14px;
font-size: 0.9rem;
}
.account-order__grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 14px;
}
@media (max-width: 720px) {
.account-order__grid { grid-template-columns: 1fr; }
}
.account-order address {
font-style: normal;
line-height: 1.5;
font-size: 0.9rem;
}
.account-order__totals {
display: grid;
grid-template-columns: 1fr auto;
gap: 6px 12px;
margin: 0;
font-size: 0.9rem;
}
.account-order__totals dt { color: var(--ink-muted); }
.account-order__totals dd { margin: 0; text-align: right; }
.account-order__totals dt.total,
.account-order__totals dd.total {
border-top: 1px solid var(--line);
padding-top: 6px;
margin-top: 4px;
font-weight: 700;
color: var(--ink);
font-size: 1rem;
}
.account-order__items {
width: 100%;
border-collapse: collapse;
font-size: 0.88rem;
}
.account-order__items th,
.account-order__items td {
padding: 8px 10px;
border-bottom: 1px solid var(--line);
text-align: left;
}
.account-order__items th {
background: var(--bg);
font-weight: 700;
font-size: 0.8rem;
}
.account-order__items code {
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
font-size: 0.85rem;
}
.status-badge {
display: inline-block;
padding: 3px 10px;
border-radius: 999px;
font-size: 0.78rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.03em;
background: var(--bg);
color: var(--ink-muted);
}
.status-badge--paid              { background: #e6f4ea; color: #2e7d32; }
.status-badge--awaiting-invoice  { background: #fff7e0; color: #8a6d00; }
.status-badge--pending           { background: #eef3fa; color: var(--brand); }
.status-badge--failed,
.status-badge--cancelled,
.status-badge--expired           { background: #fdecea; color: var(--accent-red); }
.status-badge--dispatched        { background: #e0f2f1; color: #00695c; }
.status-badge--return-pending    { background: #fff7e0; color: #8a6d00; }
.status-badge--return-approved   { background: #e6f4ea; color: #2e7d32; }
.status-badge--return-rejected   { background: #fdecea; color: var(--accent-red); }
.return-items select,
.return-items input[type="text"] {
width: 100%;
padding: 7px 9px;
border: 1px solid var(--line);
border-radius: 4px;
font: inherit;
font-size: 0.85rem;
background: #fff;
color: var(--ink);
}
.return-items select:focus,
.return-items input[type="text"]:focus {
outline: none;
border-color: var(--brand);
}
.return-items td:first-child { width: 34px; text-align: center; }
.return-items input[type="checkbox"] {
width: 16px;
height: 16px;
accent-color: var(--brand);
}
.return-items select[name*="quantity"] { width: 70px; }
.policy-page {
max-width: 1440px;
margin: 0 auto;
}
.policy-page__head {
border-bottom: 0;
padding-bottom: 0;
margin-bottom: 18px;
}
.policy-page__head h1 { font-size: 1.9rem; }
.policy-page__grid {
display: grid;
grid-template-columns: minmax(0, 1fr) 320px;
gap: 24px;
align-items: start;
}
.policy-page__grid--wide { grid-template-columns: minmax(0, 1fr); }
.policy-page .policy-page__body {
max-width: none;
border: 0;
border-radius: 0;
padding: 10px;
}
.policy-page .policy-page__body {
font-size: 0.95rem;
line-height: 1.65;
}
.policy-page__body p { margin: 0 0 12px; }
.policy-page__body ul,
.policy-page__body ol { margin: 0 0 14px; }
.policy-page__body li { margin-bottom: 4px; }
.policy-page__body h2 {
font-size: 1.5rem;
font-weight: 400;
line-height: 1.3;
margin: 38px 0 16px;
scroll-margin-top: 20px;
}
.policy-page__body > h2:first-child { margin-top: 8px; }
.policy-page__body h2.section-h {
display: grid;
grid-template-columns: 4.2em minmax(0, 1fr);
gap: 0 6px;
}
.section-h__n { color: var(--ink-muted); }
.policy-page__body h3 {
font-size: 1.02rem;
font-weight: 700;
margin: 24px 0 8px;
}
.policy-page__body .warranty-q + .warranty-q {
margin-top: 28px;
padding-top: 24px;
border-top: 1px solid var(--line);
}
.policy-page__body .warranty-q h2 { margin: 0 0 12px; }
.policy-page__body .warranty-q > :last-child { margin-bottom: 0; }
.policy-aside {
display: grid;
gap: 16px;
}
.policy-nav__head {
font-weight: 700;
font-size: 0.92rem;
margin: 0 0 10px;
}
.policy-nav__list {
list-style: square;
margin: 0;
padding: 0;
display: grid;
gap: 5px;
margin-left: 22px;
}
.policy-nav__list li { margin: 0; }
.policy-nav__list a {
display: block;
color: var(--ink);
font-size: 0.88rem;
line-height: 1.4;
}
.policy-nav__list a:hover {
color: #046ec5;
text-decoration: none;
font-weight: bold;
}
.policy-aside__card {
border-top: 1px solid var(--line);
border-radius: 4px;
padding: 10px;
font-size: 0.84rem;
line-height: 1.55;
color: var(--ink);
padding-top: 20px;
margin-top: 10px;
}
.policy-aside__card p { margin: 0 0 8px; }
.policy-aside__card p:last-child { margin-bottom: 0; }
.policy-aside__card a { color: var(--brand); }
.policy-aside__card .muted { color: var(--ink-muted); }
.policy-aside__title {
display: flex;
align-items: center;
gap: 8px;
margin: 0 0 10px;
font-size: 0.98rem;
font-weight: 700;
}
.content-page p.clause,
.content-page p.clause--sub {
display: grid;
grid-template-columns: 4.2em minmax(0, 1fr);
gap: 0 6px;
margin: 0 0 12px;
}
.clause__n {
color: var(--ink-muted);
font-variant-numeric: tabular-nums;
font-size: 0.92em;
}
@media (max-width: 980px) {
.policy-page__grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 720px) {
.policy-page__head h1 { font-size: 1.35rem; }
.content-page p.clause,
.content-page p.clause--sub,
.policy-page__body h2.section-h { grid-template-columns: 3.6em minmax(0, 1fr); }
.policy-page__body h2 { font-size: 1.2rem; margin: 26px 0 12px; }
}
.content-page {
max-width: 900px;
margin: 0 auto;
background: var(--card);
border: 1px solid var(--line);
border-radius: 4px;
padding: 32px 36px;
font-size: 0.92rem;
line-height: 1.6;
color: var(--ink);
}
.content-page hr { margin: 22px 0px; border-top: 1px solid #ffffff; }
.content-page__head {
padding-bottom: 18px;
margin-bottom: 22px;
border-bottom: 1px solid var(--line);
}
.content-page__head h1 {
margin: 0 0 8px;
font-size: 1.7rem;
font-weight: 700;
}
.content-page__lead {
margin: 0;
color: var(--ink-muted);
font-size: 1rem;
}
.content-page section + section { margin-top: 22px; }
.content-page h2 {
font-size: 1.05rem;
font-weight: 700;
margin: 0 0 8px;
}
.content-page p { margin: 0 0 10px; }
.content-page ul {
margin: 0 0 10px;
padding-left: 20px;
}
.content-page li { margin-bottom: 0px; }
.content-page a { color: var(--brand); }
.content-page .muted { color: var(--ink-muted); }
.content-page table {
width: 100%;
border-collapse: collapse;
margin: 4px 0 14px;
}
.content-page th,
.content-page td {
border: 1px solid var(--line);
padding: 8px 12px;
text-align: left;
}
.content-page thead th {
background: var(--bg);
font-weight: 600;
}
.content-page ol {
margin: 0 0 10px;
padding-left: 20px;
}
.content-page h3 {
font-size: 0.95rem;
font-weight: 700;
margin: 18px 0 6px;
}
.content-page figure.guide-step {
margin: 10px 0 18px;
}
.content-page figure.guide-step img {
display: block;
max-width: 100%;
height: auto;
border: 1px solid var(--line);
border-radius: 4px;
}
.content-page figure.guide-step figcaption {
margin-top: 6px;
font-size: 0.8rem;
color: var(--ink-muted);
}
.content-page figure.guide-step--doc img {
max-width: 560px;
}
.content-page details.guide-acc {
border: 1px solid var(--line);
border-radius: 4px;
margin: 0 0 10px;
}
.content-page details.guide-acc summary {
cursor: pointer;
padding: 11px 38px 11px 14px;
font-weight: 700;
font-size: 0.95rem;
list-style: none;
position: relative;
}
.content-page details.guide-acc summary::-webkit-details-marker { display: none; }
.content-page details.guide-acc summary::after {
content: "";
position: absolute;
right: 16px;
top: 50%;
width: 8px;
height: 8px;
border-right: 2px solid var(--ink-muted);
border-bottom: 2px solid var(--ink-muted);
transform: translateY(-70%) rotate(45deg);
}
.content-page details.guide-acc[open] summary::after {
transform: translateY(-30%) rotate(225deg);
}
.content-page details.guide-acc .guide-acc__body {
padding: 0 14px 12px;
}
.content-page details.guide-acc .guide-acc__body > p:first-child {
margin-top: 0;
}
.content-page details.guide-acc .guide-acc__body figure.guide-step {
margin-bottom: 4px;
}
.track-info { margin: 18px auto 32px; }
.track-info details.guide-acc { border: 0; border-radius: 0; margin: 0; }
.track-info h2 { font-size: 1.05rem; margin: 0 0 12px; }
.track-info section + section { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.track-info ul { margin: 8px 0; padding-left: 20px; }
.track-info li { margin: 6px 0; }
.content-page .stock-note {
margin: 14px 0 16px;
padding: 12px 16px;
border: 1px solid var(--line);
border-radius: 4px;
background: var(--bg);
}
.content-page .stock-note__label {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 15px;
color: var(--ink);
}
.content-page .stock-note__label::before {
content: "";
width: 18px;
height: 18px;
flex: none;
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23008f35'/%3E%3Cpath d='M7.5 12.3l2.7 2.7L16 9' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.content-page .stock-note__msg { margin-top: 4px; }
@media (max-width: 720px) {
.content-page { padding: 20px 18px; font-size: 0.88rem; }
.content-page__head h1 { font-size: 1.3rem; }
}
.returns-glance {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;
}
.returns-glance__item {
border: 1px solid var(--line);
border-radius: 4px;
background: var(--bg);
padding: 16px 18px;
text-align: center;
}
.returns-glance__big {
color: var(--brand);
font-size: 1.2rem;
font-weight: 700;
margin-bottom: 4px;
}
.returns-glance__item p { margin: 0; color: var(--ink-muted); font-size: 0.83rem; }
.returns-steps { list-style: none; margin: 0 0 14px; padding: 0; }
.returns-steps__item {
display: flex;
gap: 16px;
padding: 16px 0;
border-bottom: 1px solid var(--line);
}
.returns-steps__item:first-child { padding-top: 6px; }
.returns-steps__item:last-child { border-bottom: 0; padding-bottom: 4px; }
.returns-steps__num {
flex: none;
width: 30px;
height: 30px;
border-radius: 50%;
background: var(--brand);
color: #fff;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
}
.returns-steps__body { flex: 1; min-width: 0; }
.content-page .returns-steps__body h3 { margin: 4px 0 6px; font-size: 0.98rem; }
.returns-steps__body p { margin: 0 0 8px; }
.content-page .returns-steps__body details.guide-acc { margin: 10px 0 0; }
@media (max-width: 720px) {
.returns-glance { grid-template-columns: 1fr; gap: 10px; }
.returns-glance__item { padding: 12px 14px; }
}
.about-page { max-width: 1000px; margin: 0 auto; }
.about-band {
display: grid;
grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
gap: 48px;
align-items: center;
background: var(--card);
border: 1px solid var(--line);
border-radius: 4px;
padding: 44px 48px;
}
.about-band + .about-band { margin-top: 20px; }
.about-band--flip .about-band__media { order: -1; }
.about-band__kicker {
margin: 0 0 6px;
color: var(--brand);
font-size: 0.78rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
}
.about-band__title {
margin: 0 0 12px;
font-size: 1.45rem;
font-weight: 700;
line-height: 1.25;
}
.about-band__text p { margin: 0 0 10px; font-size: 0.95rem; line-height: 1.65; }
.about-band__text p:last-child { margin-bottom: 0; }
.about-band__media { display: flex; justify-content: center; }
.about-band__media img { width: 100%; max-width: 320px; height: auto; }
.about-page__foot {
margin-top: 20px;
padding: 22px 48px;
background: var(--card);
border: 1px solid var(--line);
border-radius: 4px;
text-align: center;
font-size: 0.9rem;
}
.about-page__foot p { margin: 0 0 6px; }
.about-page__foot p:last-child { margin-bottom: 0; }
.about-page__foot a { color: var(--brand); }
.about-page__foot .muted { color: var(--ink-muted); font-size: 0.82rem; }
@media (max-width: 760px) {
.about-band {
grid-template-columns: 1fr;
gap: 24px;
padding: 26px 22px;
}
.about-band--flip .about-band__media { order: 0; }
.about-band__media img { max-width: 220px; }
.about-band__title { font-size: 1.2rem; }
.about-page__foot { padding: 20px 22px; }
}
.contact-grid {
display: grid;
grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
gap: 32px;
align-items: start;
}
@media (max-width: 720px) {
.contact-grid { grid-template-columns: 1fr; gap: 20px; }
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form__row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 14px;
}
@media (max-width: 540px) {
.contact-form__row { grid-template-columns: 1fr; }
}
.contact-form__field { display: flex; flex-direction: column; gap: 4px; }
.contact-form__field label { font-weight: 600; font-size: 0.88rem; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
width: 100%;
padding: 10px 12px;
border: 1px solid var(--line-strong);
border-radius: 4px;
font: inherit;
background: #fff;
}
.contact-form select { height: 42px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
outline: none;
border-color: var(--brand);
box-shadow: 0 0 0 3px rgba(21, 74, 141, 0.12);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form__actions {
display: flex;
align-items: center;
gap: 14px;
flex-wrap: wrap;
margin-top: 4px;
}
.contact-form__actions .btn--accent { padding: 10px 22px; }
.contact-form__actions .muted { font-size: 0.82rem; margin: 0; }
.contact-form__errors {
background: #fdecea;
border: 1px solid var(--accent-red);
border-radius: 4px;
padding: 10px 14px;
font-size: 0.88rem;
color: var(--accent-red);
}
.contact-form__errors ul { margin: 6px 0 0; padding-left: 20px; }
.contact-form__honeypot {
position: absolute;
left: -9999px;
width: 1px;
height: 1px;
overflow: hidden;
}
.contact-info {
background: var(--bg);
border: 1px solid var(--line);
border-radius: 4px;
padding: 20px 22px;
font-size: 0.92rem;
}
.contact-info h2 { margin: 0 0 12px; font-size: 1.05rem; }
.contact-info p { margin: 0 0 14px; }
.contact-info a { color: var(--brand); }
.admin-body {
--adm-ink: #1a1a1a;
--adm-muted: #666;
--adm-line: #d9d9d9;
--adm-line-soft: #e8e8e8;
--adm-line-strong: #bdbdbd;
--adm-navy: #112b4c;
--adm-navy-deep: #112b4c;
--adm-btn: #006dc4;
--adm-btn-dark: #005ba3;
--adm-accent: #154a8d;
--adm-accent-dark: #0f3a70;
--adm-accent-soft: #e8eef7;
--adm-link: #154a8d;
--adm-green: #1e8f3a;
--adm-panel: #f2f2f2;
--dash-blue: #154a8d;
--dash-green: #0db02b;
--dash-orange: #f59f00;
--dash-red: #e02b2b;
--adm-pink: var(--adm-accent);
--adm-pink-dark: var(--adm-accent-dark);
--adm-pink-soft: var(--adm-accent-soft);
--adm-shadow: none;
--adm-sidebar-w: 236px;
--adm-radius: 4px;
--adm-card-radius: 6px;
font: 13px/1.45 "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
background: #f3f4f6;
color: var(--adm-ink);
margin: 0;
}
.admin-body a { color: var(--adm-link); }
.admin-body .muted { color: var(--adm-muted); }
.adm-shell { min-height: 100vh; display: flex; flex-direction: column; }
.adm-top {
background: var(--adm-navy);
color: #fff;
display: flex;
align-items: center;
gap: 24px;
padding: 0 24px;
height: 64px;
}
.adm-top--bare { justify-content: center; }
.adm-top__brand {
display: flex;
align-items: center;
gap: 10px;
flex: 0 0 auto;
color: #fff !important;
}
.adm-top__brand:hover { text-decoration: none; }
.adm-top__logo { height: 30px; width: auto; display: block; }
.adm-top__badge {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .1em;
border: 1px solid rgba(255, 255, 255, .55);
border-radius: 3px;
padding: 2px 6px;
line-height: 1.2;
}
.adm-top__search {
position: relative;
flex: 1 1 auto;
max-width: 440px;
}
.adm-top__search input[type="search"] { border-radius: var(--adm-radius); }
.adm-top__search svg {
position: absolute;
left: 11px;
top: 50%;
transform: translateY(-50%);
color: var(--adm-muted);
pointer-events: none;
}
.adm-top__right {
margin-left: auto;
display: flex;
align-items: center;
gap: 22px;
height: 100%;
}
.adm-top__back {
display: inline-flex;
align-items: center;
gap: 7px;
color: #fff !important;
font-size: 13px;
font-weight: 700;
white-space: nowrap;
}
.adm-top__back:hover { text-decoration: underline; }
.adm-top__form { display: contents; }
.adm-top__item {
display: inline-flex;
flex-direction: column;
align-items: center;
gap: 3px;
color: #fff !important;
font-size: 11.5px;
font-weight: 700;
line-height: 1;
white-space: nowrap;
max-width: 120px;
}
.adm-top__item--btn {
background: transparent;
border: 0;
padding: 0;
font: inherit;
font-size: 11.5px;
font-weight: 700;
cursor: pointer;
}
.adm-top__item--btn:hover .adm-top__label { text-decoration: underline; }
.adm-top__label { overflow: hidden; text-overflow: ellipsis; max-width: 120px; }
.adm-top__menu {
display: none;
background: transparent;
border: 1px solid rgba(255, 255, 255, .5);
color: #fff;
padding: 6px 8px 4px;
cursor: pointer;
}
.adm-crumbs {
background: #fff;
border-bottom: 1px solid var(--adm-line);
padding: 0 24px;
height: 40px;
display: flex;
align-items: center;
gap: 10px;
font-size: 12.5px;
color: var(--adm-muted);
}
.adm-crumbs a { color: var(--adm-ink); }
.adm-crumbs__back { display: inline-flex; align-items: center; gap: 6px; }
.adm-crumbs__back svg { color: var(--adm-accent); }
.adm-crumbs__sep { color: var(--adm-line-strong); }
.adm-crumbs strong { color: var(--adm-ink); font-weight: 700; }
.adm-body {
flex: 1 1 auto;
display: grid;
grid-template-columns: var(--adm-sidebar-w) minmax(0, 1fr);
gap: 20px;
padding: 20px 24px 40px;
align-items: start;
}
.adm-side {
background: #fff;
border-radius: var(--adm-card-radius);
padding: 6px 0;
position: sticky;
top: 16px;
}
.adm-side__group {
list-style: none;
margin: 0;
padding: 6px 0;
border-top: 1px solid var(--adm-line-soft);
}
.adm-side__group:first-child { border-top: 0; }
.adm-side__heading {
padding: 6px 16px 3px;
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .09em;
color: #9a9a9a;
}
.adm-side__link {
display: flex;
align-items: center;
gap: 10px;
padding: 7px 16px 7px 13px;
border-left: 3px solid transparent;
color: var(--adm-ink) !important;
font-size: 13px;
font-weight: 400;
line-height: 1.3;
}
.adm-side__link svg { color: #555; flex: 0 0 auto; width: 16px; height: 16px; }
.adm-side__link:hover { background: #f5f5f5; text-decoration: none; }
.adm-side__link.is-active {
border-left-color: var(--adm-accent);
color: var(--adm-accent) !important;
font-weight: 500;
}
.adm-side__link.is-active svg { color: var(--adm-accent); }
.adm-side__scrim { display: none; }
.adm-main { min-width: 0; }
.adm-foot {
background: var(--adm-navy-deep);
color: #fff;
padding: 14px 24px;
display: flex;
justify-content: space-between;
align-items: baseline;
gap: 16px;
flex-wrap: wrap;
}
.adm-foot__tag {
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
}
.adm-foot__copy { font-size: 11.5px; color: #b7c6da; }
.admin-auth {
min-height: calc(100vh - 64px);
display: grid;
place-items: center;
align-content: center;
gap: 14px;
padding: 24px;
}
.admin-auth .admin-page {
background: #fff;
border-radius: var(--adm-card-radius);
padding: 22px 24px;
width: 100%;
}
.admin-page__head {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 16px;
flex-wrap: wrap;
}
.admin-page__action { font-size: 12.5px; font-weight: 700; }
.admin-page h1 {
margin: 0 0 14px;
font-size: 22px;
font-weight: 700;
letter-spacing: -.01em;
line-height: 1.2;
}
.admin-page__head h1 { margin-bottom: 6px; }
.admin-page > h1 + p.muted,
.admin-page__head + p.muted { margin-top: -6px; margin-bottom: 16px; max-width: 80ch; }
.admin-page h2 {
margin: 0 0 10px;
padding-bottom: 6px;
border-bottom: 1px solid var(--adm-line-soft);
font-size: 14px;
font-weight: 700;
color: var(--adm-ink);
}
.admin-page h3 { margin: 0 0 8px; font-size: 13.5px; font-weight: 700; }
@media (max-width: 940px) {
.adm-top { gap: 12px; padding: 0 14px; height: auto; min-height: 56px; flex-wrap: wrap; }
.adm-top__search { order: 3; flex: 1 1 100%; max-width: none; margin-bottom: 10px; }
.adm-top__back, .adm-top__item--user { display: none; }
.adm-top__menu { display: inline-flex; }
.adm-top__right { gap: 14px; }
.adm-crumbs { padding: 0 14px; }
.adm-body { grid-template-columns: minmax(0, 1fr); padding: 14px 14px 40px; }
.adm-side {
display: none;
position: fixed;
top: 0;
left: 0;
bottom: 0;
width: min(300px, 86vw);
z-index: 1001;
overflow-y: auto;
border: 0;
border-right: 1px solid var(--adm-line);
}
.nav-open .adm-side { display: block; }
.nav-open .adm-side__scrim {
display: block;
position: fixed;
inset: 0;
z-index: 1000;
background: rgba(0, 0, 0, .45);
border: 0;
padding: 0;
}
.adm-side__link { padding: 10px 16px 10px 13px; font-size: 14px; }
.admin-card__body--flush > .admin-table,
.desk-table-wrap > .admin-table { min-width: 720px; }
}
.admin-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 12px;
margin-bottom: 14px;
}
.admin-stat {
background: #fff;
border-radius: var(--adm-card-radius);
padding: 12px 14px;
box-shadow: var(--adm-shadow);
display: flex;
flex-direction: column;
gap: 4px;
}
.admin-stat--kpi {
flex-direction: row;
align-items: center;
gap: 14px;
}
.admin-stat__text {
display: flex;
flex-direction: column;
gap: 2px;
min-width: 0;
}
.admin-stat__icon {
flex: 0 0 auto;
width: 42px;
height: 42px;
border-radius: 4px;
display: inline-flex;
align-items: center;
justify-content: center;
background: var(--adm-accent-soft);
color: var(--adm-accent-dark);
}
.admin-stat__label { font-size: 11px; font-weight: 700; color: var(--adm-muted); text-transform: uppercase; letter-spacing: .06em; }
.admin-stat__value { font-size: 20px; font-weight: 700; line-height: 1.2; font-variant-numeric: tabular-nums; }
.admin-stat__sub   { font-size: 12px; color: var(--adm-muted); }
.admin-dash__heading { margin-top: 28px !important; }
.admin-cards {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 14px;
}
@media (max-width: 1100px) {
.admin-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
.admin-cards { grid-template-columns: minmax(0, 1fr); }
.admin-card--wide { grid-column: auto; }
}
.admin-card {
background: #fff;
border-radius: var(--adm-card-radius);
box-shadow: var(--adm-shadow);
overflow: hidden;
display: flex;
flex-direction: column;
margin-bottom: 14px;
}
.admin-cards .admin-card,
.dash-hero .admin-card,
.pm-col .admin-card { margin-bottom: 0; }
.admin-card--wide { grid-column: span 2; }
.admin-card--full { grid-column: 1 / -1; }
.admin-card__body { flex: 1 1 auto; }
.admin-card__head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 14px;
padding: 12px 16px 10px;
min-height: 42px;
border-bottom: 1px solid var(--adm-line-soft);
}
.admin-card__title { font-size: 14px; font-weight: 700; }
.admin-card__action { font-size: 12.5px; font-weight: 700; white-space: nowrap; color: var(--adm-link) !important; }
.admin-card__action:hover { text-decoration: underline; }
.admin-card__head .muted { color: var(--adm-muted); font-size: 12.5px; }
.admin-card__head form { margin: 0; }
.admin-card__body { padding: 14px 16px; }
.admin-card--fold { position: relative; }
.admin-card--fold > summary {
list-style: none;
cursor: pointer;
padding-right: 44px;
user-select: none;
}
.admin-card--fold > summary::-webkit-details-marker { display: none; }
.admin-card--fold > summary::after {
content: "";
position: absolute;
right: 18px;
top: 17px;
width: 8px;
height: 8px;
border-right: 2px solid var(--adm-muted);
border-bottom: 2px solid var(--adm-muted);
transform: rotate(-45deg);
transition: transform .15s ease;
}
.admin-card--fold[open] > summary::after { transform: rotate(45deg); top: 14px; }
.admin-card--fold:not([open]) > summary { border-bottom: 0; }
.admin-card--fold > summary:hover { background: #fafbfc; }
.admin-card__tools {
position: absolute;
top: 6px;
right: 44px;
display: flex;
align-items: center;
gap: 10px;
font-size: 12.5px;
}
.admin-card__tools form { margin: 0; }
.admin-card__tools .btn { padding: 5px 10px; font-size: 12.5px; }
.admin-card__body--flush { padding: 0; overflow-x: auto; }
.admin-card__blurb { font-size: 12.5px; margin: 0 0 12px; }
.admin-list {
list-style: none;
margin: 0;
padding: 0;
}
.admin-list__row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 8px 14px;
border-bottom: 1px solid var(--adm-line-soft);
}
.admin-list li:last-child .admin-list__row { border-bottom: 0; }
.admin-list__row:hover { background: #f5f5f5; text-decoration: none; }
.admin-list__label {
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .04em;
color: var(--adm-link);
}
.admin-list__value {
font-weight: 700;
font-variant-numeric: tabular-nums;
color: var(--adm-ink);
}
.admin-banner {
display: block;
border-radius: 0;
padding: 10px 14px;
font-size: 13px;
font-weight: 600;
}
.admin-banner + .admin-banner { margin-top: 10px; }
.admin-banner--ok    { background: #ecf7ee; color: #1d6b33 !important; border: 1px solid #c4e7cb; }
.admin-banner--alert { background: #fdecea; color: #8a2b1f !important; border: 1px solid #f4c9c2; }
.admin-banner--info  { background: #eef3fa; color: var(--adm-link) !important; border: 1px solid #d4e2f0; }
a.admin-banner:hover { text-decoration: none; filter: brightness(.98); }
.admin-chart {
display: flex;
align-items: flex-end;
gap: 3px;
height: 120px;
}
.admin-chart__col {
flex: 1 1 0;
display: flex;
flex-direction: column;
justify-content: flex-end;
height: 100%;
}
.admin-chart__bar {
background: #b9cbe2;
border-radius: 0;
}
.admin-chart__bar--now  { background: var(--adm-accent); }
.admin-chart__bar--past { background: #e2e2e2; }
.admin-chart__bar--over { background: #c0392b; }
.admin-chart__axis {
display: flex;
justify-content: space-between;
font-size: 11px;
color: var(--adm-muted);
margin-top: 4px;
}
.admin-progress-figure {
display: flex;
align-items: baseline;
gap: 10px;
margin-bottom: 8px;
}
.admin-progress-figure__value { font-size: 24px; font-weight: 700; }
.admin-progress-figure__label { font-size: 13px; color: var(--adm-muted); }
.admin-progress {
height: 8px;
background: #ececec;
border-radius: 0;
overflow: hidden;
}
.admin-progress__fill {
height: 100%;
background: var(--adm-pink);
}
.admin-section {
background: #fff;
border-radius: var(--adm-card-radius);
padding: 14px 16px;
margin-bottom: 14px;
box-shadow: var(--adm-shadow);
}
.admin-section__head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 14px;
flex-wrap: wrap;
margin: 0 0 14px;
padding: 0 0 10px;
min-height: 32px;
border-bottom: 1px solid var(--adm-line-soft);
}
.admin-section > .admin-section__head { margin: -14px -16px 14px; padding: 12px 16px 10px; }
.admin-section__head h2,
.admin-section__head h3 {
margin: 0;
padding: 0;
border: 0;
font-size: 14px;
font-weight: 700;
color: var(--adm-ink);
}
.admin-section__head .muted { color: var(--adm-muted); font-size: 12.5px; }
.admin-section__head a { color: var(--adm-link); font-weight: 700; font-size: 12.5px; }
.admin-section__head .btn.link { color: var(--adm-link) !important; }
.admin-section__head h1 {
margin: 0;
font-size: 18px;
font-weight: 700;
letter-spacing: 0;
}
.admin-section__head form { margin: 0; }
.admin-filters {
display: inline-flex;
flex-wrap: wrap;
gap: 2px;
padding: 3px;
background: var(--adm-panel);
border-radius: 999px;
margin-bottom: 14px;
}
.admin-filters a {
padding: 5px 12px;
border-radius: 999px;
font-size: 12.5px;
font-weight: 600;
color: var(--adm-muted) !important;
line-height: 1.3;
white-space: nowrap;
}
.admin-filters a:hover { color: var(--adm-ink) !important; text-decoration: none; }
.admin-filters a.is-active {
background: #fff;
color: var(--adm-ink) !important;
box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}
form.admin-filters {
display: flex;
align-items: center;
gap: 16px;
padding: 0;
background: transparent;
border-radius: 0;
font-size: 12.5px;
font-weight: 600;
}
form.admin-filters label { display: inline-flex; align-items: center; gap: 6px; }
.admin-search {
display: flex;
gap: 8px;
margin-bottom: 14px;
align-items: center;
}
.admin-search input[type="text"],
.admin-search input[type="search"] {
flex: 1;
max-width: 320px;
padding: 7px 10px;
border: 1px solid var(--adm-line-strong);
border-radius: var(--adm-radius);
font: inherit;
background: #fff;
}
.admin-search input[type="text"]:focus,
.admin-search input[type="search"]:focus {
outline: 2px solid var(--adm-accent);
outline-offset: -1px;
border-color: var(--adm-accent);
}
.admin-search button {
background: var(--adm-accent);
color: #fff;
border: 0;
border-radius: var(--adm-radius);
padding: 8px 16px;
font: inherit;
font-size: 13px;
font-weight: 700;
cursor: pointer;
}
.admin-search button:hover { background: var(--adm-accent-dark); }
.desk-tabs {
display: inline-flex;
flex-wrap: wrap;
gap: 2px;
padding: 3px;
background: var(--adm-panel);
border-radius: 999px;
margin-bottom: 14px;
}
.desk-tab {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 5px 12px;
border-radius: 999px;
font-size: 12.5px;
font-weight: 600;
color: var(--adm-muted) !important;
line-height: 1.3;
white-space: nowrap;
}
.desk-tab:hover { color: var(--adm-ink) !important; text-decoration: none; }
.desk-tab.is-active {
background: #fff;
color: var(--adm-ink) !important;
box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}
.desk-tab__count {
font-size: 11.5px;
font-weight: 600;
color: var(--adm-muted);
font-variant-numeric: tabular-nums;
}
.desk-tab.is-active .desk-tab__count { color: var(--adm-accent); }
.desk-list__head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
flex-wrap: wrap;
}
.desk-list .desk-list__head h1 { margin: 0 0 14px; font-size: 18px; }
.desk-list__head .muted { font-weight: 600; }
.desk-search {
position: relative;
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 14px;
}
.desk-search svg {
position: absolute;
left: 13px;
color: var(--adm-muted);
pointer-events: none;
}
.desk-search input[type="text"],
.desk-search input[type="search"] {
flex: 1;
width: 100%;
padding: 8px 12px 8px 36px;
border: 1px solid var(--adm-line-strong);
border-radius: var(--adm-radius);
font: inherit;
background: #fff;
}
.desk-search input[type="text"]:focus,
.desk-search input[type="search"]:focus {
outline: 2px solid var(--adm-accent);
outline-offset: -1px;
border-color: var(--adm-accent);
}
.desk-search__clear { font-size: 12.5px; font-weight: 700; white-space: nowrap; }
.desk-pill {
display: inline-flex;
align-items: center;
gap: 6px;
border-radius: 3px;
padding: 3px 8px;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .04em;
color: #fff;
white-space: nowrap;
}
.desk-pill::before {
content: "";
width: 6px;
height: 6px;
border-radius: 50%;
background: rgba(255, 255, 255, .9);
}
.desk-pill--paid                  { background: var(--adm-green); }
.desk-pill--pending               { background: #e8710a; }
.desk-pill--awaiting-verification { background: #d6249f; }
.desk-pill--failed                { background: #c53030; }
.desk-pill--cancelled             { background: #5f6b7a; }
.desk-pill--expired               { background: #8a93a2; }
.desk-chip {
display: inline-flex;
align-items: center;
gap: 6px;
background: var(--adm-accent-soft);
color: var(--adm-link);
border-radius: 3px;
padding: 2px 8px;
font-size: 11.5px;
font-weight: 700;
white-space: nowrap;
}
.desk-chip::before {
content: "";
width: 6px;
height: 6px;
border-radius: 50%;
background: currentColor;
}
.desk-chip--ok    { background: #e7f8ea; color: #0c8a24; }
.desk-chip--muted { background: #efefef; color: var(--adm-muted); }
.desk-ref {
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
font-size: 12.5px;
white-space: nowrap;
}
.desk-table-wrap { overflow-x: auto; }
.desk-table td { padding: 9px 10px; vertical-align: middle; }
.desk-chip--warn { background: #fff4e0; color: #a86a00; }
.kr-blurb {
font-size: 13px;
color: var(--adm-muted);
max-width: 68ch;
margin: 0 0 16px;
}
.kr-sub {
font-size: 12px;
color: var(--adm-muted);
margin-top: 3px;
}
.kr-nowrap { white-space: nowrap; }
.kr-table td { vertical-align: top; padding: 10px 10px; }
.kr-table .kr-col-action { text-align: right; width: 1%; white-space: nowrap; }
.kr-items {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 7px;
min-width: 260px;
}
.kr-item {
display: flex;
align-items: baseline;
gap: 9px;
font-size: 13px;
line-height: 1.4;
}
.kr-item__qty {
flex: 0 0 auto;
min-width: 32px;
text-align: right;
font-variant-numeric: tabular-nums;
font-weight: 700;
color: var(--adm-ink);
}
.kr-item__body { min-width: 0; }
.kr-item__code {
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
font-weight: 600;
}
.kr-item__desc { color: var(--adm-muted); }
.kr-item__desc::before { content: " — "; }
.kr-mark {
display: inline-flex;
gap: 6px;
align-items: center;
justify-content: flex-end;
}
.admin-body .kr-mark__ref {
width: 150px;
font-size: 13px;
padding: 6px 9px;
}
.kr-unmark { display: inline; }
.kr-empty {
padding: 44px 22px;
text-align: center;
}
.kr-empty__title {
margin: 0 0 6px;
font-size: 15px;
font-weight: 700;
}
.kr-empty__body {
margin: 0;
font-size: 13px;
color: var(--adm-muted);
}
@media (max-width: 860px) {
.kr-table thead { display: none; }
.kr-table, .kr-table tbody, .kr-table tr, .kr-table td { display: block; width: auto; }
.kr-table tr {
border-bottom: 1px solid var(--adm-line);
padding: 6px 0;
}
.kr-table td { border-bottom: 0; padding: 6px 14px; }
.kr-table .kr-col-action { text-align: left; width: auto; padding-top: 10px; }
.kr-mark { justify-content: flex-start; }
.admin-body .kr-mark__ref { flex: 1 1 auto; width: auto; }
}
.admin-table {
width: 100%;
border-collapse: collapse;
font-size: 13px;
}
.admin-table th,
.admin-table td {
padding: 9px 12px;
text-align: left;
border-bottom: 1px solid var(--adm-line-soft);
vertical-align: top;
}
.admin-table th {
font-weight: 700;
color: var(--adm-ink);
font-size: 12.5px;
border-bottom: 1px solid var(--adm-line);
white-space: nowrap;
}
.admin-table tbody tr:hover td { background: #f6f8fb; }
.admin-table td.num,
.admin-table th.num { text-align: right; font-variant-numeric: tabular-nums; }
.admin-table tr:last-child td { border-bottom: 0; }
.admin-kv {
width: 100%;
border-collapse: collapse;
font-size: 13px;
}
.admin-kv th {
text-align: left;
font-weight: 700;
color: var(--adm-ink);
width: 30%;
padding: 7px 12px 7px 0;
border-bottom: 1px solid var(--adm-line-soft);
vertical-align: top;
}
.admin-kv td { padding: 7px 0; border-bottom: 1px solid var(--adm-line-soft); vertical-align: top; }
.admin-kv tr:last-child th, .admin-kv tr:last-child td { border-bottom: 0; }
.gpc-picker { position: relative; display: inline-block; }
.gpc-picker__results {
position: absolute;
z-index: 30;
top: 100%;
left: 0;
min-width: 420px;
max-width: 620px;
max-height: 320px;
overflow-y: auto;
background: #fff;
border: 1px solid var(--adm-line);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.gpc-picker__option {
display: block;
width: 100%;
text-align: left;
padding: 7px 10px;
border: 0;
border-bottom: 1px solid var(--adm-line-soft);
background: none;
cursor: pointer;
font: inherit;
font-size: 13px;
line-height: 1.35;
}
.gpc-picker__option:last-child { border-bottom: 0; }
.gpc-picker__option:hover,
.gpc-picker__option:focus { background: #eef3fa; }
.gpc-picker__id { color: var(--adm-muted); }
.gpc-picker__none,
.gpc-picker__more {
padding: 7px 10px;
color: var(--adm-muted);
font-size: 12px;
}
.admin-body .flash {
padding: 10px 14px;
border-radius: var(--adm-radius);
font-size: 13px;
font-weight: 600;
margin-bottom: 14px;
}
.admin-body .flash.notice { background: #ecf7ee; color: #1d6b33; border-left: 4px solid #1e8f3a; }
.admin-body .flash.alert  { background: #fdecea; color: #8a2b1f; border-left: 4px solid #c0392b; }
.admin-body .btn,
.admin-body .btn.secondary,
.admin-body .btn--accent {
background: var(--adm-btn);
border: none;
border-radius: var(--adm-radius);
padding: 8px 10px;
font-size: 14px;
font-weight: 700;
line-height: 1.3;
color: #ffffff !important;
}
.admin-body .btn:hover,
.admin-body .btn.secondary:hover,
.admin-body .btn--accent:hover { background: var(--adm-btn-dark); }
.admin-body .btn-outline {
border: 1px solid var(--adm-accent);
border-radius: var(--adm-radius);
background: #fff;
padding: 6px 12px;
font-size: 12.5px;
color: var(--adm-accent) !important;
font-weight: 700;
line-height: 1.3;
}
.admin-body .btn-outline:hover { background: var(--adm-accent-soft); text-decoration: none; }
.admin-body .btn.link { background: transparent; border: 0; color: var(--adm-link) !important; padding: 0; font-size: 13px; }
.admin-body .btn.link:hover { background: transparent; text-decoration: underline !important; }
.admin-body .btn.danger { background: #b00020; }
.admin-body .btn.danger:hover { background: #8a0019; }
.admin-body .btn--accent { background: var(--adm-accent); border-color: var(--adm-accent); color: #fff !important; }
.admin-body .btn--accent:hover { background: var(--adm-accent-dark); }
.admin-body .btn--success { background: var(--adm-green); color: #fff !important; }
.admin-body .btn--success:hover { background: #17722e; }
.admin-body .field label { font-size: 12px; color: var(--adm-ink); }
.admin-body .field label strong { font-weight: 700; }
.admin-body input[type="text"],
.admin-body input[type="number"],
.admin-body input[type="email"],
.admin-body input[type="password"],
.admin-body input[type="date"],
.admin-body input[type="datetime-local"],
.admin-body input[type="url"],
.admin-body input[type="search"],
.admin-body input[type="tel"],
.admin-body select,
.admin-body textarea {
padding: 8px 10px;
border: 1px solid var(--adm-line-strong);
border-radius: var(--adm-radius);
font: inherit;
font-size: 13px;
background: #fff;
color: var(--adm-ink);
transition: border-color .12s ease;
}
.admin-body input[type="text"]:hover,
.admin-body input[type="number"]:hover,
.admin-body input[type="email"]:hover,
.admin-body input[type="url"]:hover,
.admin-body input[type="search"]:hover,
.admin-body input[type="tel"]:hover,
.admin-body select:hover,
.admin-body textarea:hover { border-color: #9c9c9c; }
.admin-body ::placeholder { color: #9a9a9a; }
.admin-body .adm-top__search input[type="search"] {
width: 100%;
padding: 8px 12px 8px 34px;
border: 0;
font-size: 13px;
}
.admin-body .desk-search input[type="text"],
.admin-body .desk-search input[type="search"] { padding: 8px 12px 8px 36px; }
.admin-body input[type="text"]:focus,
.admin-body input[type="number"]:focus,
.admin-body input[type="email"]:focus,
.admin-body input[type="password"]:focus,
.admin-body input[type="date"]:focus,
.admin-body input[type="datetime-local"]:focus,
.admin-body input[type="url"]:focus,
.admin-body input[type="search"]:focus,
.admin-body input[type="tel"]:focus,
.admin-body select:focus,
.admin-body textarea:focus {
outline: 2px solid var(--adm-accent);
outline-offset: -1px;
border-color: var(--adm-accent);
}
.admin-body .pager a, .admin-body .pager span {
border: 1px solid var(--adm-line-strong);
border-radius: var(--adm-radius);
font-size: 12.5px;
}
.admin-body .pager a:hover { border-color: var(--adm-accent); color: var(--adm-accent); }
.admin-body .pager .current { background: var(--adm-accent); border-color: var(--adm-accent); color: #fff; }
.admin-body .card {
border: 0;
border-radius: var(--adm-card-radius);
box-shadow: var(--adm-shadow);
}
.admin-body .status-badge {
font-size: 11px;
border-radius: 3px;
padding: 2px 8px;
letter-spacing: .05em;
}
.admin-body .field {
display: flex;
flex-direction: column;
gap: 4px;
margin-bottom: 12px;
}
.admin-body .field > label {
font-size: 12px;
font-weight: 700;
color: var(--adm-ink);
}
.admin-body .field textarea { resize: vertical; }
.pm-field-row {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 0 16px;
}
.pm-thumb {
width: 44px;
height: 44px;
border-radius: 0;
border: 1px solid var(--adm-line);
background: #fff;
object-fit: contain;
display: block;
}
.pm-thumb--empty {
display: flex;
align-items: center;
justify-content: center;
color: var(--adm-line-strong);
}
.pm-cell-product { min-width: 220px; max-width: 420px; }
.pm-cell-product a { font-weight: 600; color: var(--adm-ink); }
.pm-cell-product a:hover { color: var(--adm-accent-dark); text-decoration: none; }
.pm-cell-sub {
font-size: 12px;
color: var(--adm-muted);
margin-top: 1px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 380px;
}
.pm-pager {
display: flex;
align-items: center;
justify-content: space-between;
gap: 14px;
padding: 10px 16px;
border-top: 1px solid var(--adm-line-soft);
font-size: 12.5px;
color: var(--adm-muted);
}
.pm-pager__links { display: flex; gap: 8px; }
.pm-pager__links a,
.pm-pager__links span {
border: 1px solid var(--adm-accent);
border-radius: var(--adm-radius);
padding: 5px 12px;
font-weight: 700;
font-size: 12.5px;
color: var(--adm-accent) !important;
background: #fff;
}
.pm-pager__links a:hover { background: var(--adm-accent-soft); text-decoration: none; }
.pm-pager__links span.is-disabled { opacity: .4; border-color: var(--adm-line-strong); color: var(--adm-muted) !important; }
.pm-back {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 13px;
font-weight: 600;
margin-bottom: 10px;
}
.pm-head {
display: flex;
align-items: flex-start;
gap: 16px;
flex-wrap: wrap;
margin-bottom: 18px;
}
.pm-head__thumb {
width: 64px;
height: 64px;
border-radius: 0;
border: 1px solid var(--adm-line);
background: #fff;
object-fit: contain;
}
.pm-head__body { flex: 1 1 320px; min-width: 0; }
.pm-head__body h1 { margin: 0 0 4px !important; }
.pm-head__meta {
font-size: 13px;
color: var(--adm-muted);
display: flex;
flex-wrap: wrap;
gap: 4px 14px;
}
.pm-head__meta code {
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
font-size: 12.5px;
background: var(--adm-line-soft);
border-radius: 2px;
padding: 1px 6px;
}
.pm-head__badges { display: flex; gap: 6px; flex-wrap: wrap; margin: 8px 0 0; }
.pm-head__actions {
display: flex;
gap: 8px 18px;
align-items: center;
flex-wrap: wrap;
}
.pm-grid {
display: grid;
grid-template-columns: minmax(0, 1fr) 360px;
gap: 16px;
align-items: start;
}
@media (max-width: 1150px) {
.pm-grid { grid-template-columns: minmax(0, 1fr); }
}
.pm-col { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.pm-lock-note {
display: flex;
gap: 8px;
align-items: flex-start;
font-size: 12px;
color: var(--adm-muted);
background: var(--adm-panel);
border-radius: var(--adm-radius);
padding: 8px 10px;
margin: 0 0 12px;
}
.pm-lock-note svg { flex: 0 0 auto; margin-top: 1px; }
.char-count { font-size: 12px; color: var(--adm-muted); }
.char-count.is-over { color: #c53030; font-weight: 600; }
.serp-preview {
border: 1px solid var(--adm-line);
border-radius: 0;
background: #fff;
padding: 14px 16px;
margin-bottom: 14px;
}
.serp-preview__url {
font-size: 12px;
color: #1c6b30;
margin-bottom: 2px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.serp-preview__title {
font-size: 17px;
line-height: 1.3;
color: #1a0dab;
margin: 0 0 3px;
font-weight: 400;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.serp-preview__desc {
font-size: 13px;
color: #4d5156;
margin: 0;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.pm-gallery {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.pm-gallery img {
width: 74px;
height: 74px;
object-fit: contain;
border: 1px solid var(--adm-line);
border-radius: 0;
background: #fff;
}
.pm-avail {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 10px;
margin-bottom: 14px;
}
.pm-avail__cell {
background: var(--adm-panel);
border-radius: var(--adm-radius);
padding: 8px 10px;
}
.pm-avail__label {
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .05em;
color: var(--adm-muted);
}
.pm-avail__value { font-size: 16px; font-weight: 700; }
.pm-avail__sub { font-size: 11.5px; color: var(--adm-muted); }
.pm-spec td { border-bottom: 1px solid var(--adm-line-soft); }
.pm-spec td:first-child {
background: var(--adm-panel);
width: 40%;
font-weight: 700;
}
.dash-hero {
display: grid;
grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
gap: 16px;
margin-bottom: 20px;
}
@media (max-width: 1100px) {
.dash-hero { grid-template-columns: minmax(0, 1fr); }
}
.dash-kpis {
display: grid;
grid-template-columns: repeat(6, minmax(0, 1fr));
gap: 12px 0;
margin: 0 0 20px;
}
.dash-kpi { padding: 2px 12px; border-left: 1px solid var(--adm-line-soft); min-width: 0; }
.dash-kpi:first-child { padding-left: 0; border-left: 0; }
@media (max-width: 1280px) {
.dash-kpis { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.dash-kpi:nth-child(4) { padding-left: 0; border-left: 0; }
}
.dash-kpi__label { font-size: 12.5px; color: var(--adm-muted); margin-bottom: 2px; white-space: nowrap; }
.dash-kpi__value { font-size: 20px; font-weight: 700; letter-spacing: -.01em; line-height: 1.15; font-variant-numeric: tabular-nums; }
.dash-kpi__delta { display: block; font-size: 12px; font-weight: 600; margin-top: 3px; }
.dash-kpi__delta--up   { color: var(--dash-green); }
.dash-kpi__delta--down { color: var(--dash-red); }
.dash-kpi__delta--flat { color: var(--adm-muted); }
.dash-range { font-size: 12px; font-weight: 400; color: var(--adm-muted); }
.dash-range strong { color: var(--adm-ink); }
.dash-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.dash-seg {
display: inline-flex;
padding: 3px;
background: var(--adm-panel);
border-radius: 999px;
}
.dash-seg__opt {
padding: 4px 11px;
border-radius: 999px;
font-size: 12px;
font-weight: 600;
color: var(--adm-muted) !important;
line-height: 1.3;
}
.dash-seg__opt:hover { color: var(--adm-ink) !important; text-decoration: none; }
.dash-seg__opt.is-active {
background: #fff;
color: var(--adm-ink) !important;
box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}
.dash-charts {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 24px;
}
.dash-chart { min-width: 0; }
.dash-chart__head {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 10px;
margin-bottom: 10px;
}
.dash-chart__total { font-size: 12.5px; font-weight: 700; white-space: nowrap; }
.dash-chart__total .muted { font-weight: 400; }
.dash-chart--revenue { --chart-color: #ff8100; }
.dash-chart--orders  { --chart-color: #2e9e4f; }
.dash-chart__title {
display: flex;
align-items: center;
gap: 7px;
margin: 0;
font-size: 12.5px;
font-weight: 600;
color: var(--adm-ink);
}
.dash-chart__swatch {
width: 10px;
height: 10px;
border-radius: 2px;
background: var(--chart-color);
}
.dash-bars {
position: relative;
display: flex;
align-items: flex-end;
gap: 8px;
height: 118px;
}
.dash-bars::after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: 18px;
border-top: 1px solid var(--adm-line);
}
.dash-bars--dense { gap: 2px; }
.dash-bars__col {
flex: 1 1 0;
min-width: 0;
height: 100%;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
gap: 4px;
position: relative;
}
.dash-bars__value { font-size: 11px; font-weight: 600; white-space: nowrap; color: var(--adm-muted); min-height: 14px; }
.dash-bars__track {
width: 100%;
flex: 1 1 auto;
display: flex;
align-items: flex-end;
}
.dash-bars__bar {
width: 100%;
background: var(--chart-color);
border-radius: 3px 3px 0 0;
transition: opacity .12s ease;
}
.dash-bars__col:hover .dash-bars__bar { opacity: .75; }
.dash-bars__day {
font-size: 11px;
color: var(--adm-muted);
white-space: nowrap;
height: 14px;
line-height: 14px;
}
.dash-bars--dense .dash-bars__day { visibility: hidden; }
.dash-bars--dense .dash-bars__day.is-tick { visibility: visible; }
.dash-alert {
display: inline-flex;
align-items: center;
gap: 8px;
margin-top: 18px;
padding: 8px 12px;
border-radius: var(--adm-card-radius);
background: #fdecea;
font-size: 12.5px;
font-weight: 600;
color: #b3261e;
}
.dash-note {
background: var(--adm-panel);
padding: 9px 14px;
font-size: 12.5px;
text-align: center;
margin-bottom: 16px;
}
.dash-mini {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 20px 8px;
}
.dash-mini__cell {
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
text-align: center;
text-decoration: none !important;
}
.dash-mini__num { font-size: 22px; font-weight: 700; line-height: 1.1; }
.dash-mini__label { font-size: 12px; color: var(--adm-muted); }
.dash-mini--blue   .dash-mini__num, .dash-mini--blue   svg { color: #555; }
.dash-mini--orange .dash-mini__num, .dash-mini--orange svg { color: var(--dash-orange); }
.dash-mini--red    .dash-mini__num, .dash-mini--red    svg { color: var(--dash-red); }
.dash-mini--green  .dash-mini__num, .dash-mini--green  svg { color: var(--dash-green); }
.dash-mini--grey   .dash-mini__num, .dash-mini--grey   svg { color: #6b6b6b; }
a.dash-mini__cell:hover .dash-mini__label { color: var(--adm-ink); }
.admin-dash .admin-card__action,
.admin-dash .dash-foot a,
.admin-dash .admin-table a,
.admin-dash .admin-list__label {
color: #555 !important;
font-weight: 500;
text-transform: none;
letter-spacing: 0;
}
.admin-dash .admin-card__action:hover,
.admin-dash .dash-foot a:hover,
.admin-dash .admin-table a:hover { color: var(--adm-ink) !important; text-decoration: underline; }
.admin-dash .admin-list__row:hover .admin-list__label { color: var(--adm-ink) !important; }
.admin-dash .admin-list__value { font-weight: 600; }
.admin-dash .dash-seg__opt.is-active { color: var(--adm-ink) !important; }
.dash-foot {
margin-top: 18px;
padding-top: 12px;
border-top: 1px solid var(--adm-line-soft);
font-size: 12.5px;
color: var(--adm-muted);
}
.xero-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1100px) { .xero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.xero-stat__org { font-size: 16px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.xero-stat__bad { color: var(--dash-red); }
.xero-stats .btn.link { font-size: 12px; font-weight: 700; }
.xero-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
gap: 14px;
align-items: start;
}
.xero-grid .admin-card { margin-bottom: 0; }
.xero-map th {
width: 46%;
font-weight: 600;
line-height: 1.3;
vertical-align: middle;
padding: 8px 14px;
}
.xero-map td { padding: 6px 14px; vertical-align: middle; }
.xero-map td select { width: 100%; }
.xero-map__hint { display: block; font-size: 11.5px; font-weight: 400; margin-top: 1px; }
.xero-actions { display: flex; align-items: center; gap: 14px; margin-top: 14px; font-size: 12.5px; }
.pay-bar {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
flex-wrap: wrap;
margin-bottom: 12px;
font-size: 12.5px;
}
.pay-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 14px;
}
.pay-section { min-width: 0; }
.pay-section__title {
margin: 0 0 6px !important;
font-size: 11px !important;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .06em;
color: var(--adm-muted);
}
.pay-kv th { width: 42%; }
.pay-kv td { word-break: break-word; }
.pay-code {
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
font-size: 12px;
background: var(--adm-panel);
padding: 1px 5px;
border-radius: 3px;
}
.pay-flag {
display: inline-block;
padding: 2px 8px;
border-radius: 3px;
font-weight: 600;
line-height: 1.4;
}
.pay-flag--good { background: #e7f8ea; color: #0c7a20; }
.pay-flag--warn { background: #fff4e0; color: #8a5a00; }
.pay-flag--bad  { background: #fdecea; color: #8a1c12; }
.pay-raw { margin-top: 14px; font-size: 12px; }
.pay-raw summary { cursor: pointer; font-weight: 600; color: var(--adm-link); }
.pay-raw pre {
margin: 8px 0 0;
padding: 10px 12px;
background: var(--adm-panel);
border-radius: var(--adm-radius);
font-size: 11.5px;
line-height: 1.45;
max-height: 420px;
overflow: auto;
white-space: pre-wrap;
word-break: break-word;
}
.pm-ok-note,
.pm-bad-note {
border-radius: var(--adm-radius);
padding: 11px 14px;
font-size: 13px;
font-weight: 600;
margin: 0 0 14px;
display: flex;
gap: 8px;
align-items: flex-start;
}
.pm-ok-note  { background: #e9f9ec; border-left: 4px solid var(--dash-green); color: #0c7a20; }
.pm-bad-note { background: #fdecea; border-left: 4px solid var(--dash-red); color: #8a1c12; }
.order-items tfoot td {
border-top: 1px solid var(--adm-line);
border-bottom: 0;
padding-top: 9px;
padding-bottom: 9px;
}
.order-items tfoot tr + tr td { border-top: 1px solid var(--adm-line-soft); }
.order-items tfoot .order-items__label { text-align: right; color: var(--adm-muted); font-weight: 600; }
.order-items tfoot tr:last-child td { font-size: 14px; font-weight: 700; color: var(--adm-ink); }
.floating-cart {
position: fixed;
left: 0;
right: 0;
top: 0;
z-index: 50;
background: #fff;
border-bottom: 1px solid var(--line);
box-shadow: 0px 0px 24px 0px rgba(0,0,0,0.29);
padding: 10px 16px;
transform: translateY(-110%);
transition: transform 0.22s ease-out;
padding-top: calc(10px + env(safe-area-inset-top, 0px));
}
.floating-cart.is-visible { transform: translateY(0); }
.floating-cart__inner {
display: flex;
align-items: center;
gap: 14px;
max-width: 1200px;
margin: 0 auto;
}
.floating-cart__thumb {
flex: 0 0 48px;
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
background: var(--bg);
border-radius: 4px;
overflow: hidden;
}
.floating-cart__thumb img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.floating-cart__info {
flex: 1;
min-width: 0;
}
.floating-cart__name {
font-weight: 600;
font-size: 0.95rem;
color: var(--ink);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.floating-cart__price {
font-size: 0.85rem;
color: var(--ink-muted);
margin-top: 2px;
}
.floating-cart__form {
display: flex;
align-items: center;
gap: 8px;
margin: 0;
}
.floating-cart__form .qty-stepper--split {
width: auto;
flex: 0 0 auto;
}
.floating-cart__form .qty-stepper--split .qty-stepper__btn,
.floating-cart__form .qty-stepper--split .qty-stepper__input {
flex: 0 0 auto;
height: 40px;
width: 40px;
}
.floating-cart__form .qty-stepper--split .qty-stepper__input { width: 56px; }
.floating-cart__submit {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 0 14px;
height: 40px;
font-size: 0.92rem;
font-weight: 600;
border: 0;
border-radius: 4px;
cursor: pointer;
white-space: nowrap;
}
@media (max-width: 720px) {
.floating-cart { padding: calc(8px + env(safe-area-inset-top, 0px)) 12px 8px; }
.floating-cart__inner { gap: 8px; }
.floating-cart__thumb { display: none; }
.floating-cart__name { font-size: 0.88rem; }
.floating-cart__price { font-size: 0.78rem; }
.floating-cart__submit span { display: none; }
.floating-cart__submit { padding: 0 12px; }
}
@media (prefers-reduced-motion: reduce) {
.floating-cart { transition: none; }
}
.category-hero {
background: var(--card);
border: 1px solid var(--line);
border-radius: 8px;
padding: 22px 22px;
margin: 0 0 18px;
}
.category-hero__inner {
display: flex;
align-items: center;
gap: 24px;
}
.category-hero__image {
flex: 0 0 140px;
width: 140px;
height: 140px;
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.category-hero__image img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.category-hero__body { flex: 1; min-width: 0; }
.category-hero__title {
margin: 0 0 6px;
font-family: "Barlow Condensed", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 2rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.01em;
line-height: 1.1;
color: var(--ink);
}
.category-hero__count {
margin: 0;
color: var(--ink-muted);
font-size: 0.95rem;
}
.category-hero__brand {
margin-top: 10px;
max-height: 36px;
}
.category-hero__brand img {
max-height: 36px;
width: auto;
object-fit: contain;
}
@media (max-width: 720px) {
.category-hero { padding: 16px 14px; }
.category-hero__inner { gap: 14px; }
.category-hero__image { flex: 0 0 90px; width: 90px; height: 90px; }
.category-hero__title { font-size: 1.5rem; }
}
.brand-search-block {
margin: 26px 0;
}
.brand-search-block__panel {
max-width: 720px;
position: relative;
}
.brand-search-block__picker { position: relative; }
.brand-search-block__picker input,
.brand-search-block__form {
width: 100%;
border: 1px solid var(--line-strong);
border-radius: 8px;
background: var(--card);
}
.brand-search-block__picker input {
padding: 14px 16px;
font: inherit;
font-size: 1.02rem;
outline: none;
}
.brand-search-block__picker input:focus,
.brand-search-block__form:focus-within {
border-color: var(--brand);
box-shadow: 0 0 0 3px rgba(21, 74, 141, 0.15);
}
.brand-search-block__list {
position: absolute;
top: calc(100% + 6px);
left: 0;
right: 0;
z-index: 40;
background: var(--card);
border: 1px solid var(--line-strong);
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
overflow: hidden;
}
.brand-search-block__suggestion {
display: block;
width: 100%;
text-align: left;
background: transparent;
border: 0;
padding: 10px 16px;
font: inherit;
font-size: 0.95rem;
cursor: pointer;
}
.brand-search-block__suggestion:hover { background: var(--bg); color: var(--brand); }
.brand-search-block__suggestion + .brand-search-block__suggestion { border-top: 1px solid var(--line); }
.brand-search-block__none {
padding: 10px 16px;
color: var(--ink-muted);
font-size: 0.9rem;
}
.brand-search-block__form {
display: flex;
align-items: center;
gap: 8px;
padding: 6px;
position: relative;
}
.brand-search-block__logo {
flex: 0 0 auto;
height: 30px;
max-width: 96px;
object-fit: contain;
margin-left: 6px;
}
.brand-search-block__chip {
display: inline-flex;
align-items: center;
gap: 7px;
flex: 0 0 auto;
background: #112b4c;
color: #fff;
border: 0;
border-radius: 999px;
padding: 8px 14px;
font: inherit;
font-size: 0.9rem;
font-weight: 600;
cursor: pointer;
}
.brand-search-block__chip:hover { background: var(--brand); }
.brand-search-block__chip-x { opacity: 0.75; }
.brand-search-block__form input[type="text"] {
flex: 1;
min-width: 0;
border: 0;
outline: none;
background: transparent;
font: inherit;
font-size: 1.02rem;
padding: 8px 6px;
}
.brand-search-block__submit {
display: inline-flex;
align-items: center;
gap: 6px;
background: var(--brand);
color: #fff;
border: 0;
border-radius: 6px;
padding: 10px 18px;
font: inherit;
font-size: 0.95rem;
font-weight: 600;
cursor: pointer;
transition: background 0.12s;
}
.brand-search-block__submit:hover { background: var(--brand-dark); }
.brand-search-block__all {
display: inline-block;
margin-top: 10px;
font-size: 0.9rem;
color: var(--brand) !important;
}
.brand-hero {
background: var(--card);
border: 1px solid var(--line);
border-radius: 8px;
padding: 22px;
margin: 0 0 18px;
}
.brand-hero__top {
display: flex;
align-items: center;
gap: 24px;
margin-bottom: 18px;
}
.brand-hero__logo {
flex: 0 0 auto;
max-width: 220px;
}
.brand-hero__logo img {
display: block;
max-width: 100%;
max-height: 84px;
object-fit: contain;
}
.brand-hero__body { flex: 1; min-width: 0; }
.brand-hero__title {
margin: 0 0 4px;
font-family: "Barlow Condensed", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 2rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.01em;
line-height: 1.1;
color: var(--ink);
}
.brand-hero__count {
margin: 0;
color: var(--ink-muted);
font-size: 0.92rem;
}
.brand-hero__search {
display: flex;
max-width: 720px;
}
.brand-hero__search:focus-within {
border-color: var(--brand);
box-shadow: 0 0 0 3px rgba(21, 74, 141, 0.15);
}
.brand-hero__search input[type="text"] {
flex: 1;
border: 0;
padding: 8px 12px;
font: inherit;
outline: none;
color: var(--ink);
font-size: 0.9rem;
border: 1px solid var(--line-strong);
}
.brand-hero__search button {
background: var(--brand);
color: #fff;
border: 0;
padding: 0 18px;
cursor: pointer;
display: inline-flex;
align-items: center;
}
.brand-hero__search button:hover { background: var(--brand-dark); }
@media (max-width: 720px) {
.brand-hero { padding: 16px 14px; }
.brand-hero__top { gap: 14px; margin-bottom: 14px; }
.brand-hero__logo { max-width: 120px; }
.brand-hero__logo img { max-height: 56px; }
.brand-hero__title { font-size: 1.5rem; }
}
.product-table-wrap {
width: 100%;
overflow-x: auto;
background: var(--card);
border: 1px solid var(--line);
border-radius: 8px;
}
.product-table {
--product-col-w: 320px;
--qty-col-w:     220px;
width: 100%;
border-collapse: collapse;
font-size: 0.9rem;
}
.product-table thead th {
background: var(--bg);
color: var(--ink);
font-weight: 700;
font-size: 0.82rem;
text-transform: uppercase;
letter-spacing: 0.02em;
text-align: left;
padding: 12px 14px;
border-bottom: 1px solid var(--line);
white-space: nowrap;
vertical-align: top;
}
.product-table tbody td {
padding: 14px;
border-bottom: 1px solid var(--line);
vertical-align: top;
white-space: nowrap;
}
.product-table tbody tr:last-child td { border-bottom: 0; }
.product-table tbody tr:hover td { background: var(--bg); }
.product-table__col-product,
.product-table__product {
position: sticky;
left: 0;
z-index: 1;
background: var(--card);
width:     var(--product-col-w);
min-width: var(--product-col-w);
max-width: var(--product-col-w);
}
.product-table__col-qty,
.product-table__qty-cell {
position: sticky;
left: var(--product-col-w);
z-index: 1;
background: var(--card);
width:     var(--qty-col-w);
min-width: var(--qty-col-w);
max-width: var(--qty-col-w);
box-shadow: 6px 0 8px -6px rgba(0, 0, 0, 0.18);
}
.product-table thead th.product-table__col-product,
.product-table thead th.product-table__col-qty {
z-index: 2;
background: var(--bg);
}
.product-table tbody tr:hover .product-table__product,
.product-table tbody tr:hover .product-table__qty-cell {
background: var(--bg);
}
.product-table__col-price { width: 150px; }
.product-table__product-inner {
display: flex;
align-items: flex-start;
gap: 14px;
}
.product-table__thumb {
flex: 0 0 72px;
width: 72px;
height: 72px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 6px;
overflow: hidden;
}
.product-table__thumb img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.product-table__info {
min-width: 0;
display: flex;
flex-direction: column;
gap: 2px;
white-space: normal;
}
.product-table__brand {
font-size: 0.78rem;
color: var(--ink-muted);
text-transform: uppercase;
letter-spacing: 0.04em;
}
.product-table__sku {
font-weight: 700;
color: var(--ink);
font-size: 0.92rem;
}
.product-table__sku a { color: inherit; }
.product-table__sku a:hover { color: var(--brand); text-decoration: underline; }
.product-table__name a {
color: var(--ink);
font-size: 0.92rem;
line-height: 1.35;
}
.product-table__name a:hover { color: var(--brand); text-decoration: underline; }
.product-table__qty-cell { vertical-align: middle; }
.product-table__add-form {
display: flex;
align-items: center;
gap: 8px;
margin: 0;
}
.product-table__add-form .qty-stepper--split {
width: auto;
flex: 0 0 auto;
}
.product-table__add-form .qty-stepper--split .qty-stepper__btn,
.product-table__add-form .qty-stepper--split .qty-stepper__input {
flex: 0 0 auto;
height: 38px;
width: 38px;
}
.product-table__add-form .qty-stepper--split .qty-stepper__input { width: 56px; }
.product-table__add-btn {
display: inline-flex;
align-items: center;
justify-content: center;
height: 38px;
width: 44px;
padding: 0;
border: 0;
border-radius: 4px;
cursor: pointer;
}
.product-table__price strong { font-size: 1rem; color: var(--ink); }
.product-table__price .muted { font-size: 0.76rem; }
@media (max-width: 720px) {
.product-table {
--product-col-w: 220px;
--qty-col-w:     180px;
}
.product-table__col-product,
.product-table__product,
.product-table__col-qty,
.product-table__qty-cell {
position: static;
box-shadow: none;
}
}
.product-card__link {
display: flex;
flex-direction: column;
gap: 8px;
flex: 1;
}
.card-stock { margin-top: 8px; }
.card-stock__label {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 0.8rem;
color: var(--ink);
}
.card-stock__label svg { flex: none; }
.card-stock__msg {
margin-top: 2px;
font-size: 0.74rem;
line-height: 1.35;
color: var(--ink-muted);
}
.product-card__add-form { margin-top: 2px; }
.product-card__add-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
width: 100%;
padding: 9px 12px;
background-color: #ff8100;
color: #fff !important;
}
.product-card__add-btn:hover { background-color: #0c2038; }
.product-card__add-btn:disabled {
background: var(--line);
color: var(--ink-muted) !important;
cursor: not-allowed;
}
.recently-viewed__link {
display: flex;
flex-direction: column;
flex: 1;
color: inherit;
text-decoration: none;
}
.card-stock-frame { display: contents; }
.recently-viewed__card .product-card__add-form { margin-top: 8px; }
.recently-viewed__card .card-stock-check { margin-top: 8px; }
.recently-viewed__card .view-stock-btn { font-size: 0.82rem; }
.recently-viewed__card .product-card__add-btn {
padding: 7px 10px;
font-size: 0.82rem;
}
.error-page {
max-width: 560px;
margin: 64px auto;
padding: 0 20px;
text-align: center;
}
.error-page__code {
margin: 0;
font-size: clamp(4rem, 16vw, 7rem);
font-weight: 800;
line-height: 1;
letter-spacing: -0.03em;
color: var(--brand);
}
.error-page__title {
margin: 8px 0 0;
font-size: clamp(1.5rem, 5vw, 2rem);
font-weight: 700;
color: var(--ink);
}
.error-page__lead {
margin: 12px auto 0;
max-width: 44ch;
color: var(--ink-muted);
font-size: 1.05rem;
}
.error-page__search {
display: flex;
align-items: center;
gap: 6px;
margin: 28px auto 0;
max-width: 480px;
background: var(--card);
border: 1px solid var(--line-strong);
border-radius: 8px;
padding: 6px;
box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.error-page__search:focus-within {
border-color: var(--brand);
box-shadow: 0 0 0 3px rgba(21,74,141,0.15);
}
.error-page__search input[type="text"] {
flex: 1;
border: 0;
outline: none;
background: transparent;
font-size: 1rem;
padding: 10px 12px;
color: var(--ink);
}
.error-page__actions {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
margin: 24px 0 0;
}
.error-page__help {
margin: 28px 0 0;
color: var(--ink-muted);
font-size: 0.95rem;
}
.error-page__help a {
color: var(--brand);
font-weight: 600;
}
.checkout-payment .field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.checkout-payment .field label { font-weight: 600; font-size: 0.85rem; }
.checkout-payment .field-row { display: flex; gap: 12px; }
.checkout-payment .field-row .field { flex: 1; }
.checkout-payment input[type="text"] {
padding: 9px 10px;
border: 1px solid var(--line-strong);
border-radius: 4px;
font: inherit;
background: #fff;
}
.checkout-payment input[type="text"]:focus {
outline: none;
border-color: var(--brand);
box-shadow: 0 0 0 3px rgba(21, 74, 141, 0.12);
}
.wp-field {
height: 40px;
padding: 0 10px;
border: 1px solid var(--line-strong);
border-radius: 4px;
background: #fff;
display: flex;
align-items: center;
}
.wp-field iframe { width: 100%; height: 100%; border: 0; }
.wp-field.is-onfocus, .wp-field.is-focused {
border-color: var(--brand);
box-shadow: 0 0 0 3px rgba(21, 74, 141, 0.12);
}
.wp-field.is-invalid, .wp-field.is-empty.is-touched { border-color: var(--accent-red); }
.worldpay-status { margin-top: 12px; min-height: 1.2em; }
.wp-card {
background: var(--brand);
border-radius: 16px;
padding: 20px 24px 24px;
max-width: 440px;
color: #fff;
box-shadow: 0 12px 28px rgba(12, 14, 46, 0.35);
}
.wp-card__brands {
display: flex;
justify-content: flex-end;
align-items: center;
gap: 12px;
min-height: 24px;
}
.wp-card__visa { font-style: italic; font-weight: 800; letter-spacing: 0.04em; font-size: 1.05rem; }
.wp-card__amex {
background: #2e77bc;
color: #fff;
font-size: 0.6rem;
font-weight: 700;
letter-spacing: 0.08em;
padding: 4px 5px;
border-radius: 3px;
}
.wp-card__mc { display: block; }
.wp-card__chip { display: block; margin: 4px 0 14px; color: rgba(255, 255, 255, 0.85); }
.wp-card .field { margin-bottom: 14px; }
.wp-card .field label {
color: #fff;
font-size: 0.68rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.wp-card .wp-field {
background: transparent;
border: 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.45);
border-radius: 0;
padding: 0;
height: 38px;
}
.wp-card .wp-field.is-onfocus, .wp-card .wp-field.is-focused {
border-color: #fff;
box-shadow: none;
}
.wp-card .wp-field.is-invalid, .wp-card .wp-field.is-empty.is-touched { border-color: #ff8a80; }
.wp-fieldwrap { position: relative; }
.wp-ph {
position: absolute;
inset: 0;
display: flex;
align-items: center;
color: rgba(255, 255, 255, 0.65);
font-size: 16px;
pointer-events: none;
transition: opacity 120ms;
}
.wp-ph--pan { font-size: 18px; letter-spacing: 0.08em; }
.wp-field.is-onfocus + .wp-ph,
.wp-field.is-valid + .wp-ph,
.wp-field.is-invalid + .wp-ph { opacity: 0; }
.wp-field.is-empty + .wp-ph { opacity: 1; }
.wp-card__row { display: flex; gap: 28px; }
.wp-card__expiry { flex: 0 0 110px; }
.wp-card__cvc { flex: 0 0 80px; }
.wp-card__holder { margin-bottom: 0; }
.wp-card input[type="text"] {
background: transparent;
border: 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.45);
border-radius: 0;
color: #fff;
padding: 8px 0;
font-size: 1rem;
}
.wp-card input[type="text"]:focus {
outline: none;
border-color: #fff;
box-shadow: none;
}
.wp-card input[type="text"]::placeholder { color: rgba(255, 255, 255, 0.65); }
.wp-card-actions { display: flex; gap: 12px; margin-top: 18px; }
.wp-card-actions .btn { flex: 1; }
.wp-3ds-overlay {
position: fixed;
inset: 0;
background: rgba(10, 20, 40, 0.6);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
}
.wp-3ds-panel {
background: #fff;
border-radius: 8px;
padding: 12px;
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.wp-3ds-frame { border: 0; display: block; max-width: 100%; }
@media (max-width: 480px) {
.wp-card { padding: 16px 18px 20px; }
.wp-card__row { gap: 18px; }
}
.home-block { margin: 26px 0; }
.home-block--heading { margin-bottom: 10px; }
.home-block--heading .section-heading { margin-bottom: 2px; }
.home-block__subtitle { color: var(--muted, #5f6b7a); margin: 4px 0 0; }
.home-block--columns {
display: grid;
grid-template-columns: repeat(var(--home-block-cols, 2), 1fr);
gap: 18px;
align-items: start;
}
@media (max-width: 720px) {
.home-block--columns { grid-template-columns: 1fr; }
}
.home-block__col > :first-child { margin-top: 0; }
.home-block__col > :last-child { margin-bottom: 0; }
.home-block__col img { max-width: 100%; height: auto; }
.home-block--html img { max-width: 100%; height: auto; }
.home-block--banner img {
display: block;
width: 100%;
height: auto;
border-radius: 10px;
}
.hb-inline-grip { letter-spacing: -1px; color: var(--adm-muted); }
.hb-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 8px;
}
.hb-item {
border: 1px solid var(--adm-line);
border-radius: 8px;
background: #fff;
}
.hb-item--dragging { opacity: 0.45; }
.hb-item--hidden { background: #fafbfc; }
.hb-item--hidden .hb-item__label,
.hb-item--hidden .hb-item__summary { color: var(--adm-muted); }
.hb-item__row {
display: flex;
align-items: center;
gap: 12px;
padding: 10px 14px;
}
.hb-item__handle {
display: inline-flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
flex: 0 0 auto;
border-radius: 6px;
color: var(--adm-muted);
cursor: grab;
touch-action: none;
}
.hb-item__handle:hover { background: var(--adm-line-soft); color: var(--adm-ink); }
.hb-item__handle:active { cursor: grabbing; }
.hb-item__meta {
display: flex;
flex-direction: column;
gap: 2px;
min-width: 0;
flex: 1;
}
.hb-item__label { font-weight: 600; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hb-item__summary {
color: var(--adm-muted);
font-size: 0.82rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.hb-item__builtin,
.hb-item__hidden-badge {
font-size: 0.68rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.04em;
padding: 2px 7px;
border-radius: 999px;
background: var(--adm-line-soft);
color: var(--adm-muted);
}
.hb-item__hidden-badge { background: #fdeaea; color: #9c2b2b; }
.hb-item__actions { display: flex; gap: 8px; flex: 0 0 auto; }
.hb-item__actions form { display: inline; }
.hb-item__editor { border-top: 1px solid var(--adm-line-soft); }
.hb-item__editor summary {
padding: 8px 14px;
cursor: pointer;
font-size: 0.85rem;
color: var(--adm-accent);
user-select: none;
}
.hb-item__editor summary:hover { background: var(--adm-line-soft); }
.hb-item__form { padding: 4px 14px 16px; }
.hb-form__field { margin-bottom: 12px; }
.hb-form__field label { display: block; margin-bottom: 4px; }
.hb-form__field input[type="text"],
.hb-form__field input[type="number"],
.hb-form__field select,
.hb-form__field textarea { width: 100%; max-width: 640px; }
.hb-form__field--narrow input,
.hb-form__field--narrow select { max-width: 120px; }
.hb-form__cols { display: flex; flex-wrap: wrap; gap: 14px; }
.hb-form__cols > .hb-form__field { flex: 1; min-width: 220px; }
.hb-form__cols--stack { flex-direction: column; gap: 0; }
.hb-form__code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.82rem; }
.hb-form__hint { display: block; font-size: 0.8rem; margin-top: 4px; }
.hb-palette {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 10px;
}
.hb-palette__item {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 4px;
text-align: left;
width: 100%;
padding: 12px 14px;
border: 1px dashed var(--adm-line);
border-radius: 8px;
background: #fff;
cursor: pointer;
}
.hb-palette__item:hover { border-color: var(--adm-accent); background: var(--adm-accent-soft); }
.hb-palette__name { font-weight: 600; color: var(--adm-ink); }
.hb-palette__desc { font-size: 0.8rem; color: var(--adm-muted); }
.search-suggest {
position: absolute;
top: calc(100% + 6px);
left: 0;
right: 0;
background: var(--card);
border: 1px solid var(--line-strong);
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.18);
max-height: 480px;
overflow-y: auto;
z-index: 1000;
text-align: left;
}
.search-suggest__heading {
padding: 10px 14px 4px;
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--ink-muted);
}
.search-suggest__group + .search-suggest__group { border-top: 1px solid var(--line); }
.search-suggest__item {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 14px;
font-size: 0.9rem;
color: var(--ink);
}
.search-suggest__item:hover,
.search-suggest__item.is-active {
background: var(--bg);
text-decoration: none;
}
.search-suggest__thumb {
flex: 0 0 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--line);
border-radius: 6px;
background: #fff;
color: var(--ink-muted);
overflow: hidden;
}
.search-suggest__thumb img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.search-suggest__body {
flex: 1;
min-width: 0;
display: flex;
flex-direction: column;
}
.search-suggest__name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-weight: 600;
}
.search-suggest__meta {
font-size: 0.78rem;
color: var(--ink-muted);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.search-suggest__price {
flex: 0 0 auto;
font-weight: 700;
font-size: 0.88rem;
}
.search-suggest__count {
flex: 0 0 auto;
font-size: 0.78rem;
color: var(--ink-muted);
}
.search-suggest__all {
border-top: 1px solid var(--line);
justify-content: center;
font-weight: 600;
color: var(--brand);
}
.mf-panel {
--mf-blue: var(--brand);
background: var(--card);
border-radius: 4px;
padding: 18px 22px 20px;
margin-bottom: 16px;
}
.mf-panel__title {
display: flex;
align-items: center;
gap: 8px;
margin: 0 0 12px;
font-size: 1.15rem;
font-weight: 700;
}
.mf-info {
display: inline-flex;
color: var(--mf-blue);
cursor: help;
}
.mf-info svg { width: 16px; height: 16px; }
.mf-panel__head {
display: flex;
align-items: baseline;
gap: 10px;
margin-bottom: 12px;
flex-wrap: wrap;
}
.mf-panel__head h2 {
margin: 0;
font-size: 1.15rem;
font-weight: 700;
}
.mf-panel__count { font-size: 0.78rem; color: var(--ink-muted); font-weight: 500; }
.mf-hero {
--mf-blue: var(--brand);
position: relative;
overflow: hidden;
background: var(--brand-darker);
color: #fff;
margin-top: calc(-1 * var(--main-pad-y));
margin-bottom: 14px;
padding: 30px 0 30px;
}
.flash + .mf-hero, .flash + div > .mf-hero { margin-top: 0; }
.mf-hero::before {
content: "";
position: absolute;
right: -40px;
top: -20px;
width: 620px;
height: 440px;
background: url("/bptractor.png") no-repeat right top / contain;
opacity: 0.09;
filter: invert(1) brightness(2);
pointer-events: none;
}
.mf-hero__inner { position: relative; max-width: 1440px; }
.mf-hero__title {
margin: 0 0 8px;
font-family: "Barlow Condensed", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 2.8rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.01em;
line-height: 1.05;
color: #fff;
}
.mf-hero__subtitle {
display: flex;
align-items: center;
gap: 8px;
margin: 0 0 20px;
font-size: 1.02rem;
color: #c8d4e6;
}
.mf-info--light { color: #8fb3e0; }
.mf-hero__card {
background: var(--card);
border: 1px solid var(--line-strong);
border-radius: 8px;
padding: 8px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
max-width: 1120px;
}
.mf-common { margin-bottom: 18px; }
.mf-common__grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.mf-common .brand-card {
padding: 14px 12px 12px;
border: 0;
border-radius: 4px;
background: transparent;
box-shadow: none;
}
.mf-common .brand-card:hover { background: var(--card); box-shadow: none; transform: none; }
.mf-common .brand-card:hover .brand-card__name { text-decoration: underline; }
.mf-common .brand-card__logo { height: 56px; }
.brand-card__mark {
display: inline-flex;
align-items: center;
justify-content: center;
width: 52px;
height: 52px;
border-radius: 50%;
background: var(--bg);
color: var(--brand-darker);
font-family: "Barlow Condensed", "Barlow", sans-serif;
font-size: 1.35rem;
font-weight: 800;
letter-spacing: 0.02em;
}
.mf-form--steps { gap: 8px; }
.mf-form--steps .mf-field { flex: 1 1 200px; }
.mf-form--steps .mf-field--grow { flex: 1.3 1 240px; }
.mf-form--steps .mf-field__label { left: 46px; }
.mf-form--steps .mf-field__control {
height: 50px;
padding-left: 52px;
border-color: var(--line-strong);
font-size: 0.95rem;
}
.mf-field__step {
position: absolute;
left: 1px;
top: 1px;
bottom: 1px;
width: 40px;
display: flex;
align-items: center;
justify-content: center;
border-right: 1px solid var(--line);
border-radius: 4px 0 0 4px;
background: var(--bg);
font-size: 0.82rem;
font-weight: 700;
color: var(--ink-muted);
pointer-events: none;
z-index: 1;
}
.mf-form--steps .mf-view {
height: 50px;
padding: 0 30px;
font-size: 1rem;
background: #ff8100;
color: var(--ink);
align-self: stretch;
}
.mf-form--steps .mf-view:hover { background: #e57300; }
.mf-actions {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 14px;
margin-bottom: 18px;
}
.mf-action {
--mf-blue: var(--brand);
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 8px;
padding: 18px 20px 20px;
background: var(--card);
border-radius: 4px;
border: 1px solid var(--line);
}
.mf-action__title {
display: flex;
align-items: center;
gap: 8px;
margin: 0;
font-size: 0.92rem;
font-weight: 700;
}
.mf-action__title svg { width: 18px; height: 18px; color: var(--mf-blue); }
.mf-action__text { margin: 0; font-size: 0.84rem; color: var(--ink-muted); line-height: 1.45; }
.mf-action__btn {
margin-top: auto;
color: var(--brand) !important;
font-size: 0.9rem;
font-weight: 600;
text-decoration: none !important;
}
.mf-action__btn::after { content: " \2192"; }
.mf-action__btn:hover { text-decoration: underline !important; }
.mf-action .mf-recent__list { font-size: 0.86rem; gap: 6px; }
.mf-quick {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
margin-bottom: 14px;
font-size: 0.84rem;
}
.mf-quick__label { color: var(--ink-muted); margin-right: 4px; }
.mf-quick__link {
display: inline-flex;
align-items: center;
height: 30px;
padding: 0 12px;
border: 1px solid var(--line-strong);
border-radius: 4px;
background: #fff;
color: var(--ink) !important;
font-size: 0.84rem;
font-weight: 600;
text-decoration: none !important;
white-space: nowrap;
transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.mf-quick__link:hover { border-color: var(--mf-blue); color: var(--mf-blue) !important; }
.mf-form {
display: flex;
align-items: stretch;
gap: 10px;
flex-wrap: wrap;
}
.mf-field {
position: relative;
display: flex;
flex-direction: column;
flex: 0 1 220px;
min-width: 170px;
}
.mf-field--grow { flex: 1 1 240px; }
.mf-field__label {
position: absolute;
top: -7px;
left: 9px;
padding: 0 4px;
background: var(--card);
font-size: 0.66rem;
font-weight: 600;
color: var(--ink-muted);
z-index: 1;
}
.mf-field__control {
height: 40px;
padding: 0 12px;
border: 1px solid var(--line);
border-radius: 4px;
background: #fff;
font: inherit;
font-size: 0.86rem;
color: var(--ink);
width: 100%;
}
.mf-field__control:focus {
outline: none;
border-color: var(--mf-blue);
box-shadow: 0 0 0 3px rgba(21, 74, 141, 0.15);
}
.mf-field__control:disabled {
background: var(--bg);
color: var(--ink-muted);
cursor: not-allowed;
}
.mf-view {
height: 40px;
padding: 0 24px;
border: 0;
border-radius: 4px;
background: var(--mf-blue);
color: #fff;
font: inherit;
font-size: 0.86rem;
font-weight: 600;
cursor: pointer;
align-self: flex-end;
}
.mf-view:hover { background: var(--brand-darker); }
.mf-recent { margin-top: 14px; }
.mf-recent__label {
display: flex;
align-items: center;
gap: 6px;
font-size: 0.8rem;
font-weight: 600;
color: var(--ink);
}
.mf-recent__label svg { width: 14px; height: 14px; }
.mf-recent__list {
list-style: none;
margin: 6px 0 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 4px;
font-size: 0.82rem;
}
.mf-recent__list a {
color: var(--mf-blue);
text-decoration: none;
}
.mf-recent__list a:hover { text-decoration: underline; }
.mf-notice {
margin: 0 0 16px;
padding: 10px 14px;
background: var(--bg);
border-radius: 4px;
font-size: 0.84rem;
color: var(--ink-muted);
}
.mf-filter {
position: relative;
display: block;
margin-bottom: 6px;
color: var(--ink-muted);
}
.mf-filter__input {
width: 100%;
padding: 8px 110px 8px 12px;
border: 1px solid var(--line);
border-radius: 4px;
background: var(--bg);
color: var(--ink);
font: inherit;
font-size: 0.84rem;
}
.mf-filter__input::placeholder { color: #9a9a9a; }
.mf-filter__input:focus {
outline: none;
border-color: var(--mf-blue);
box-shadow: 0 0 0 3px rgba(21, 74, 141, 0.15);
}
.mf-filter svg {
position: absolute;
right: 11px;
top: 50%;
width: 16px;
height: 16px;
transform: translateY(-50%);
pointer-events: none;
}
.mf-filter__hits {
position: absolute;
right: 34px;
top: 50%;
transform: translateY(-50%);
font-size: 0.72rem;
font-weight: 600;
color: var(--mf-blue);
pointer-events: none;
}
.mf-table {
width: 100%;
border-collapse: collapse;
font-size: 0.8rem;
table-layout: fixed;
}
.mf-table td,
.mf-table th {
padding: 7px 8px;
vertical-align: middle;
line-height: 1.35;
text-align: left;
}
.mf-table thead th {
padding-bottom: 6px;
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--ink-muted);
}
.mf-group__label th {
padding: 12px 8px 3px;
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--ink-muted);
}
.mf-row__name { width: 34%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mf-row__type { width: 18%; }
.mf-row__num  { color: var(--ink-muted); white-space: nowrap; }
.mf-row__see  { width: 110px; text-align: right; }
.mf-table--makes .mf-row__name { width: 40%; }
.mf-table--models .mf-row__see { text-align: right; }
.mf-row__link {
color: var(--ink) !important;
font-weight: 600;
text-decoration: none;
}
.mf-row__link:hover { text-decoration: underline; }
.mf-row__thumb {
width: 44px;
height: 32px;
object-fit: contain;
vertical-align: middle;
margin-right: 8px;
border-radius: 4px;
background: #fff;
}
.mf-row__thumb--logo { width: 40px; height: 24px; }
.mf-row__see-link {
color: var(--mf-blue) !important;
font-weight: 500;
text-decoration: underline;
text-underline-offset: 2px;
white-space: nowrap;
}
.mf-row:hover td { background: var(--bg); }
.mf-row td:first-child { border-radius: 4px 0 0 4px; }
.mf-row td:last-child  { border-radius: 0 4px 4px 0; }
.mf-panel--bare { background: transparent; padding: 0; }
.mf-panel--bare .mf-panel__head { margin-bottom: 10px; }
.mf-panel--bare .mf-details th { background: #ececec; }
.mf-details {
width: 100%;
border-collapse: collapse;
font-size: 0.82rem;
table-layout: fixed;
}
.mf-details th,
.mf-details td {
padding: 8px 12px;
text-align: left;
vertical-align: middle;
line-height: 1.4;
border-bottom: 1px solid var(--line);
}
.mf-details th {
width: 38%;
max-width: 240px;
font-weight: 500;
color: var(--ink-muted);
background: var(--bg);
}
.mf-details tr:last-child th,
.mf-details tr:last-child td { border-bottom: 0; }
.mf-details td {
display: flex;
align-items: center;
gap: 12px;
background: var(--card);
}
.mf-details__make {
color: var(--ink) !important;
font-weight: 600;
text-decoration: none !important;
}
.mf-details__make:hover { text-decoration: underline !important; }
.mf-details__counts { flex: 1 1 auto; display: flex; align-items: center; min-height: 22px; }
.mf-details__logo { max-height: 22px; max-width: 80px; object-fit: contain; }
.mf-details__see {
color: var(--mf-blue) !important;
font-weight: 500;
text-decoration: underline;
text-underline-offset: 2px;
white-space: nowrap;
}
.mf-make {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
margin: 4px 0 18px;
}
.mf-make__body { flex: 1 1 auto; min-width: 0; }
.mf-make__title {
margin: 0 0 4px;
font-family: "Barlow Condensed", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 2.1rem;
font-weight: 800;
text-transform: uppercase;
line-height: 1.05;
}
.mf-make__logo {
flex: 0 0 auto;
display: flex;
align-items: center;
justify-content: flex-end;
max-width: 200px;
height: 84px;
}
.mf-make__logo img { max-width: 200px; max-height: 84px; object-fit: contain; }
.brand-card__mark--lg { width: 64px; height: 64px; font-size: 1.7rem; }
.mf-fitment {
--fitment-bg: #eef0f3;
--fitment-blue: #046ec5;
margin: 0 calc(50% - 50vw) 24px;
padding: 22px calc(50vw - 50%) 24px;
background: var(--fitment-bg);
}
.mf-fitment > * { max-width: 100%; }
.mf-fitment h2 {
font-size: 0.95rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
color: var(--ink);
margin: 0 0 4px;
}
.mf-fitment__table .fitment-row__model { width: 46%; }
.mf-fitment__table .fitment-row__type  { width: auto; }
.mf-back { margin: 2px 0 14px; }
.mf-back__link {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 0.88rem;
font-weight: 500;
color: var(--mf-blue, var(--brand)) !important;
text-decoration: none !important;
}
.mf-back__link:hover { text-decoration: underline !important; text-underline-offset: 2px; }
.mf-back__link svg { width: 16px; height: 16px; }
.mf-parts-group { padding: 6px 0 4px; }
.mf-parts-group__label {
margin: 6px 0 8px;
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--ink-muted);
}
.mf-part-item { display: flex; flex-direction: column; gap: 6px; }
.mf-part-item[hidden] { display: none; }
.mf-part-item > .product-card { flex: 1 1 auto; }
.mf-part-item__fit {
display: flex;
align-items: baseline;
gap: 8px;
flex-wrap: wrap;
margin: 0;
padding: 0 2px;
font-size: 0.74rem;
color: var(--ink-muted);
line-height: 1.4;
}
.mf-part-item__note { flex: 1 1 100%; }
.mf-empty { color: var(--ink-muted); font-size: 0.84rem; }
.mf-dev-note {
--mf-dev-note-blue: #046ec5;
display: flex;
align-items: center;
gap: 12px;
margin: 4px 0 18px;
background: #fff;
color: var(--ink);
font-size: 0.86rem;
line-height: 1.45;
}
.mf-dev-note__icon {
flex: 0 0 auto;
width: 26px;
height: 26px;
border-radius: 50%;
background: var(--mf-dev-note-blue);
color: #fff;
font-weight: 800;
font-size: 1.05rem;
line-height: 26px;
text-align: center;
}
.mf-dev-note__text { margin: 0; }
.mf-dev-note__text a { color: var(--mf-dev-note-blue); font-weight: 600; text-decoration: underline; }
.mf-dev-note__text a:hover { color: #03528f; }
@media (max-width: 720px) {
.mf-panel { padding: 14px; }
.mf-form { gap: 14px; }
.mf-field, .mf-field--grow { flex: 1 1 100%; }
.mf-view { width: 100%; }
.mf-table { table-layout: auto; font-size: 0.78rem; }
.mf-table td, .mf-table th { padding: 6px 4px; }
.mf-row__name { width: auto; }
.mf-row__type { display: none; }
.mf-row__see  { display: none; }
.mf-details th { width: 45%; }
.mf-details th, .mf-details td { padding: 6px 8px; font-size: 0.78rem; }
.mf-details__see { display: none; }
.mf-hero { padding: 22px 0 22px; }
.mf-make { gap: 12px; }
.mf-make__logo { max-width: 110px; height: 56px; }
.mf-make__logo img { max-width: 110px; max-height: 56px; }
.mf-make__title { font-size: 1.5rem; }
.mf-hero::before { width: 360px; height: 260px; right: -80px; }
.mf-hero__title { font-size: 2rem; }
.mf-hero__subtitle { font-size: 0.92rem; }
.mf-form--steps .mf-view { width: 100%; }
}
.fsteps { display: flex; align-items: flex-start; gap: 6px; margin: 10px 0; }
.fsteps__step { display: flex; flex-direction: column; align-items: center; gap: 3px; min-width: 56px; }
.fsteps__dot {
width: 20px; height: 20px; border-radius: 50%; box-sizing: border-box;
display: flex; align-items: center; justify-content: center;
background: var(--line); border: 2px solid var(--line);
color: #fff; font-size: 11px; font-weight: 700; line-height: 1;
}
.fsteps__step--done .fsteps__dot { background: var(--accent-green); border-color: var(--accent-green); }
.fsteps__step--next .fsteps__dot { background: var(--card); border-color: var(--accent-green); }
.fsteps__label { font-size: 10px; color: var(--ink-muted); white-space: nowrap; }
.fsteps__step--done .fsteps__label { color: var(--accent-green); font-weight: 700; }
.fsteps__arrow {
width: 12px; height: 2px; border-radius: 1px; margin-top: 9px;
background: var(--line); color: transparent; font-size: 0; flex: 0 0 auto;
}
.fsteps__arrow--done { background: var(--accent-green); }
.fsteps__step--needs-order .fsteps__dot { background: var(--card); border-color: var(--accent-red); color: var(--accent-red); }
.fsteps__step--needs-order .fsteps__label { color: var(--accent-red); font-weight: 700; }
.fsteps__arrow--alert { background: var(--accent-red); }
.fsteps__step--ordered .fsteps__dot { background: #ff8100; border-color: #ff8100; }
.fsteps__step--ordered .fsteps__label { color: #ff8100; font-weight: 700; }
.fsteps__arrow--ordered { background: #ff8100; }
.fsteps--compact { gap: 3px; margin: 4px 0 2px; }
.fsteps--compact .fsteps__step { min-width: 0; }
.fsteps--compact .fsteps__dot { width: 13px; height: 13px; font-size: 8px; border-width: 1.5px; }
.fsteps--compact .fsteps__label { font-size: 9px; }
.fsteps--compact .fsteps__arrow { width: 8px; margin-top: 6px; }
.splitrow {
display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 14px;
padding: 16px 0; border-top: 1px solid var(--line); font-size: 14px;
}
.splitrow:first-child { border-top: 0; padding-top: 4px; }
.splitrow__ico {
width: 40px; height: 40px; border-radius: 50%; flex: 0 0 auto; margin-top: 1px;
display: flex; align-items: center; justify-content: center;
background: var(--bg); font-size: 19px;
}
.splitrow__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.splitrow__head strong { font-size: 15px; }
.splitrow__trackpkg { margin-left: auto; font-weight: 600; font-size: 14px; white-space: nowrap; }
.splitrow__track { margin-top: 20px; font-size: 12px; }
.splitrow__track .muted { margin-right: 4px; }
.splitrow__items { list-style: none; margin: 10px 0 0; padding: 10px 0 0; border-top: 1px dashed var(--line); }
.splitrow__items li { padding: 2px 0; font-size: 12px; }
.splitrow__qty { color: var(--ink-muted); font-weight: 600; }
.tracking-eta { margin: 12px 0 0; font-size: 13px; }
.tracking-timeline {
list-style: none; margin: 16px 0 0; padding: 0;
}
.tracking-timeline__event {
position: relative; display: flex; gap: 12px; padding: 0 0 16px 2px;
}
.tracking-timeline__event:last-child { padding-bottom: 0; }
.tracking-timeline__event::before {
content: ""; position: absolute; left: 6px; top: 14px; bottom: -2px;
width: 2px; background: var(--line);
}
.tracking-timeline__event:last-child::before { display: none; }
.tracking-timeline__dot {
width: 10px; height: 10px; border-radius: 50%; flex: 0 0 auto; margin-top: 4px;
background: #fff; border: 2px solid var(--ink-muted); position: relative; z-index: 1;
}
.tracking-timeline__event--latest .tracking-timeline__dot {
background: var(--accent-green); border-color: var(--accent-green);
}
.tracking-timeline__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.tracking-timeline__desc { font-size: 13px; }
.tracking-timeline__event--latest .tracking-timeline__desc { font-weight: 600; }
.tracking-timeline__meta { font-size: 12px; }
.splitrow .fsteps { gap: 8px; margin: 20px 0 0; }
.splitrow .fsteps__dot { width: 26px; height: 26px; font-size: 13px; }
.splitrow .fsteps__label { font-size: 12px; }
.splitrow .fsteps__arrow { width: 18px; margin-top: 12px; }
.splitrow .fsteps__step { min-width: 66px; }
.tyl-3ds { margin-top: 18px; }
.tyl-3ds[hidden] { display: none; }
.tyl-3ds .tyl-3ds-frame {
width: 100%;
min-height: 420px;
border: 1px solid var(--border, #d8dde3);
border-radius: 8px;
background: #fff;
}
@media (max-width: 600px) {
.tyl-3ds .tyl-3ds-frame { min-height: 520px; }
}
.tyl-3ds--modal {
position: fixed;
inset: 0;
z-index: 1000;
margin: 0;
padding: 20px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(17, 43, 76, 0.55);
}
.tyl-3ds__panel {
display: flex;
width: min(600px, 100%);
max-height: 90vh;
background: #fff;
border-radius: 10px;
box-shadow: 0 18px 48px rgba(17, 43, 76, 0.35);
overflow: hidden;
}
.tyl-3ds--modal .tyl-3ds-frame {
width: 100%;
height: min(640px, 90vh);
min-height: 0;
border: 0;
border-radius: 10px;
}
body.tyl-3ds-open { overflow: hidden; }
@media (max-width: 600px) {
.tyl-3ds--modal { padding: 0; }
.tyl-3ds__panel { width: 100%; max-height: 100vh; border-radius: 0; }
.tyl-3ds--modal .tyl-3ds-frame { height: 100vh; min-height: 0; border-radius: 0; }
}
.tyl-pay__fields { min-width: 0; }
.tyl-pay__aside {
position: sticky;
top: 18px;
min-width: 0;
max-width: 360px;
}
@media (max-width: 900px) {
.tyl-pay__aside { position: static; max-width: 340px; }
}
.tyl-cardface {
position: relative;
aspect-ratio: 1.586;
border-radius: 12px;
padding: 18px;
color: #fff;
background: #ff6c00;
box-shadow: 0 8px 20px rgba(17, 43, 76, 0.25);
display: flex;
flex-direction: column;
overflow: hidden;
}
.tyl-cardface::after {
content: "";
position: absolute;
right: -40px; bottom: -60px;
width: 180px; height: 180px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.07);
}
.tyl-cardface__top {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
}
.tyl-cardface__issuer {
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
opacity: 0.9;
}
.tyl-cardface__brand { width: 48px; height: 30px; color: #fff; }
.tyl-cardface__chip { margin: 14px 0 auto; color: rgba(255, 255, 255, 0.85); }
.tyl-cardface__number {
font-size: 1.28rem;
font-weight: 600;
letter-spacing: 0.08em;
font-variant-numeric: tabular-nums;
white-space: nowrap;
margin-bottom: 14px;
}
.tyl-cardface__row { display: flex; gap: 18px; align-items: flex-end; }
.tyl-cardface__field { min-width: 0; font-size: 0.9rem; }
.tyl-cardface__field--exp { margin-left: auto; text-align: right; }
.tyl-cardface__field > span:last-child {
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-transform: uppercase;
}
.tyl-cardface__label {
display: block;
font-size: 0.62rem;
letter-spacing: 0.09em;
text-transform: uppercase;
opacity: 0.72;
margin-bottom: 2px;
}
@media (max-width: 380px) {
.tyl-cardface__number { font-size: 1.05rem; letter-spacing: 0.05em; }
}
.tyl-field { margin-bottom: 18px; }
.tyl-field label {
display: block;
font-size: 0.9rem;
font-weight: 600;
margin-bottom: 6px;
color: var(--ink);
}
.tyl-field input[type="text"] {
width: 100%;
padding: 14px 14px;
font: inherit;
font-size: 1.1rem;
color: var(--ink);
background: #fff;
border: 1px solid var(--line-strong);
border-radius: 6px;
}
.tyl-field input[type="text"]:focus {
outline: none;
border-color: var(--brand);
box-shadow: 0 0 0 3px rgba(21, 74, 141, 0.14);
}
.tyl-field input::placeholder { color: #9a9a9a; }
.tyl-field__wrap { position: relative; }
.tyl-field__wrap input[type="text"] { padding-right: 64px; }
.tyl-field__brand {
position: absolute;
right: 12px;
top: 50%;
transform: translateY(-50%);
width: 40px;
height: 26px;
pointer-events: none;
}
.tyl-field__brand[hidden] { display: none; }
.tyl-field__row { display: flex; gap: 16px; }
.tyl-field__row .tyl-field { flex: 1 1 0; min-width: 0; }
.tyl-powered__logo { display: block; height: auto; margin: 8px 0 2px; }
.tyl-pay__actions { display: flex; gap: 12px; margin-top: 8px; }
.tyl-pay__actions .btn { padding: 14px 18px; font-size: 1.02rem; }
.tyl-pay__actions .btn, .tyl-pay__actions .btn-outline { flex: 1; }
.btn.btn--tyl {
background: #ff6c00;
color: #ffffff !important;
}
.btn.btn--tyl:hover { background: #e55f00; }
.tyl-accepted {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
margin-top: 14px;
padding-top: 14px;
border-top: 1px solid var(--line);
}
.tyl-accepted .muted { font-size: 0.82rem; margin-right: 2px; }
.tyl-accepted__icon { width: 38px; height: 24px; }
.tyl-accepted__icon--visa { color: var(--brand); width: 44px; }
.paint-hero {
padding: 10px 0px;
margin: 0 0 18px;
}
.paint-hero__head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 18px;
flex-wrap: wrap;
}
.paint-hero__title {
margin: 0 0 6px;
font-family: "Barlow Condensed", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 2rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.01em;
line-height: 1.1;
}
.paint-hero--finish .paint-hero__title { margin: 0; }
.paint-hero__lede {
margin: 0;
max-width: 62ch;
color: var(--ink-muted);
font-size: 0.95rem;
}
.paint-switch { display: flex; gap: 6px; flex-wrap: wrap; }
.paint-switch__tab,
.paint-facets__chip {
display: inline-block;
padding: 7px 14px;
border: 1px solid var(--line-strong);
border-radius: 3px;
font: inherit;
font-size: 0.86rem;
font-weight: 600;
color: var(--ink) !important;
background: #fff;
white-space: nowrap;
}
.paint-facets__chip { cursor: pointer; }
.paint-switch__tab:hover,
.paint-facets__chip:hover {
border-color: #ff8100;
color: #ff8100 !important;
text-decoration: none;
}
.paint-switch__tab.is-current,
.paint-facets__chip.is-current {
background: #ff8100;
border-color: #ff8100;
color: #fff !important;
}
.paint-finishes {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 16px;
}
.paint-finish-card {
display: flex;
align-items: center;
gap: 18px;
background: var(--card);
border: 1px solid var(--line);
border-radius: 6px;
padding: 20px;
color: var(--ink);
transition: border-color 0.15s, box-shadow 0.15s;
}
.paint-finish-card:hover {
border-color: var(--line-strong);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
text-decoration: none;
}
.paint-finish-card__thumb {
flex: 0 0 96px;
width: 96px;
height: 96px;
display: flex;
align-items: center;
justify-content: center;
background: #046ec5;
color: var(--paint-accent-ink);
border-radius: 8px;
}
.paint-finish-icon { width: 54px; height: 54px; display: block; }
.paint-finish-card__body { min-width: 0; }
.paint-finish-card__name {
margin: 0 0 4px;
font-size: 1.15rem;
font-weight: 700;
}
.paint-finish-card__blurb {
margin: 0 0 8px;
color: var(--ink-muted);
font-size: 0.88rem;
}
.paint-finish-card__more { color: #046ec5; font-weight: 600; font-size: 0.88rem; }
.paint-finish-card__count { color: var(--ink-muted); font-weight: 400; margin-left: 2px; }
.paint-finish-card:hover .paint-finish-card__more { text-decoration: underline; }
.paint-brand-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 14px;
}
.paint-brand-card {
display: flex;
flex-direction: column;
background: var(--card);
border: 1px solid var(--line);
border-radius: 4px;
padding: 14px;
color: var(--ink);
transition: border-color 0.15s, box-shadow 0.15s;
}
.paint-brand-card:hover {
border-color: var(--line-strong);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
text-decoration: none;
}
.paint-brand-card[hidden] { display: none; }
.paint-brand-card__logo {
background: #fff;
border-radius: 4px;
aspect-ratio: 16 / 9;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 12px;
margin-bottom: 10px;
}
.paint-brand-card__logo img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.paint-brand-card__wordmark {
font-family: "Barlow Condensed", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 1.35rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.02em;
line-height: 1.05;
text-align: center;
color: var(--ink);
overflow-wrap: anywhere;
}
.paint-brand-card__name {
font-size: 14px;
font-weight: 600;
line-height: 1.3;
text-align: center;
flex: 1;
}
.paint-brand-card__more {
margin-top: 8px;
font-size: 0.78rem;
color: var(--ink-muted);
text-align: center;
}
.paint-brand-card__count { color: var(--ink-muted); font-weight: 400; margin-left: 2px; }
.paint-brand-card:hover .paint-brand-card__more { text-decoration: underline; }
.paint-brand-grid__empty {
margin: 24px 0;
color: var(--ink-muted);
}
.paint-picker__panel {
position: relative;
max-width: 720px;
margin-top: 22px;
}
.paint-picker__panel[hidden] { display: none; }
.paint-picker__label {
display: block;
margin-bottom: 8px;
font-weight: 700;
font-size: 0.95rem;
}
.paint-picker__input {
width: 100%;
padding: 14px 16px;
border: 1px solid var(--line-strong);
border-radius: 8px;
background: var(--card);
font: inherit;
font-size: 1.02rem;
outline: none;
}
.paint-picker__input:focus {
border: #046ec5 solid 2px;
}
.paint-picker__list {
position: absolute;
top: calc(100% + 6px);
left: 0;
right: 0;
z-index: 40;
background: var(--card);
border: 1px solid var(--line);
border-radius: 8px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
.paint-picker__suggestion {
display: flex;
align-items: center;
gap: 10px;
width: 100%;
text-align: left;
background: transparent;
border: 0;
padding: 10px 16px;
font: inherit;
font-weight: 600;
color: var(--ink);
cursor: pointer;
}
.paint-picker__suggestion:hover { background: var(--bg); color: var(--paint-accent-deep); }
.paint-picker__suggestion + .paint-picker__suggestion { border-top: 1px solid var(--line); }
.paint-picker__suggestion-label { flex: 1; min-width: 0; }
.paint-picker__suggestion-meta {
margin-left: auto;
font-weight: 400;
font-size: 0.82rem;
color: var(--ink-muted);
white-space: nowrap;
}
.paint-picker__none {
padding: 10px 16px;
color: var(--ink-muted);
font-size: 0.9rem;
}
.paint-picker__chip {
display: inline-flex;
align-items: baseline;
gap: 6px;
background: none;
border: 0;
padding: 0;
font: inherit;
font-size: 0.88rem;
font-weight: 600;
color: #046ec5;
cursor: pointer;
}
.paint-picker__chip:hover { text-decoration: underline; }
.paint-picker__chip[hidden] { display: none; }
.paint-picker__chip-x { font-size: 1rem; opacity: 0.75; }
.paint-panel { display: block; margin-top: 22px; }
.paint-panel[hidden] { display: none; }
.paint-panel[busy] { opacity: 0.55; }
.paint-panel__loading { margin: 0; color: var(--ink-muted); font-size: 0.9rem; }
.paint-finish-card.is-current {
border: #046ec5 solid 2px;
}
.paint-ral {
margin-top: 34px;
padding-top: 26px;
border-top: 1px solid var(--line);
}
.paint-ral__heading {
margin: 0 0 4px;
font-family: "Barlow Condensed", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 1.5rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.01em;
}
.paint-ral__lede { margin: 0; max-width: 62ch; color: var(--ink-muted); font-size: 0.95rem; }
.paint-ral__code {
display: inline-block;
padding: 3px 8px;
border-radius: 4px;
background: var(--bg);
border: 1px solid var(--line);
font-variant-numeric: tabular-nums;
font-weight: 700;
font-size: 0.82rem;
white-space: nowrap;
}
.paint-ral__code--big { font-size: 1rem; padding: 8px 12px; }
.paint-ral__swatch {
display: inline-block;
flex: 0 0 auto;
width: 18px;
height: 18px;
border-radius: 3px;
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.22);
}
.paint-ral__swatch--big {
width: 56px;
height: 56px;
border-radius: 6px;
}
.ral-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 12px;
margin-top: 18px;
}
.ral-grid[hidden] { display: none; }
.ral-chip {
display: flex;
flex-direction: column;
border: 1px solid var(--line);
border-radius: 6px;
overflow: hidden;
background: var(--card);
color: var(--ink) !important;
transition: border-color 0.12s, transform 0.12s, box-shadow 0.12s;
}
.ral-chip[hidden] { display: none; }
.ral-chip:hover {
text-decoration: none;
border-color: var(--paint-accent);
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
transform: translateY(-2px);
}
.ral-chip__swatch {
display: block;
height: 96px;
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.14);
}
.ral-chip__swatch--unknown {
background:
repeating-linear-gradient(45deg, var(--bg), var(--bg) 6px, #ffffff 6px, #ffffff 12px);
}
.ral-chip__body {
display: block;
padding: 10px 12px 12px;
}
.ral-chip__code {
display: block;
font-weight: 700;
font-size: 0.86rem;
font-variant-numeric: tabular-nums;
}
.ral-chip__name {
display: block;
margin-top: 2px;
font-size: 0.82rem;
color: var(--ink-muted);
}
.ral-search { display: block; max-width: 720px; margin-top: 16px; }
.ral-product-card__shade {
font-size: 0.8rem;
font-weight: 700;
color: var(--ink-muted);
font-variant-numeric: tabular-nums;
}
.ral-product-card__colour {
display: block;
position: relative;
margin: -20px -20px 12px;
}
.ral-product-card__swatch {
display: block;
height: 120px;
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.14);
}
.ral-product-card__packing {
position: absolute;
left: 10px;
bottom: 10px;
display: inline-flex;
align-items: center;
gap: 5px;
padding: 4px 9px 4px 7px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.94);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
color: var(--ink);
font-size: 0.74rem;
font-weight: 700;
letter-spacing: 0.01em;
text-transform: uppercase;
}
.ral-product-card__packing .paint-finish-icon { width: 14px; height: 14px; }
.paint-colours__head {
display: flex;
align-items: center;
gap: 18px;
flex-wrap: wrap;
margin: 0 0 18px;
}
.paint-colours__links {
margin-left: auto;
display: flex;
align-items: baseline;
gap: 16px;
flex-wrap: wrap;
}
.paint-colours__back,
.paint-colours__alt {
font-size: 0.88rem;
font-weight: 600;
color: #046ec5;
}
.paint-colours__back:hover,
.paint-colours__alt:hover { text-decoration: underline; }
.paint-colours__brand {
display: flex;
align-items: center;
gap: 16px;
min-width: 0;
}
.paint-colours__logo {
flex: 0 0 auto;
height: 64px;
display: flex;
align-items: center;
}
.paint-colours__logo img { max-height: 100%; max-width: 180px; object-fit: contain; }
.paint-colours__title {
margin: 0 0 2px;
font-family: "Barlow Condensed", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 1.75rem;
font-weight: 800;
text-transform: uppercase;
line-height: 1.1;
}
.paint-colours__meta { margin: 0; color: var(--ink-muted); font-size: 0.9rem; }
.paint-colours__all { margin: 18px 0 0; font-size: 0.9rem; font-weight: 600; }
.paint-colours__empty { margin: 18px 0; color: var(--ink-muted); }
.paint-pdp {
margin: 0 0 16px;
border: 1px solid var(--line);
background: var(--card);
}
.paint-pdp > * + * { border-top: 1px solid var(--line); }
.ral-pdp-swatch {
display: flex;
gap: 14px;
align-items: center;
padding: 12px 14px;
}
.ral-pdp-swatch__block {
flex: 0 0 auto;
width: 64px;
height: 64px;
border-radius: 5px;
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}
.ral-pdp-swatch__body { min-width: 0; }
.ral-pdp-swatch__code {
font-weight: 700;
font-variant-numeric: tabular-nums;
}
.ral-pdp-swatch__name { color: var(--ink-muted); margin-left: 6px; }
.ral-pdp-swatch__note {
margin: 4px 0 6px;
font-size: 0.78rem;
color: var(--ink-muted);
}
.ral-pdp-swatch__link { font-size: 0.85rem; font-weight: 600; color: #046ec5; }
.paint-sizes { margin: 0 0 10px; }
.paint-sizes__label {
display: block;
margin: 0 0 4px;
font-size: 0.85rem;
font-weight: 600;
color: #046ec5;
}
.paint-sizes__picker {
position: relative;
display: inline-block;
min-width: 190px;
}
.paint-sizes__current {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
border: 1px solid #046ec5;
border-radius: 6px;
background: #fff;
font-size: 0.9rem;
font-weight: 600;
color: var(--ink);
cursor: pointer;
list-style: none;
}
.paint-sizes__current::-webkit-details-marker { display: none; }
.paint-sizes__current:hover { border-color: #ff8100; }
.paint-sizes__chevron {
width: 16px;
height: 16px;
margin-left: auto;
flex: 0 0 auto;
transition: transform 0.15s ease;
}
.paint-sizes__picker[open] .paint-sizes__chevron { transform: rotate(180deg); }
.paint-sizes__list {
position: absolute;
z-index: 40;
left: 0;
right: 0;
margin: 4px 0 0;
padding: 4px;
list-style: none;
border: 1px solid var(--line-strong);
border-radius: 6px;
background: #fff;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.paint-sizes__option {
display: flex;
align-items: center;
gap: 8px;
padding: 7px 9px;
border-radius: 4px;
font-size: 0.9rem;
font-weight: 600;
color: var(--ink) !important;
white-space: nowrap;
}
.paint-sizes__option:hover {
background: rgba(4, 110, 197, 0.08);
color: #046ec5 !important;
text-decoration: none;
}
.paint-sizes .paint-finish-icon {
width: 18px;
height: 18px;
flex: 0 0 auto;
color: var(--ink-muted);
}
.paint-coverage {
display: flex;
align-items: baseline;
flex-wrap: wrap;
gap: 4px 10px;
padding: 10px 14px;
}
.paint-coverage__label {
font-size: 0.74rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--ink-muted);
}
.paint-coverage__area {
font-weight: 700;
font-variant-numeric: tabular-nums;
}
.paint-coverage__note {
font-size: 0.78rem;
color: var(--ink-muted);
}
.paint-facets {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 10px 26px;
margin: 0 0 18px;
}
.paint-facets__group {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 6px;
}
.paint-facets__label {
font-size: 0.74rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--ink-muted);
margin-right: 4px;
}
.paint-facets__count { margin: 0; font-size: 0.82rem; color: var(--ink-muted); }
.paint-facets__count:empty { display: none; }
.product-card[hidden] { display: none; }
@media (max-width: 600px) {
.ral-pdp-swatch__block { width: 56px; height: 56px; }
.paint-facets { gap: 8px 16px; }
.paint-facets__chip { padding: 6px 11px; font-size: 0.8rem; }
.paint-colours .product-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 8px;
}
.paint-colours .product-card { padding: 12px; gap: 6px; }
.paint-colours .product-card .desc { font-size: 0.82rem; }
.paint-colours .product-card .sku { font-size: 0.72rem; }
.paint-colours .ral-product-card__colour { margin: -12px -12px 10px; }
.paint-colours .ral-product-card__swatch { height: 84px; }
.paint-colours .ral-product-card__packing { left: 6px; bottom: 6px; padding: 3px 7px 3px 6px; font-size: 0.68rem; }
}
@media (max-width: 720px) {
.paint-ral { margin-top: 26px; padding-top: 20px; }
.ral-grid { grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); gap: 8px; }
.ral-chip__swatch { height: 74px; }
.ral-product-card__swatch { height: 96px; }
.paint-colours__head { gap: 12px; }
.paint-colours__logo { height: 48px; }
.paint-colours__title { font-size: 1.3rem; }
.paint-colours__links { margin-left: 0; flex-basis: 100%; gap: 14px; }
}
@media (max-width: 720px) {
.paint-hero { padding: 0px; }
.paint-hero__title { font-size: 1.5rem; }
.paint-finish-card { padding: 14px; gap: 12px; }
.paint-finish-card__thumb { flex: 0 0 72px; width: 72px; height: 72px; border-radius: 6px; }
.paint-finish-icon { width: 40px; height: 40px; }
.paint-brand-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}
.paint-brand-hero {
background: var(--card);
border: 1px solid var(--line);
border-radius: 8px;
padding: 22px;
margin: 0 0 18px;
}
.paint-brand-hero__inner {
display: flex;
align-items: center;
gap: 24px;
}
.paint-brand-hero__logo {
height: 90px;
}
.paint-brand-hero__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.paint-brand-hero__wordmark {
font-family: "Barlow Condensed", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 1.6rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.02em;
line-height: 1.05;
text-align: center;
color: var(--ink);
overflow-wrap: anywhere;
}
.paint-brand-hero__body { flex: 1; min-width: 0; }
.paint-brand-hero__title {
margin: 0 0 4px;
font-family: "Barlow Condensed", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 2rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.01em;
line-height: 1.1;
}
.paint-brand-hero__meta {
margin: 0 0 12px;
color: var(--ink-muted);
font-size: 0.95rem;
}
.paint-brand-hero__links {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.paint-brand-hero__alt,
.paint-brand-hero__all {
display: inline-block;
padding-right: 5px;
font-size: 13px;
font-weight: 600;
color: #046ec5;
}
.paint-brand-hero__alt:hover {
text-decoration: none;
color: #1a73e8;
}
.paint-brand-hero__altcount { font-weight: 400; opacity: 0.8; }
.paint-brand-hero__all:hover { border-color: var(--paint-accent); color: var(--paint-accent-deep) !important; text-decoration: none; }
@media (max-width: 720px) {
.paint-brand-hero { padding: 16px 14px; }
.paint-brand-hero__inner { gap: 14px; align-items: flex-start; }
.paint-brand-hero__logo { flex: 0 0 104px; height: 72px; padding: 8px; }
.paint-brand-hero__wordmark { font-size: 1.05rem; }
.paint-brand-hero__title { font-size: 1.4rem; }
}
.fastener-types {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 14px;
}
.fastener-type-card {
display: flex;
align-items: center;
gap: 14px;
background: var(--card);
border: 1px solid var(--line);
border-radius: 6px;
padding: 14px;
color: var(--ink);
transition: border-color 0.15s, box-shadow 0.15s;
}
.fastener-type-card:hover {
border-color: var(--line-strong);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
text-decoration: none;
}
.fastener-type-card__thumb {
flex: 0 0 64px;
width: 64px;
height: 64px;
display: flex;
align-items: center;
justify-content: center;
background: #fff;
border-radius: 6px;
color: var(--ink-muted);
}
.fastener-type-card__thumb img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.fastener-type-card__body { min-width: 0; }
.fastener-type-card__name {
margin: 0 0 4px;
font-size: 1.02rem;
font-weight: 700;
}
.fastener-type-card__more { color: #046ec5; font-weight: 600; font-size: 0.85rem; }
.fastener-type-card__count { color: var(--ink-muted); font-weight: 400; margin-left: 2px; }
.fastener-type-card:hover .fastener-type-card__more { text-decoration: underline; }
.fastener-quickfind {
display: flex;
align-items: flex-end;
gap: 14px;
flex-wrap: wrap;
background: var(--card);
border: 1px solid var(--line);
border-radius: 6px;
padding: 16px 18px;
margin: 0 0 22px;
}
.fastener-quickfind__label {
align-self: center;
font-weight: 700;
font-size: 0.95rem;
margin-right: 4px;
}
.fastener-quickfind__field {
display: flex;
flex-direction: column;
gap: 4px;
font-size: 0.78rem;
font-weight: 600;
color: var(--ink-muted);
}
.fastener-quickfind__field em { font-style: normal; font-weight: 400; }
.fastener-quickfind__field select,
.fastener-quickfind__field input {
padding: 9px 12px;
border: 1px solid var(--line-strong);
border-radius: 4px;
background: #fff;
font: inherit;
font-size: 0.92rem;
min-width: 130px;
}
.fastener-quickfind button {
padding: 10px 22px;
border: 0;
border-radius: 4px;
background: #046ec5;
color: #fff;
font: inherit;
font-size: 0.92rem;
font-weight: 700;
cursor: pointer;
}
.fastener-quickfind button:hover { background: #0a5ca3; }
.fastener-sizes__family {
margin: 18px 0 10px;
font-size: 0.82rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
color: var(--ink-muted);
}
.fastener-sizes {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
gap: 10px;
margin: 0 0 6px;
}
.fastener-size-tile {
display: flex;
flex-direction: column;
align-items: center;
gap: 2px;
padding: 14px 8px;
background: var(--card);
border: 1px solid var(--line);
border-radius: 6px;
transition: border-color 0.15s, box-shadow 0.15s;
}
.fastener-size-tile:hover {
border-color: #046ec5;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
text-decoration: none;
}
.fastener-size-tile__label {
font-size: 1.05rem;
font-weight: 700;
color: var(--ink);
}
.fastener-size-tile:hover .fastener-size-tile__label { color: #046ec5; }
.fastener-size-tile__count { font-size: 0.78rem; color: var(--ink-muted); }
.fastener-filter__list {
list-style: none;
margin: 0;
padding: 0;
}
.fastener-filter__list--sizes {
max-height: 300px;
overflow-y: auto;
}
.fastener-filter__list li { padding: 0; }
.fastener-filter__option {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 8px;
padding: 5px 6px;
border-radius: 3px;
color: var(--ink) !important;
font-size: 0.9rem;
}
.fastener-filter__option:hover {
background: var(--bg);
color: var(--brand) !important;
text-decoration: none;
}
.fastener-filter__option.is-current {
background: #046ec5;
color: #fff !important;
font-weight: 600;
}
.fastener-filter__option.is-current .count { color: rgba(255, 255, 255, 0.8); }
.fastener-results__head {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 18px;
flex-wrap: wrap;
margin: 0 0 16px;
}
.fastener-results__title {
margin: 0 0 2px;
font-family: "Barlow Condensed", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 1.7rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.01em;
line-height: 1.1;
}
.fastener-results__meta { margin: 0; color: var(--ink-muted); font-size: 0.9rem; }
.fastener-results__links {
display: flex;
align-items: center;
gap: 14px;
flex-wrap: wrap;
}
.fastener-results__alt {
display: inline-block;
padding: 7px 12px;
border-radius: 3px;
background: #046ec5;
color: #fff !important;
font-size: 0.86rem;
font-weight: 600;
white-space: nowrap;
}
.fastener-results__alt:hover { background: #0a5ca3; text-decoration: none; }
.fastener-results__back { color: #046ec5; font-weight: 600; font-size: 0.88rem; }
.fastener-results__back:hover { text-decoration: underline; }
.fastener-results .product-grid { margin-top: 16px; }
.fastener-results__all,
.fastener-results__empty {
margin: 16px 0 0;
color: var(--ink-muted);
font-size: 0.92rem;
}
.fastener-results__empty a,
.fastener-results__all a { color: #046ec5; font-weight: 600; }
@media (max-width: 720px) {
.fastener-results__title { font-size: 1.4rem; }
.fastener-quickfind__field,
.fastener-quickfind__field select,
.fastener-quickfind__field input { width: 100%; }
.fastener-quickfind button { width: 100%; }
}
.ai-ask {
background: var(--card);
border: 1px solid var(--line);
border-radius: 10px;
padding: 22px 24px;
margin-bottom: 18px;
}
.ai-ask__title { margin: 0 0 6px; font-size: 1.5rem; }
.ai-ask__intro { margin: 0 0 16px; color: var(--ink-muted); max-width: 62ch; }
.ai-ask__form { display: flex; gap: 10px; }
.ai-ask__input {
flex: 1 1 auto;
border: 1px solid var(--line-strong);
border-radius: 8px;
padding: 12px 14px;
font-size: 1rem;
}
.ai-ask__input:focus { outline: 2px solid var(--brand); outline-offset: 1px; }
.ai-ask__submit {
border: 0;
border-radius: 8px;
background: var(--brand);
color: #fff;
font-size: 1rem;
font-weight: 600;
padding: 12px 26px;
cursor: pointer;
}
.ai-ask__submit:hover { background: var(--brand-darker); }
.ai-ask__submit[disabled] { opacity: 0.7; cursor: progress; }
.ai-ask__hint { margin: 10px 0 0; font-size: 0.85rem; color: var(--ink-muted); }
.ai-ask__results { margin-top: 18px; }
.ai-ask__answer {
border-left: 3px solid var(--brand);
background: var(--bg);
border-radius: 0 8px 8px 0;
padding: 12px 16px;
margin-bottom: 16px;
}
.ai-ask__question { margin: 0 0 6px; font-size: 0.85rem; color: var(--ink-muted); }
.ai-ask__text { margin: 0; }
.ai-ask__error { color: var(--accent-red); margin: 0; }
@media (max-width: 640px) {
.ai-ask { padding: 16px; }
.ai-ask__form { flex-wrap: wrap; }
.ai-ask__input { flex: 1 1 100%; }
.ai-ask__submit { flex: 1 1 100%; }
}
:root {
--listing-bar-h:      52px;
--listing-accent:        #ff8100;
--listing-green:      #007a33;
--listing-green-dark: #00622a;
--listing-grey:       #f2f2f2;
--listing-grey-line:  #dcdcdc;
--listing-ink-soft:   #333333;
}
.listing-head { margin: 8px 0 22px; }
.listing-head__title {
margin: 0 0 12px;
font-size: 2.1rem;
font-weight: 800;
letter-spacing: -0.01em;
}
.listing-head__intro {
margin: 0;
max-width: 1400px;
font-size: 14px;
line-height: 1.55;
color: var(--listing-ink-soft);
}
.listing-layout {
font-size: 14px;
display: grid;
grid-template-columns: 300px minmax(0, 1fr);
gap: 24px;
align-items: start;
}
@media (max-width: 900px) {
.listing-layout { grid-template-columns: 1fr; }
}
.listing-filters__head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
height: var(--listing-bar-h);
background: var(--listing-grey);
padding: 0 16px 0 0;
margin-bottom: 10px;
}
.listing-filters__toggle {
flex: 1;
display: flex;
align-items: center;
justify-content: space-between;
height: 100%;
background: transparent;
border: 0;
padding: 0 16px;
font: inherit;
color: var(--listing-ink-soft);
text-align: left;
cursor: default;
}
.listing-filters__toggle .listing-chevron { display: none; }
.listing-filters__clear {
color: var(--listing-accent);
white-space: nowrap;
}
.listing-filters__clear:hover { text-decoration: underline; }
.listing-filters__badge {
font-size: 11px;
display: none;
align-items: center;
justify-content: center;
min-width: 22px;
height: 22px;
padding: 0 6px;
margin-left: 6px;
border-radius: 11px;
background: var(--listing-green);
color: #fff;
font-size: 0.78rem;
font-weight: 700;
}
@media (max-width: 900px) {
.listing-filters__toggle { cursor: pointer; }
.listing-filters__toggle .listing-chevron { display: block; transition: transform 0.15s; }
.listing-filters__badge { display: inline-flex; }
.listing-filters.is-expanded .listing-filters__toggle .listing-chevron { transform: rotate(180deg); }
.listing-filters.is-collapsed .listing-filters__body { display: none; }
.listing-filters.is-collapsed .listing-filters__head { margin-bottom: 0; }
.listing-filters { margin-bottom: 8px; }
}
.listing-applied {
list-style: none;
margin: 0 0 6px;
padding: 14px 16px;
background: var(--listing-grey);
display: flex;
flex-direction: column;
gap: 6px;
}
.listing-applied__row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
color: var(--listing-ink-soft);
}
.listing-applied__val { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.listing-applied__remove {
display: inline-flex;
color: var(--listing-accent);
flex: none;
}
.listing-applied__remove:hover { color: #e57300; }
.listing-filter-form { display: block; }
.listing-facet {
border-bottom: 1px solid var(--listing-grey-line);
}
.listing-facet__summary {
list-style: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: space-between;
padding: 15px 0;
color: var(--listing-ink-soft);
}
.listing-facet__summary::-webkit-details-marker { display: none; }
.listing-facet__summary:hover { color: var(--ink); }
.listing-facet__summary .listing-chevron { transition: transform 0.15s; color: var(--listing-ink-soft); }
.listing-facet[open] > .listing-facet__summary .listing-chevron { transform: rotate(180deg); }
.listing-facet__body { padding: 0 0 16px; }
.listing-facet__list {
list-style: none;
margin: 0;
padding: 0;
max-height: 240px;
overflow-y: auto;
}
.listing-facet__list li { padding: 4px 0; }
.listing-facet__list label {
display: flex;
align-items: center;
gap: 10px;
cursor: pointer;
line-height: 1.3;
}
.listing-facet__list label:hover { color: var(--brand); }
.listing-facet__list input[type="checkbox"] { margin: 0; width: 16px; height: 16px; flex: 0 0 auto; }
.listing-facet__list label > span:first-of-type {
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.listing-facet__list .count { color: var(--ink-muted); }
.listing-facet__search {
display: flex;
border: 1px solid var(--line-strong);
overflow: hidden;
}
.listing-facet__search input { flex: 1; min-width: 0; border: 0; padding: 9px 10px; font: inherit; outline: none; }
.listing-facet__search button { background: var(--listing-grey); color: var(--ink-muted); border: 0; padding: 0 12px; cursor: pointer; }
.listing-toolbar {
background: var(--listing-grey);
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
min-height: var(--listing-bar-h);
padding: 6px 16px;
flex-wrap: wrap;
}
.listing-toolbar__sort {
display: flex;
align-items: center;
gap: 12px;
color: var(--listing-ink-soft);
}
.listing-select {
position: relative;
background: #fff;
border: 1px solid var(--listing-grey-line);
min-width: 210px;
}
.listing-select select {
appearance: none;
-webkit-appearance: none;
width: 100%;
background: transparent;
border: 0;
padding: 7px 36px 7px 14px;
font: inherit;
font-weight: 700;
color: var(--ink);
cursor: pointer;
}
.listing-select .listing-chevron {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
pointer-events: none;
color: var(--ink);
}
.listing-toolbar__perpage {
display: flex;
align-items: center;
gap: 14px;
color: var(--listing-ink-soft);
}
.listing-toolbar__perpage > span:first-child { margin-right: 4px; }
.listing-toolbar__pp {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 28px;
height: 28px;
padding: 0 6px;
font-weight: 700;
color: var(--ink);
border: 1px solid transparent;
}
.listing-toolbar__pp:hover { text-decoration: none; color: var(--brand); }
.listing-toolbar__pp.is-current { background: #fff; border-color: var(--listing-grey-line); }
.listing-pagerow {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
flex-wrap: wrap;
margin: 14px 0;
color: var(--listing-ink-soft);
}
.listing-pagerow--bottom { margin-top: 20px; }
.listing-pager { display: flex; align-items: center; gap: 4px; }
.listing-pager__page, .listing-pager__arrow, .listing-pager__gap {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 34px;
height: 34px;
padding: 0 6px;
color: var(--ink);
border: 1px solid transparent;
}
.listing-pager__page:hover, .listing-pager__arrow:hover { text-decoration: none; color: var(--brand); }
.listing-pager__page.is-current { border-color: var(--listing-grey-line); background: #fff; }
.listing-pager__arrow.is-disabled { color: var(--line-strong); }
.listing-pager__gap { color: var(--ink-muted); }
.listing-pagerow__right { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.listing-pagejump { display: flex; align-items: center; gap: 12px; }
.listing-pagejump input {
width: 72px;
height: 36px;
border: 1px solid var(--listing-grey-line);
text-align: center;
font: inherit;
}
.listing-pagerow__summary { }
.listing-pagerow__summary strong { font-weight: 700; }