/* ==========================================================================
   POLLEGARY TOOLS — Design System
   Colors: Navy #102A43 | Gold #F5B700 | Red #D62828 | White #FFFFFF
           Light Gray #F4F6F8 | Dark Gray #263238
   Headings: Montserrat | Body: Inter
   ========================================================================== */

:root {
  --navy: #102A43;
  --navy-light: #1c3f66;
  --gold: #F5B700;
  --gold-dark: #d9a300;
  --red: #D62828;
  --white: #FFFFFF;
  --gray-light: #F4F6F8;
  --gray-mid: #dfe4e8;
  --gray-dark: #263238;
  --text: #1a2530;
  --font-head: 'Montserrat', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
  --radius: 6px;
  --shadow: 0 1px 3px rgba(16,42,67,0.12);
  --shadow-md: 0 4px 14px rgba(16,42,67,0.14);
  --maxw: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  font-size: 16px;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: var(--font-body); cursor: pointer; }
input, select, textarea { font-family: var(--font-body); font-size: 1rem; }

/* Accessible focus states */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: var(--white);
  padding: 10px 16px; z-index: 1000; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 48px 0; }
.section-tight { padding: 28px 0; }
.section-title { text-align: left; margin-bottom: 4px; }
.section-sub { color: #55606b; margin-bottom: 24px; max-width: 640px; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.bg-light { background: var(--gray-light); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius); font-weight: 700; font-size: .95rem;
  border: 2px solid transparent; cursor: pointer; text-align: center; min-height: 44px;
  font-family: var(--font-head); letter-spacing: .3px; transition: background .15s, color .15s, border-color .15s;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-dark); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #b31f1f; }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: .85rem; min-height: 36px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* Badges / labels */
.badge { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .4px; padding: 4px 9px; border-radius: 3px; text-transform: uppercase; }
.badge-sale { background: var(--red); color: var(--white); }
.badge-new { background: var(--navy); color: var(--white); }
.badge-best { background: var(--gold); color: var(--navy); }
.badge-clearance { background: var(--red); color: var(--white); }
.badge-online { background: var(--gray-dark); color: var(--white); }
.badge-limited { background: #fff3cd; color: #7a5b00; border: 1px solid var(--gold); }
.badge-shipping { background: var(--gray-light); color: var(--navy); border: 1px solid var(--gray-mid); }
.badge-draft { background: #fff3cd; color: #7a5b00; border: 1px dashed #b98900; }
.badge-sample { background: var(--gray-light); color: #55606b; border: 1px dashed #9aa5ae; }

/* ===== Announcement bar ===== */
.announce-bar { background: var(--navy); color: var(--white); font-size: .82rem; }
.announce-track { display: flex; justify-content: center; gap: 32px; padding: 7px 20px; flex-wrap: wrap; text-align: center; }
.announce-track span { white-space: nowrap; }

/* ===== Header ===== */
.site-header { background: var(--white); border-bottom: 1px solid var(--gray-mid); position: sticky; top: 0; z-index: 100; }
.header-row { display: flex; align-items: center; gap: 24px; padding: 14px 20px; max-width: var(--maxw); margin: 0 auto; }
.logo-link { flex-shrink: 0; display: block; }
.logo-link img { height: 42px; width: auto; }
.header-search { flex: 1; max-width: 640px; position: relative; }
.header-search form { display: flex; }
.header-search input[type="search"] {
  flex: 1; padding: 12px 14px; border: 2px solid var(--navy); border-right: none;
  border-radius: var(--radius) 0 0 var(--radius); font-size: .95rem;
}
.header-search button {
  background: var(--gold); border: 2px solid var(--gold); color: var(--navy);
  padding: 0 20px; border-radius: 0 var(--radius) var(--radius) 0; font-weight: 700; min-height: 44px;
}
.header-search button:hover { background: var(--gold-dark); }
.search-suggestions {
  position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border: 1px solid var(--gray-mid);
  border-top: none; border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow-md); z-index: 50; display: none;
}
.header-search.active .search-suggestions { display: block; }
.search-suggestions ul { padding: 6px 0; }
.search-suggestions li a { display: block; padding: 9px 16px; font-size: .9rem; color: var(--text); }
.search-suggestions li a:hover, .search-suggestions li a:focus { background: var(--gray-light); }
.search-suggestions .sugg-label { padding: 8px 16px 2px; font-size: .72rem; text-transform: uppercase; letter-spacing: .5px; color: #8a95a0; }

.header-actions { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.header-action { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: .72rem; font-weight: 600; color: var(--navy); position: relative; min-width: 46px; }
.header-action svg { width: 24px; height: 24px; }
.header-action .cart-count {
  position: absolute; top: -6px; right: 6px; background: var(--red); color: var(--white); font-size: .65rem;
  font-weight: 700; border-radius: 50%; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center;
}
.mobile-menu-toggle { display: none; background: none; border: none; padding: 8px; }
.mobile-menu-toggle svg { width: 28px; height: 28px; color: var(--navy); }
.mobile-search-toggle { display: none; background: none; border: none; padding: 8px; }

/* ===== Main nav / mega menu ===== */
.main-nav { background: var(--navy); }
.nav-list { display: flex; max-width: var(--maxw); margin: 0 auto; }
.nav-list > li { position: relative; }
.nav-list > li > a, .nav-list > li > button.nav-top-link {
  display: flex; align-items: center; gap: 4px; color: var(--white); font-weight: 600; font-size: .88rem;
  padding: 13px 16px; background: none; border: none; font-family: var(--font-body); white-space: nowrap;
}
.nav-list > li > a:hover, .nav-list > li > button.nav-top-link:hover, .nav-list > li.open > button.nav-top-link { background: var(--navy-light); color: var(--gold); }
.nav-list > li.deals-link > a { color: var(--gold); }

.mega-menu {
  display: none; position: absolute; left: 0; top: 100%; background: var(--white); color: var(--text);
  box-shadow: var(--shadow-md); border-top: 3px solid var(--gold); width: min(920px, 90vw); z-index: 60;
  padding: 24px; grid-template-columns: repeat(4, 1fr); gap: 20px 24px;
}
.nav-list > li.open .mega-menu { display: grid; }
.mega-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .4px; color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 6px; margin-bottom: 10px; }
.mega-col ul li { margin-bottom: 6px; }
.mega-col ul li a { font-size: .86rem; color: var(--text); }
.mega-col ul li a:hover { color: var(--navy); text-decoration: underline; }

/* Breadcrumbs */
.breadcrumbs { font-size: .82rem; color: #55606b; padding: 14px 0; }
.breadcrumbs a { color: #55606b; }
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs .sep { margin: 0 6px; }
.breadcrumbs [aria-current] { color: var(--navy); font-weight: 600; }

/* ===== Hero banners ===== */
.hero-slider { display: grid; grid-template-columns: 1fr; }
.hero-banner {
  background: linear-gradient(135deg, var(--navy) 55%, var(--navy-light) 100%);
  color: var(--white); padding: 64px 20px; display: flex; align-items: center;
}
.hero-banner .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; }
.hero-copy .eyebrow { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: .8rem; margin-bottom: 10px; }
.hero-copy h1 { color: var(--white); margin-bottom: 14px; }
.hero-copy p { font-size: 1.05rem; color: #d7dfe7; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.hero-visual {
  background: rgba(255,255,255,0.06); border: 1px dashed rgba(245,183,0,.5); border-radius: var(--radius);
  min-height: 220px; display: flex; align-items: center; justify-content: center; color: #9fb0c2; font-size: .85rem; text-align: center; padding: 20px;
}
.hero-dots { display: flex; gap: 8px; justify-content: center; padding: 14px 0; background: var(--navy); }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: #3c5978; padding: 0; }
.hero-dots button[aria-current="true"] { background: var(--gold); }

/* ===== Department / category cards ===== */
.dept-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.dept-card {
  background: var(--gray-light); border-radius: var(--radius); padding: 20px; text-align: center;
  border: 1px solid var(--gray-mid); transition: box-shadow .15s, transform .15s;
}
.dept-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.dept-card .dept-icon {
  width: 56px; height: 56px; margin: 0 auto 12px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.dept-card .dept-icon svg { width: 28px; height: 28px; color: var(--gold); }
.dept-card h3 { font-size: 1rem; margin-bottom: 4px; }
.dept-card span.count { font-size: .8rem; color: #55606b; }

/* ===== Product cards & grids ===== */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  border: 1px solid var(--gray-mid); border-radius: var(--radius); background: var(--white);
  display: flex; flex-direction: column; position: relative; transition: box-shadow .15s;
}
.product-card:hover { box-shadow: var(--shadow-md); }
.product-card .card-media { position: relative; padding: 14px; background: var(--gray-light); border-radius: var(--radius) var(--radius) 0 0; }
.product-card .card-media img { aspect-ratio: 1/1; object-fit: contain; width: 100%; }
.product-card .card-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px; }
.product-card .fav-btn {
  position: absolute; top: 10px; right: 10px; background: var(--white); border: 1px solid var(--gray-mid); border-radius: 50%;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
}
.product-card .fav-btn svg { width: 18px; height: 18px; color: var(--navy); }
.product-card .fav-btn[aria-pressed="true"] svg { color: var(--red); fill: var(--red); }
.card-body { padding: 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-brand { font-size: .74rem; text-transform: uppercase; letter-spacing: .4px; color: #55606b; font-weight: 600; }
.card-title { font-size: .92rem; font-weight: 600; color: var(--text); }
.card-title a { color: inherit; }
.card-rating { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: #55606b; }
.card-rating .stars { color: var(--gold-dark); letter-spacing: 1px; }
.card-price { display: flex; align-items: baseline; gap: 8px; margin-top: 2px; flex-wrap: wrap; }
.card-price .price-now { font-size: 1.15rem; font-weight: 700; color: var(--navy); }
.card-price .price-was { font-size: .84rem; color: #8a95a0; text-decoration: line-through; }
.card-price .price-save { font-size: .78rem; color: var(--red); font-weight: 700; }
.card-finance { font-size: .74rem; color: #55606b; }
.card-avail { font-size: .78rem; font-weight: 600; }
.card-avail.in-stock { color: #1b7a3d; }
.card-avail.low-stock { color: var(--gold-dark); }
.card-avail.out-stock { color: var(--red); }
.card-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 6px; }
.card-actions .btn { flex: 1; }
.card-quickview { text-align: center; font-size: .8rem; padding-top: 4px; }
.sample-tag { font-size: .68rem; color: #8a95a0; font-style: italic; }

.carousel-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.carousel-track .product-card { min-width: 250px; scroll-snap-align: start; }

/* ===== Promo strips (King's Deals, Kits & Bundles) ===== */
.promo-strip { background: var(--red); color: var(--white); border-radius: var(--radius); padding: 26px 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.promo-strip h2 { color: var(--white); margin-bottom: 4px; }
.promo-strip p { margin: 0; color: #ffe3e3; }
.promo-banner { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 40px 32px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.promo-banner h2 { color: var(--white); }

/* ===== Profession cards ===== */
.profession-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.profession-card { text-align: center; background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 18px 10px; }
.profession-card .icon-circle { width: 46px; height: 46px; margin: 0 auto 10px; border-radius: 50%; background: var(--gray-light); display: flex; align-items: center; justify-content: center; }
.profession-card .icon-circle svg { width: 22px; height: 22px; color: var(--navy); }
.profession-card span { font-size: .82rem; font-weight: 600; }

/* ===== Brand carousel ===== */
.brand-strip { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: center; }
.brand-chip { border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 16px 26px; font-family: var(--font-head); font-weight: 700; color: var(--navy); background: var(--gray-light); font-size: .9rem; }

/* ===== Trust benefits ===== */
.trust-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; text-align: center; }
.trust-item svg { width: 30px; height: 30px; color: var(--gold); margin-bottom: 8px; }
.trust-item h4 { font-size: .88rem; margin-bottom: 2px; }
.trust-item p { font-size: .78rem; color: #55606b; margin: 0; }

/* ===== Reviews ===== */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 20px; }
.review-card .stars { color: var(--gold-dark); margin-bottom: 8px; letter-spacing: 1px; }
.review-card .reviewer { font-weight: 700; margin-top: 10px; font-size: .88rem; }
.placeholder-note { background: #fff3cd; border: 1px dashed #b98900; color: #6b4f00; font-size: .82rem; padding: 10px 14px; border-radius: var(--radius); margin-bottom: 18px; }

/* ===== Buying guides ===== */
.guide-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.guide-card { border: 1px solid var(--gray-mid); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.guide-card .guide-media { aspect-ratio: 16/9; background: var(--gray-light); display: flex; align-items: center; justify-content: center; color: #8a95a0; font-size: .8rem; }
.guide-card .guide-body { padding: 14px; }
.guide-card h3 { font-size: .95rem; margin-bottom: 6px; }
.guide-card a.read-more { font-size: .82rem; font-weight: 700; color: var(--navy); }

/* ===== Newsletter ===== */
.newsletter { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 40px; text-align: center; }
.newsletter h2 { color: var(--white); }
.newsletter form { display: flex; gap: 10px; max-width: 460px; margin: 20px auto 0; }
.newsletter input[type="email"] { flex: 1; padding: 13px 14px; border-radius: var(--radius); border: none; font-size: .95rem; }
.newsletter small { display: block; margin-top: 12px; color: #a9b7c4; font-size: .76rem; }

/* ===== Footer ===== */
.site-footer { background: var(--gray-dark); color: #cfd6dc; }
.footer-top { padding: 48px 0 32px; display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 28px; }
.footer-col h4 { color: var(--white); font-size: .85rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: #cfd6dc; font-size: .88rem; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-brand img { height: 36px; margin-bottom: 14px; }
.footer-brand p { font-size: .85rem; color: #a9b3ba; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; }
.footer-social a svg { width: 16px; height: 16px; color: var(--white); }
.footer-contact li { font-size: .85rem; color: #a9b3ba; margin-bottom: 8px; }
.payment-icons { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.payment-icons span { border: 1px solid rgba(255,255,255,.25); border-radius: 4px; padding: 4px 8px; font-size: .68rem; color: #cfd6dc; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .78rem; color: #9aa5ae; }
.footer-bottom a { color: #cfd6dc; }
.footer-legal-links { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Forms (generic) ===== */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; color: var(--navy); }
.form-group .hint { font-size: .76rem; color: #55606b; margin-top: 4px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 12px; border: 1px solid #b7c0c8; border-radius: var(--radius); font-size: .95rem; background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-error { color: var(--red); font-size: .8rem; margin-top: 4px; display: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
fieldset { border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 18px; margin-bottom: 20px; }
legend { font-family: var(--font-head); font-weight: 700; color: var(--navy); padding: 0 8px; }

/* ===== Filters (category page) ===== */
.category-layout { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start; }
.filters-panel { border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 18px; position: sticky; top: 90px; }
.filter-group { border-bottom: 1px solid var(--gray-mid); padding-bottom: 14px; margin-bottom: 14px; }
.filter-group:last-child { border-bottom: none; }
.filter-group h4 { font-size: .88rem; margin-bottom: 10px; }
.filter-group label { display: flex; align-items: center; gap: 8px; font-size: .85rem; margin-bottom: 8px; }
.filter-group input[type="checkbox"], .filter-group input[type="radio"] { width: 16px; height: 16px; }
.price-range-inputs { display: flex; gap: 8px; align-items: center; }
.price-range-inputs input { width: 80px; padding: 8px; border: 1px solid #b7c0c8; border-radius: 4px; }
.filters-toggle-mobile { display: none; }

.toolbar-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; flex-wrap: wrap; gap: 12px; }
.result-count { font-size: .88rem; color: #55606b; }
.sort-select { display: flex; align-items: center; gap: 8px; font-size: .88rem; }
.sort-select select { padding: 8px 10px; border: 1px solid #b7c0c8; border-radius: 4px; }
.active-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.active-filters .chip { background: var(--gray-light); border: 1px solid var(--gray-mid); border-radius: 20px; padding: 5px 12px; font-size: .8rem; display: flex; align-items: center; gap: 6px; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 34px; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: var(--radius); border: 1px solid var(--gray-mid); font-size: .85rem; }
.pagination a[aria-current="page"] { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ===== Product detail page ===== */
.pdp-layout { display: grid; grid-template-columns: 1fr 1fr 320px; gap: 34px; align-items: start; }
.pdp-gallery-main { border: 1px solid var(--gray-mid); border-radius: var(--radius); background: var(--gray-light); aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; overflow: hidden; cursor: zoom-in; }
.pdp-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pdp-thumbs button { width: 64px; height: 64px; border: 2px solid var(--gray-mid); border-radius: 4px; background: var(--gray-light); padding: 0; overflow: hidden; }
.pdp-thumbs button[aria-current="true"] { border-color: var(--navy); }
.pdp-video-note { font-size: .78rem; color: #55606b; margin-top: 10px; }
.pdp-title-block .card-brand { font-size: .8rem; }
.pdp-title-block h1 { margin-bottom: 6px; }
.pdp-meta-row { display: flex; align-items: center; gap: 14px; font-size: .85rem; color: #55606b; flex-wrap: wrap; }
.pdp-price-block { border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); padding: 16px 0; margin: 16px 0; }
.pdp-price-block .price-now { font-size: 1.9rem; font-weight: 800; color: var(--navy); }
.pdp-options .option-group { margin-bottom: 16px; }
.pdp-options .option-group h4 { font-size: .85rem; margin-bottom: 8px; }
.swatch-row { display: flex; gap: 8px; flex-wrap: wrap; }
.swatch-row button { padding: 9px 14px; border: 1px solid #b7c0c8; border-radius: var(--radius); background: var(--white); font-size: .85rem; font-weight: 600; }
.swatch-row button[aria-pressed="true"] { border-color: var(--navy); background: var(--navy); color: var(--white); }
.qty-selector { display: flex; align-items: center; border: 1px solid #b7c0c8; border-radius: var(--radius); width: fit-content; }
.qty-selector button { width: 38px; height: 40px; background: var(--gray-light); border: none; font-size: 1.1rem; }
.qty-selector input { width: 46px; height: 40px; text-align: center; border: none; border-left: 1px solid #b7c0c8; border-right: 1px solid #b7c0c8; }
.pdp-buy-box { border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 20px; position: sticky; top: 90px; }
.pdp-buy-box .btn { width: 100%; margin-bottom: 10px; }
.shipping-calc { border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 14px; margin-top: 14px; font-size: .85rem; }
.shipping-calc .form-group { margin-bottom: 10px; }

.pdp-tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--gray-mid); margin-top: 48px; flex-wrap: wrap; }
.pdp-tabs button { padding: 12px 18px; background: none; border: none; font-weight: 700; font-family: var(--font-head); color: #55606b; border-bottom: 3px solid transparent; margin-bottom: -2px; }
.pdp-tabs button[aria-selected="true"] { color: var(--navy); border-bottom-color: var(--gold); }
.pdp-tab-panel { padding: 26px 0; }
.pdp-tab-panel[hidden] { display: none; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--gray-mid); }
.spec-table td { padding: 10px 6px; font-size: .9rem; }
.spec-table td:first-child { color: #55606b; width: 40%; }
.faq-item { border-bottom: 1px solid var(--gray-mid); padding: 14px 0; }
.faq-item summary { font-weight: 700; cursor: pointer; color: var(--navy); }
.faq-item p { margin-top: 8px; color: #45505a; }

/* ===== Cart page ===== */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 30px; align-items: start; }
.cart-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--gray-mid); align-items: center; }
.cart-item img { border: 1px solid var(--gray-mid); border-radius: 4px; }
.cart-item-actions { display: flex; gap: 16px; font-size: .82rem; margin-top: 8px; }
.cart-item-actions button { background: none; border: none; color: var(--navy); text-decoration: underline; padding: 0; }
.order-summary { border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 20px; position: sticky; top: 90px; }
.summary-row { display: flex; justify-content: space-between; font-size: .92rem; padding: 8px 0; }
.summary-row.total { border-top: 1px solid var(--gray-mid); margin-top: 8px; padding-top: 14px; font-weight: 800; font-size: 1.1rem; color: var(--navy); }
.coupon-row { display: flex; gap: 8px; margin: 14px 0; }
.coupon-row input { flex: 1; }
.empty-state { text-align: center; padding: 60px 20px; }

/* ===== Checkout page ===== */
.checkout-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 34px; align-items: start; }
.checkout-steps { display: flex; gap: 10px; margin-bottom: 24px; font-size: .82rem; }
.checkout-steps span { padding: 6px 14px; border-radius: 20px; background: var(--gray-light); border: 1px solid var(--gray-mid); }
.checkout-steps span.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.payment-methods { display: grid; gap: 10px; }
.payment-method { border: 1px solid #b7c0c8; border-radius: var(--radius); padding: 12px 14px; display: flex; align-items: center; gap: 10px; font-size: .9rem; }

/* ===== Account page ===== */
.account-tabs { display: flex; gap: 24px; border-bottom: 2px solid var(--gray-mid); margin-bottom: 26px; flex-wrap: wrap; }
.account-tabs a { padding: 10px 4px; font-weight: 700; color: #55606b; border-bottom: 3px solid transparent; }
.account-tabs a.active { color: var(--navy); border-bottom-color: var(--gold); }
.auth-split { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 900px; margin: 0 auto; }
.auth-card { border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 28px; }

/* ===== Misc pages ===== */
.trust-strip-inline { display: flex; gap: 22px; flex-wrap: wrap; font-size: .82rem; color: #55606b; margin-top: 16px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { background: var(--gray-light); border-radius: var(--radius); padding: 22px; }
.stat-note { font-size: .8rem; color: #55606b; font-style: italic; }
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 30px; }
.contact-method { border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 18px; text-align: center; }
.contact-method svg { width: 26px; height: 26px; color: var(--gold-dark); margin-bottom: 8px; }
.faq-toc { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.faq-toc a { background: var(--gray-light); border: 1px solid var(--gray-mid); border-radius: 20px; padding: 6px 14px; font-size: .82rem; }
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.sitemap-col h3 { border-bottom: 2px solid var(--gold); padding-bottom: 8px; }
.sitemap-col ul li { padding: 6px 0; border-bottom: 1px dashed var(--gray-mid); display: flex; justify-content: space-between; align-items: center; font-size: .9rem; }
.status-live { color: #1b7a3d; font-weight: 700; font-size: .72rem; text-transform: uppercase; }
.status-planned { color: #8a95a0; font-weight: 700; font-size: .72rem; text-transform: uppercase; }

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .dept-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .profession-grid { grid-template-columns: repeat(4, 1fr); }
  .pdp-layout { grid-template-columns: 1fr 1fr; }
  .pdp-buy-box { grid-column: span 2; position: static; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .header-row { flex-wrap: wrap; }
  .header-search { order: 3; max-width: 100%; width: 100%; flex-basis: 100%; }
  .mobile-menu-toggle, .mobile-search-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-list { display: none; flex-direction: column; }
  .nav-list.open { display: flex; }
  .mega-menu { position: static; width: 100%; grid-template-columns: 1fr; box-shadow: none; }
  .nav-list > li.open .mega-menu { display: none; }
  .hero-banner .container { grid-template-columns: 1fr; }
  .hero-visual { min-height: 140px; }
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .profession-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .category-layout { grid-template-columns: 1fr; }
  .filters-panel { position: static; display: none; }
  .filters-panel.open { display: block; }
  .filters-toggle-mobile { display: block; margin-bottom: 16px; }
  .pdp-layout { grid-template-columns: 1fr; }
  .pdp-buy-box { grid-column: auto; position: static; }
  .cart-layout, .checkout-layout, .two-col, .auth-split { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pdp-sticky-atc { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--gray-mid); padding: 10px 16px; display: flex; gap: 10px; z-index: 90; box-shadow: 0 -4px 10px rgba(0,0,0,.08); }
}
@media (min-width: 861px) { .pdp-sticky-atc { display: none; } }
@media (max-width: 560px) {
  .dept-grid, .product-grid, .trust-grid, .profession-grid, .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .announce-track { gap: 16px; }
}
