.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:root {
  --ink: #10151d;
  --muted: #6b7280;
  --steel: #0d1b4c;
  --steel-light: #2e9fe0;
  --accent: #5b4fc4;
  --line: #e5e8ec;
  --surface: #f5f7f9;
  --green: #1a8a4c;
  --red: #d1332f;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', Arial, Helvetica, sans-serif; color: var(--ink); background: #fff; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; }

/* Top utility bar */
.util-bar {
  display: flex; justify-content: space-between;
  background: var(--ink); color: #c7ccd4;
  padding: 8px 40px; font-size: 12.5px; letter-spacing: .2px;
}
.util-bar ul { display: flex; gap: 22px; }
.util-bar li { display: flex; align-items: center; gap: 6px; cursor: pointer; transition: color .15s; }
.util-bar li:hover { color: var(--accent); }

/* Header */
header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 200; }
.header-inner {
  max-width: 1600px; display: flex; align-items: center;
  padding: 16px 40px; margin: 0 auto; gap: 30px;
}
.logo { font-size: 24px; font-weight: 800; letter-spacing: -.5px; white-space: nowrap; display: flex; align-items: center; color: var(--steel); }
.logo span { color: var(--accent); }
nav.main-nav ul { display: flex; gap: 26px; }
nav.main-nav a { font-size: 14px; font-weight: 700; letter-spacing: .4px; color: var(--muted); position: relative; padding-bottom: 4px; transition: color .15s; }
nav.main-nav a:hover, nav.main-nav a.active { color: var(--ink); }
nav.main-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px;
  background: var(--accent); border-radius: 2px;
}
.header-right { display: flex; align-items: center; gap: 20px; margin-left: auto; }

/* Fast search — part number focused */
.search-box { width: 420px; position: relative; }
.search-box input {
  width: 100%; padding: 12px 44px 12px 44px; border-radius: 8px;
  border: 1.5px solid var(--line); background: var(--surface); font-size: 14px; color: #333;
  transition: border-color .15s, background .15s;
}
.search-box input:focus { outline: none; border-color: var(--steel-light); background: #fff; }
.search-box .icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); font-size: 14px; opacity: .5; }
.search-box .kbd-hint {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  font-size: 11px; color: var(--muted); border: 1px solid var(--line); border-radius: 4px; padding: 2px 6px; background: #fff;
}
.search-suggest {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #fff;
  border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 12px 30px rgba(16,21,29,.14);
  max-height: 380px; overflow-y: auto; z-index: 500; display: none;
}
.search-suggest.open { display: block; }
.suggest-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; cursor: pointer; border-bottom: 1px solid var(--line); }
.suggest-item:last-child { border-bottom: none; }
.suggest-item:hover { background: var(--surface); }
.suggest-thumb { width: 40px; height: 40px; border-radius: 6px; background: var(--surface); flex-shrink: 0; object-fit: cover; }
.suggest-info { min-width: 0; flex: 1; }
.suggest-pn { font-size: 12.5px; font-weight: 800; color: var(--steel); font-family: 'Courier New', monospace; }
.suggest-pn mark { background: #ffe4b8; color: var(--ink); border-radius: 2px; }
.suggest-title { font-size: 12.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.suggest-price { font-size: 13px; font-weight: 800; flex-shrink: 0; }
.suggest-meta { font-size: 10.5px; color: var(--green); font-weight: 700; flex-shrink: 0; }

.header-icons { display: flex; gap: 22px; align-items: center; }
.header-icons .divider { width: 1px; height: 20px; background: var(--line); }
.header-icons .icon-item { font-size: 13px; font-weight: 700; letter-spacing: .3px; display: flex; align-items: center; gap: 7px; cursor: pointer; color: var(--ink); transition: color .15s; }
.header-icons .icon-item:hover { color: var(--steel-light); }
.header-icons .glyph { font-size: 17px; }
.cart-count { background: var(--accent); color: #fff; font-size: 10px; font-weight: 800; border-radius: 50%; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; position: relative; top: -8px; left: -8px; }

/* category pill row */
.pill-row {
  max-width: 1600px; margin: 0 auto; display: flex; align-items: center; gap: 26px;
  padding: 14px 40px; border-bottom: 1px solid var(--line); overflow-x: auto; background: var(--surface);
}
.cat-pill { font-size: 13.5px; font-weight: 700; letter-spacing: .3px; white-space: nowrap; cursor: pointer; color: var(--muted); transition: color .15s; display: flex; align-items: center; gap: 6px; }
.cat-pill:hover, .cat-pill.active { color: var(--steel); }

/* Hero */
.hero {
  background: linear-gradient(120deg, var(--ink) 0%, var(--steel) 100%);
  color: #fff; padding: 64px 40px; display: flex; align-items: center; gap: 48px;
}
.hero-inner { max-width: 1600px; margin: 0 auto; display: flex; align-items: center; gap: 48px; width: 100%; }
.hero-copy { flex: 1; }
.hero-copy .eyebrow { color: var(--accent); font-weight: 800; letter-spacing: 1.5px; font-size: 13px; text-transform: uppercase; margin-bottom: 14px; }
.hero-copy h1 { font-size: 40px; font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.hero-copy p { font-size: 16px; color: #c7d2e0; max-width: 520px; margin-bottom: 26px; line-height: 1.6; }
.hero-search { display: flex; gap: 10px; max-width: 560px; }
.hero-search input { flex: 1; padding: 15px 18px; border-radius: 8px; border: none; font-size: 15px; }
.hero-search button { padding: 15px 26px; border-radius: 8px; border: none; background: var(--accent); color: #fff; font-weight: 800; font-size: 14.5px; letter-spacing: .3px; transition: background .15s; }
.hero-search button:hover { background: #e65f00; }
.hero-stats { display: flex; gap: 34px; margin-top: 30px; }
.hero-stats div { text-align: left; }
.hero-stats .num { font-size: 24px; font-weight: 800; color: #fff; }
.hero-stats .lbl { font-size: 12.5px; color: #97a6bb; margin-top: 2px; }
.hero-visual { flex: 0 0 460px; display: flex; align-items: center; justify-content: center; }
.hero-visual i { font-size: 180px; color: rgba(255,255,255,.08); }

/* Section */
.section { max-width: 1600px; margin: 0 auto; padding: 46px 40px; }
.section.tint { background: var(--surface); box-shadow: 0 0 0 100vmax var(--surface); clip-path: inset(0 -100vmax); }
.section-title { font-size: 24px; font-weight: 800; margin-bottom: 8px; letter-spacing: .2px; }
.section-sub { font-size: 14.5px; color: var(--muted); margin-bottom: 28px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; }
.section-head .view-all { font-size: 13.5px; font-weight: 700; color: var(--steel-light); }

/* value props */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-item { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 24px; transition: transform .2s, box-shadow .2s; }
.value-item:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(16,21,29,.08); }
.value-item i { font-size: 26px; color: var(--steel-light); margin-bottom: 14px; }
.value-item h3 { font-size: 15.5px; font-weight: 800; margin-bottom: 6px; }
.value-item p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

/* category tiles */
.tile-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.tile { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 22px 14px; text-align: center; cursor: pointer; transition: transform .2s, box-shadow .2s, border-color .2s; }
.tile:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(16,21,29,.1); border-color: var(--steel-light); }
.tile i { font-size: 28px; color: var(--steel); margin-bottom: 12px; }
.tile .label { font-size: 13px; font-weight: 700; }
.tile .count { font-size: 11.5px; color: var(--muted); margin-top: 3px; }
.tile-photo { padding: 16px 14px; }
.tile-photo img { width: 100%; aspect-ratio: 1/1; object-fit: contain; margin-bottom: 10px; background: var(--surface); border-radius: 8px; }

/* product grid / card */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(16,21,29,.1); }
.product-card .img-wrap { position: relative; aspect-ratio: 4/3; background: var(--surface); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.product-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.stock-badge { position: absolute; top: 10px; left: 10px; font-size: 10.5px; font-weight: 800; letter-spacing: .3px; padding: 4px 9px; border-radius: 4px; }
.stock-badge.in { background: #e4f6ea; color: var(--green); }
.stock-badge.low { background: #fff2df; color: #a05a00; }
.stock-badge.out { background: #fbe6e5; color: var(--red); }
.product-info { padding: 14px; }
.product-info .pn { font-family: 'Courier New', monospace; font-size: 12px; font-weight: 800; color: var(--steel); margin-bottom: 4px; }
.product-info .title { font-size: 14px; font-weight: 600; margin-bottom: 6px; line-height: 1.35; height: 38px; overflow: hidden; }
.product-info .meta-row { display: flex; gap: 10px; font-size: 11.5px; color: var(--muted); margin-bottom: 10px; }
.product-info .price-row { display: flex; align-items: baseline; gap: 8px; }
.product-info .price-row .now { font-size: 18px; font-weight: 800; }
.product-info .price-row .unit { font-size: 12px; color: var(--muted); }
.bulk-hint { font-size: 11.5px; color: var(--steel-light); font-weight: 700; margin-top: 6px; }

/* brands */
.brand-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 24px; }
.brand-card {
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 24px 16px;
  text-align: center; cursor: pointer; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.brand-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(16,21,29,.1); border-color: var(--steel-light); }
.brand-card img {
  width: 100%; height: 64px; margin: 0 auto 14px; object-fit: contain;
}
.brand-name { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.brand-count { font-size: 12px; color: var(--muted); }

/* Bold offer banner */
.offer-banner { background: linear-gradient(120deg, var(--accent) 0%, var(--steel-light) 100%); }
.offer-banner-inner {
  max-width: 1600px; margin: 0 auto; padding: 26px 40px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.offer-tag { font-size: 12px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; color: #fff; opacity: .85; margin-bottom: 6px; }
.offer-copy h3 { font-size: 21px; font-weight: 800; color: #fff; line-height: 1.3; max-width: 640px; }
.offer-copy p { font-size: 13.5px; color: rgba(255,255,255,.9); margin-top: 6px; }
.offer-cta {
  background: var(--ink); color: #fff; border: none; padding: 14px 26px; border-radius: 8px;
  font-weight: 800; font-size: 14px; white-space: nowrap; display: flex; align-items: center; gap: 10px;
  transition: transform .15s, box-shadow .15s;
}
.offer-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,.25); }
@media (max-width: 700px) {
  .offer-banner-inner { padding: 20px 16px; }
  .offer-copy h3 { font-size: 17px; }
}

/* Promo banner cards */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.promo-card {
  position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; aspect-ratio: 16/9;
  background: var(--ink); display: flex; align-items: flex-end; transition: transform .2s, box-shadow .2s;
}
.promo-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(16,21,29,.18); }
.promo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 18px; opacity: .95; }
.promo-copy {
  position: relative; z-index: 1; width: 100%; padding: 14px 18px;
  background: linear-gradient(0deg, rgba(16,21,29,.85) 0%, rgba(16,21,29,0) 100%); color: #fff;
}
.promo-tag { font-size: 11px; font-weight: 800; letter-spacing: .4px; color: var(--accent); text-transform: uppercase; }
.promo-copy h4 { font-size: 16px; font-weight: 800; margin-top: 3px; }

/* AOG urgent banner */
.aog-banner { background: var(--ink); color: #fff; }
.aog-inner {
  max-width: 1600px; margin: 0 auto; padding: 18px 40px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.aog-inner i.fa-triangle-exclamation { color: var(--accent); margin-right: 6px; }
.aog-inner > div { font-size: 14.5px; color: #d4d9e0; }
.aog-btn {
  background: var(--accent); color: #fff; font-weight: 800; font-size: 13.5px; padding: 10px 20px;
  border-radius: 6px; display: flex; align-items: center; gap: 8px; white-space: nowrap; transition: background .15s;
}
.aog-btn:hover { background: #e65f00; }

/* Why choose block */
.why-choose { display: flex; align-items: center; gap: 50px; }
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-list li { font-size: 14.5px; color: #3d4450; line-height: 1.5; list-style: none; padding-left: 26px; position: relative; }
.why-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--green); position: absolute; left: 0; top: 2px; font-size: 12px; }
.why-visual { flex: 0 0 200px; display: flex; align-items: center; justify-content: center; }
.why-visual i { font-size: 130px; color: var(--surface); background: var(--steel); border-radius: 50%; padding: 34px; }

/* Horizontal scroll product row w/ arrows */
.product-row-wrap { position: relative; }
.product-row {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc(25% - 15px);
  gap: 20px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x proximity;
  scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-bottom: 4px;
}
.product-row::-webkit-scrollbar { display: none; }
.product-row .product-card { min-width: 0; scroll-snap-align: start; }

/* Before/after comparison table */
.compare-table { max-width: 900px; margin: 34px auto 0; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 200px 1fr 1fr; }
.compare-row:not(:last-child) { border-bottom: 1px solid var(--line); }
.compare-row > div { padding: 14px 18px; font-size: 13.5px; display: flex; align-items: center; gap: 8px; }
.compare-label { font-weight: 700; color: var(--ink); background: var(--surface); }
.compare-old { color: #8a8f98; }
.compare-old i { color: var(--red); }
.compare-new { color: var(--ink); font-weight: 600; background: #f2f8f4; }
.compare-new i { color: var(--green); }
.compare-head { background: transparent; }
.compare-head .compare-old { color: var(--muted); font-weight: 800; background: none; }
.compare-head .compare-new { color: var(--steel); font-weight: 800; background: none; }
@media (max-width: 700px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-label { border-bottom: 1px solid var(--line); }
  .compare-head { display: none; }
}

/* Testimonials — featured quote + mini quotes */
.testimonial-wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; margin-top: 34px; align-items: stretch; }
.featured-quote {
  background: var(--ink); color: #fff; border-radius: 12px; padding: 34px; position: relative; display: flex; flex-direction: column; justify-content: center;
}
.quote-mark { font-size: 34px; color: var(--accent); opacity: .5; margin-bottom: 14px; }
.featured-quote-text { font-size: 19px; font-weight: 600; line-height: 1.5; margin-bottom: 20px; }
.featured-quote-stars { color: #ff9d00; font-size: 15px; margin-bottom: 16px; }
.featured-quote-author { display: flex; align-items: center; gap: 12px; }
.featured-quote-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.featured-quote .review-name { color: #fff; }
.featured-quote .review-meta { color: #97a6bb; }

.mini-quotes { display: flex; flex-direction: column; gap: 18px; }
.mini-quote {
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 20px;
  flex: 1; transition: transform .2s, box-shadow .2s;
}
.mini-quote:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(16,21,29,.08); }
.mini-quote .review-text { font-size: 13.5px; line-height: 1.55; color: var(--ink); margin: 8px 0 14px; }
.review-photo { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review-stars { color: #ff9d00; font-size: 14px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-name { font-size: 13.5px; font-weight: 700; }
.review-meta { font-size: 12px; color: var(--muted); }
@media (max-width: 900px) {
  .testimonial-wrap { grid-template-columns: 1fr; }
  .featured-quote-text { font-size: 17px; }
}

/* Footer */
footer { background: var(--ink); color: #b6bcc6; padding: 48px 0 24px; }
.footer-top { max-width: 1600px; margin: 0 auto; padding: 0 40px; }
.footer-brand-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.footer-logo { font-size: 22px; font-weight: 800; color: #fff; }
.footer-logo span { color: var(--accent); }
.footer-certs { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-certs span { font-size: 12.5px; font-weight: 700; color: #9aa7b8; display: flex; align-items: center; gap: 7px; }
.footer-certs i { color: var(--accent); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding-bottom: 30px; border-bottom: 1px solid #26313f; }
.footer-grid h4 { color: #fff; font-size: 14.5px; letter-spacing: .3px; margin-bottom: 16px; }
.footer-grid li { font-size: 13.5px; margin-bottom: 10px; color: #93a0af; transition: color .15s; cursor: pointer; }
.footer-grid li:hover { color: #fff; }
.footer-contact-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.footer-contact-items a { color: #cfd6de; font-size: 13.5px; font-weight: 600; display: flex; align-items: center; gap: 8px; transition: color .15s; }
.footer-contact-items a:hover { color: #fff; }
.footer-contact-items a i { color: var(--accent); width: 14px; }
.footer-contact-items span { color: #cfd6de; font-size: 13.5px; font-weight: 600; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact-items span i { color: var(--accent); width: 14px; margin-top: 3px; }
.subscribe-row { display: flex; margin-bottom: 16px; }
.subscribe-row input { flex: 1; min-width: 0; padding: 11px 14px; border: 1px solid #2c3644; border-radius: 6px 0 0 6px; font-size: 13.5px; background: #1a222d; color: #fff; }
.subscribe-row input::placeholder { color: #6b7684; }
.subscribe-row input:focus { outline: none; border-color: var(--accent); }
.subscribe-row button { flex-shrink: 0; background: var(--accent); color: #fff; border: none; padding: 0 18px; font-weight: 800; font-size: 13px; border-radius: 0 6px 6px 0; transition: background .15s; }
.subscribe-row button:hover { background: #e65f00; }
.social-icons { display: flex; gap: 14px; }
.social-icons a { color: #93a0af; font-size: 18px; transition: color .15s, transform .15s; }
.social-icons a:hover { color: #fff; transform: translateY(-2px); }
.footer-copy { text-align: center; font-size: 12.5px; color: #5b6675; padding-top: 26px; }

/* Search results page */
.breadcrumb { max-width: 1600px; margin: 0 auto; padding: 14px 40px; font-size: 13px; color: var(--muted); }
.breadcrumb .current { color: var(--ink); font-weight: 700; }
.listing-wrap { max-width: 1600px; margin: 0 auto; display: grid; grid-template-columns: 260px 1fr; gap: 30px; padding: 0 40px 50px; }
.filters { border: 1px solid var(--line); border-radius: 10px; padding: 20px; align-self: start; position: sticky; top: 90px; }
.filters h3 { font-size: 15px; margin-bottom: 16px; }
.filter-group { border-bottom: 1px solid var(--line); padding-bottom: 14px; margin-bottom: 14px; }
.filter-group:last-child { border: none; margin: 0; padding: 0; }
.fg-title { font-size: 13.5px; font-weight: 700; margin-bottom: 10px; }
.filter-option { display: flex; align-items: center; gap: 8px; font-size: 13px; padding: 5px 0; color: #444; cursor: pointer; }
.listing-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.listing-header h1 { font-size: 20px; font-weight: 800; display: flex; align-items: center; gap: 12px; }
.listing-header .count { font-size: 13px; font-weight: 500; color: var(--muted); }
.sort-box { font-size: 13.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.results-list { display: flex; flex-direction: column; gap: 14px; }
.result-row { display: grid; grid-template-columns: 120px 1fr auto; gap: 20px; border: 1px solid var(--line); border-radius: 10px; padding: 18px; cursor: pointer; transition: box-shadow .15s, border-color .15s; align-items: center; }
.result-row:hover { box-shadow: 0 10px 24px rgba(16,21,29,.08); border-color: var(--steel-light); }
.result-row .img-wrap { width: 100px; height: 100px; background: var(--surface); border-radius: 8px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.result-row .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.result-main .pn { font-family: 'Courier New', monospace; font-size: 12.5px; font-weight: 800; color: var(--steel); }
.result-main .title { font-size: 16px; font-weight: 700; margin: 4px 0 6px; }
.result-main .desc { font-size: 13px; color: var(--muted); margin-bottom: 8px; line-height: 1.5; }
.result-main .tags { display: flex; gap: 8px; flex-wrap: wrap; }
.result-main .tags span { font-size: 11px; background: var(--surface); border: 1px solid var(--line); border-radius: 4px; padding: 3px 8px; color: #555; }
.result-side { text-align: right; min-width: 160px; }
.result-side .now { font-size: 20px; font-weight: 800; }
.result-side .unit { font-size: 12px; color: var(--muted); }
.result-side .stock { font-size: 12px; font-weight: 700; margin: 6px 0; }
.result-side .stock.in { color: var(--green); }
.result-side .stock.low { color: #a05a00; }
.result-side .stock.out { color: var(--red); }
.result-side button { background: var(--steel); color: #fff; border: none; border-radius: 6px; padding: 9px 18px; font-weight: 700; font-size: 13px; }
.result-side button:hover { background: var(--steel-light); }

/* Product detail page */
.pd-wrap { max-width: 1400px; margin: 0 auto; padding: 30px 40px 60px; display: grid; grid-template-columns: 380px 1fr; gap: 44px; }
.pd-wrap.pd-wrap-3col { grid-template-columns: 380px 1fr 300px; align-items: start; }
.pd-buybox { border: 1px solid var(--line); border-radius: 10px; padding: 22px; position: sticky; top: 90px; background: var(--surface); }
.from-price-big { font-size: 24px; font-weight: 800; color: var(--ink); }
.from-price-sub { font-size: 12px; color: var(--muted); margin: 4px 0 16px; }
.packsize-select {
  width: 100%; padding: 12px 14px; border-radius: 8px; border: 1.5px solid var(--line);
  background: #fff; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 12px;
}
.buybox-stock { font-size: 13px; font-weight: 700; color: var(--green); }
.buybox-stock.out { color: var(--red); }
.pd-gallery-main { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 12px; }
.pd-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: flex; gap: 10px; }
.pd-thumbs .thumb { width: 68px; height: 68px; border-radius: 8px; border: 2px solid var(--line); overflow: hidden; cursor: pointer; background: var(--surface); }
.pd-thumbs .thumb.active { border-color: var(--steel-light); }
.pd-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }

.pd-pn { font-family: 'Courier New', monospace; font-size: 13.5px; font-weight: 800; color: var(--steel); margin-bottom: 8px; }
.pd-title { font-size: 26px; font-weight: 800; margin-bottom: 10px; line-height: 1.25; }
.pd-meta-row { display: flex; gap: 16px; font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.pd-meta-row span { display: flex; align-items: center; gap: 5px; }
.pd-desc { font-size: 14.5px; color: #3d4450; line-height: 1.65; margin-bottom: 22px; }

.pd-section-label { font-size: 13px; font-weight: 800; letter-spacing: .3px; margin-bottom: 10px; text-transform: uppercase; color: var(--ink); }

/* Packsize selector */
.packsize-row { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.packsize-opt {
  border: 1.5px solid var(--line); border-radius: 8px; padding: 10px 16px; cursor: pointer;
  text-align: center; transition: border-color .15s, background .15s; min-width: 90px;
}
.packsize-opt .qty { font-size: 14.5px; font-weight: 800; }
.packsize-opt .price { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.packsize-opt:hover { border-color: var(--steel-light); }
.packsize-opt.active { border-color: var(--steel); background: #eef4fa; }
.packsize-opt.active .price { color: var(--steel); }
.pack-stock { font-size: 10.5px; font-weight: 700; margin-top: 4px; color: var(--green); }
.from-price { font-size: 12.5px; font-weight: 700; color: var(--steel-light); text-transform: none; letter-spacing: 0; margin-left: 8px; }

/* bulk pricing table */
.bulk-table { width: 100%; border-collapse: collapse; margin-bottom: 26px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.bulk-table th, .bulk-table td { padding: 11px 16px; text-align: left; font-size: 13.5px; border-bottom: 1px solid var(--line); }
.bulk-table th { background: var(--surface); font-weight: 700; color: #444; }
.bulk-table tr:last-child td { border-bottom: none; }
.bulk-table td.qty-col { font-weight: 700; }
.bulk-table td.save-col { color: var(--green); font-weight: 700; }
.bulk-table tr.best-value td { background: #fff8ee; }

/* batch/shelf life */
.batch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 26px; }
.batch-card { border: 1px solid var(--line); border-radius: 8px; padding: 14px; }
.batch-card .lbl { font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .3px; margin-bottom: 4px; }
.batch-card .val { font-size: 15px; font-weight: 800; }
.batch-card .val.warn { color: #a05a00; }
.batch-card .val.ok { color: var(--green); }

.pd-buy-row { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.qty-stepper { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 8px; }
.qty-stepper button { width: 38px; height: 44px; border: none; background: none; font-size: 16px; font-weight: 700; }
.qty-stepper input { width: 56px; height: 44px; border: none; text-align: center; font-size: 14.5px; font-weight: 700; border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.add-cart { flex: 1; background: var(--accent); color: #fff; border: none; border-radius: 8px; height: 46px; font-weight: 800; font-size: 14.5px; letter-spacing: .3px; }
.add-cart:hover { background: #e65f00; }
.quote-btn { background: var(--steel); color: #fff; border: none; border-radius: 8px; height: 46px; padding: 0 22px; font-weight: 800; font-size: 14.5px; }
.quote-btn:hover { background: var(--steel-light); }

.pd-tabs { display: flex; gap: 26px; border-bottom: 1px solid var(--line); margin: 30px 0 20px; }
.pd-tabs .tab { padding-bottom: 12px; font-size: 14.5px; font-weight: 700; color: var(--muted); cursor: pointer; border-bottom: 3px solid transparent; }
.pd-tabs .tab.active { color: var(--ink); border-color: var(--accent); }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr td { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.spec-table tr td:first-child { color: var(--muted); width: 220px; }
.spec-table tr td:last-child { font-weight: 600; }

/* alternatives */
.alt-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 12px; }
.alt-card { border: 1px solid var(--line); border-radius: 10px; padding: 14px; cursor: pointer; transition: box-shadow .15s, border-color .15s; }
.alt-card:hover { box-shadow: 0 8px 20px rgba(16,21,29,.08); border-color: var(--steel-light); }
.alt-card .img-wrap { aspect-ratio: 4/3; background: var(--surface); border-radius: 6px; margin-bottom: 10px; overflow: hidden; }
.alt-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.alt-card .pn { font-family: 'Courier New', monospace; font-size: 11.5px; font-weight: 800; color: var(--steel); }
.alt-card .title { font-size: 13px; font-weight: 600; margin: 4px 0 6px; height: 34px; overflow: hidden; }
.alt-card .why { font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.alt-card .price { font-size: 14.5px; font-weight: 800; }
.alt-card .alt-stock { font-size: 11px; font-weight: 700; color: var(--green); margin-bottom: 4px; }
.alt-card .alt-stock.out { color: var(--red); }
.alt-add-btn { width: 100%; margin-top: 8px; background: var(--steel); color: #fff; border: none; border-radius: 6px; padding: 8px; font-weight: 700; font-size: 12.5px; }
.alt-add-btn:hover { background: var(--steel-light); }

/* Star-rating breakdown bar (skygeek-style trust block) */
.rating-summary { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.rating-big { text-align: center; }
.rating-big .score { font-size: 40px; font-weight: 800; color: var(--ink); }
.rating-big .stars { color: #ff9d00; font-size: 16px; margin: 4px 0; }
.rating-big .count { font-size: 12.5px; color: var(--muted); }
.rating-bars { flex: 1; min-width: 260px; display: flex; flex-direction: column; gap: 6px; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; font-size: 12.5px; }
.rating-bar-row .star-lbl { width: 34px; flex-shrink: 0; }
.rating-bar-row .bar-track { flex: 1; height: 8px; background: var(--line); border-radius: 4px; overflow: hidden; }
.rating-bar-row .bar-fill { height: 100%; background: var(--accent); border-radius: 4px; }
.rating-bar-row .val { width: 90px; text-align: right; color: var(--muted); flex-shrink: 0; }
.rating-pct { text-align: center; }
.rating-pct .big { font-size: 26px; font-weight: 800; color: var(--green); }
.rating-pct .lbl { font-size: 12px; color: var(--muted); max-width: 140px; }

/* Scroll-reveal animation */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Card/tile fade-in on load */
.product-card, .tile, .value-item, .alt-card, .result-row {
  animation: axCardIn .5s ease backwards;
}
.product-grid .product-card:nth-child(1) { animation-delay: .04s; }
.product-grid .product-card:nth-child(2) { animation-delay: .09s; }
.product-grid .product-card:nth-child(3) { animation-delay: .14s; }
.product-grid .product-card:nth-child(4) { animation-delay: .19s; }
.product-grid .product-card:nth-child(5) { animation-delay: .24s; }
.product-grid .product-card:nth-child(6) { animation-delay: .29s; }
.product-grid .product-card:nth-child(7) { animation-delay: .34s; }
.product-grid .product-card:nth-child(8) { animation-delay: .39s; }
.tile-grid .tile:nth-child(1) { animation-delay: .04s; }
.tile-grid .tile:nth-child(2) { animation-delay: .09s; }
.tile-grid .tile:nth-child(3) { animation-delay: .14s; }
.tile-grid .tile:nth-child(4) { animation-delay: .19s; }
.tile-grid .tile:nth-child(5) { animation-delay: .24s; }
.tile-grid .tile:nth-child(6) { animation-delay: .29s; }
.value-grid .value-item:nth-child(1) { animation-delay: .04s; }
.value-grid .value-item:nth-child(2) { animation-delay: .1s; }
.value-grid .value-item:nth-child(3) { animation-delay: .16s; }
.value-grid .value-item:nth-child(4) { animation-delay: .22s; }
.results-list .result-row:nth-child(1) { animation-delay: .03s; }
.results-list .result-row:nth-child(2) { animation-delay: .07s; }
.results-list .result-row:nth-child(3) { animation-delay: .11s; }
.results-list .result-row:nth-child(4) { animation-delay: .15s; }
.results-list .result-row:nth-child(5) { animation-delay: .19s; }
@keyframes axCardIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* Image placeholder shimmer until photos load */
.img-wrap, .pd-gallery-main, .thumb, .suggest-thumb {
  background: linear-gradient(110deg, #ececef 8%, #f6f6f8 18%, #ececef 33%);
  background-size: 200% 100%;
  animation: axShimmer 1.6s linear infinite;
}
.img-wrap img[src]:not([src=""]), .pd-gallery-main img[src]:not([src=""]), .thumb img[src], .suggest-thumb[src] { animation: none; }
@keyframes axShimmer { to { background-position-x: -200%; } }

/* Hero entrance */
.hero-copy .eyebrow, .hero-copy h1, .hero-copy p, .hero-search, .hero-stats {
  animation: axFadeUp .6s ease backwards;
}
.hero-copy h1 { animation-delay: .08s; }
.hero-copy p { animation-delay: .16s; }
.hero-search { animation-delay: .24s; }
.hero-stats { animation-delay: .32s; }
.hero-visual i { animation: axFloat 4s ease-in-out infinite; }
@keyframes axFadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes axFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Search suggestion dropdown motion */
.search-suggest { transform: translateY(-6px); opacity: 0; transition: opacity .15s ease, transform .15s ease; pointer-events: none; }
.search-suggest.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.suggest-item { transition: background .15s ease; }

/* Packsize / bulk table subtle interaction */
.packsize-opt { transition: border-color .15s, background .15s, transform .15s; }
.packsize-opt:active { transform: scale(.97); }
.bulk-table tr { transition: background .15s; }
.bulk-table tr:hover td { background: #fafbfc; }
.add-cart, .quote-btn { transition: background .15s, transform .1s; }
.add-cart:active, .quote-btn:active { transform: scale(.98); }

/* Cat pill + tile icon micro-interaction */
.cat-pill i { transition: transform .2s; }
.cat-pill:hover i { transform: scale(1.15); }
.tile i { transition: transform .2s; }
.tile:hover i { transform: scale(1.12) rotate(-4deg); }

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .tile-grid { grid-template-columns: repeat(3,1fr); }
  .value-grid { grid-template-columns: repeat(2,1fr); }
  .listing-wrap { grid-template-columns: 1fr; }
  .filters { position: static; }
  .pd-wrap, .pd-wrap.pd-wrap-3col { grid-template-columns: 1fr; }
  .pd-buybox { position: static; order: -1; }
  .alt-row { grid-template-columns: repeat(2,1fr); }
  .hero-inner { flex-direction: column; }
  .hero-visual { display: none; }
  .promo-grid, .brand-grid { grid-template-columns: repeat(2,1fr); }
  .product-row { grid-auto-columns: 46%; }
  .testimonial-wrap { grid-template-columns: 1fr; }
  .rating-summary { flex-direction: column; align-items: flex-start; gap: 20px; }
  .why-choose { flex-direction: column; }
}
/* Hamburger + mobile sidebar */
.hamburger-btn { display: none; border: none; background: none; font-size: 18px; color: var(--ink); cursor: pointer; padding: 4px 8px; }
.sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 300; opacity: 0; transition: opacity .25s; }
.sidebar-overlay.open { display: block; opacity: 1; }
.mobile-sidebar {
  position: fixed; top: 0; left: 0; bottom: 0; width: 78%; max-width: 320px;
  background: #fff; z-index: 301; transform: translateX(-100%); transition: transform .25s ease;
  overflow-y: auto; box-shadow: 4px 0 20px rgba(0,0,0,.15);
}
.mobile-sidebar.open { transform: translateX(0); }
.mobile-sidebar-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.mobile-sidebar-header .logo { font-size: 20px; font-weight: 800; color: var(--steel); }
.mobile-sidebar-header .logo span { color: var(--accent); }
.mobile-sidebar-header button { border: none; background: none; font-size: 18px; color: var(--muted); cursor: pointer; }
.mobile-sidebar-nav ul { padding: 8px 0; }
.mobile-sidebar-nav a { display: block; padding: 14px 20px; font-size: 15px; font-weight: 600; color: var(--ink); }
.mobile-search { padding: 14px 20px; border-bottom: 1px solid var(--line); }
.mobile-search input { width: 100%; padding: 10px 14px; border-radius: 8px; border: 1.5px solid var(--line); background: var(--surface); font-size: 14px; }
@media (max-width: 700px) {
  .hamburger-btn { display: block; }
  nav.main-nav, .search-box { display: none; }
  .util-bar { padding: 8px 16px; }
  .util-bar ul:last-child { display: none; }
  .header-inner { padding: 12px 16px; }
  .pill-row { padding: 10px 16px; }
  .hero { padding: 40px 16px; }
  .hero-copy h1 { font-size: 26px; }
  .section { padding: 30px 16px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .tile-grid { grid-template-columns: repeat(2,1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .subscribe-row { flex-wrap: wrap; }
  .subscribe-row input { flex: 1 1 100%; border-radius: 6px; }
  .subscribe-row button { flex: 1 1 100%; border-radius: 6px; padding: 11px 18px; margin-top: 8px; }
  .footer-brand-row { flex-direction: column; align-items: flex-start; }
  .result-row { grid-template-columns: 1fr; }
  .result-side { text-align: left; }
  .listing-wrap { padding: 0 16px 40px; }
  .breadcrumb { padding: 14px 16px; }

  /* Section titles / text scaling */
  .section-title { font-size: 19px; }
  .section-sub { font-size: 13px; }
  .eyebrow { font-size: 11px; }
  .hero-copy p { font-size: 14px; }
  .hero-search input, .hero-search button { font-size: 13.5px; padding: 12px 14px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stats .num { font-size: 19px; }
  .hero-stats .lbl { font-size: 11px; }

  /* Offer banner */
  .offer-copy h3 { font-size: 16px; }
  .offer-copy p { font-size: 12.5px; }
  .offer-tag { font-size: 11px; }
  .offer-cta { font-size: 13px; padding: 12px 20px; width: 100%; justify-content: center; }
  .offer-banner-inner { flex-direction: column; align-items: flex-start; }

  /* Promo + category + brand cards */
  .promo-grid { grid-template-columns: 1fr; }
  .promo-copy h4 { font-size: 14.5px; }
  .promo-tag { font-size: 10.5px; }
  .brand-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .brand-card { padding: 18px 12px; }
  .brand-name { font-size: 13px; }
  .brand-count { font-size: 11px; }
  .tile .label, .tile-photo .label { font-size: 12.5px; }
  .tile .count { font-size: 10.5px; }

  /* Value props */
  .value-item { padding: 18px; }
  .value-item h3 { font-size: 14px; }
  .value-item p { font-size: 12.5px; }

  /* Compare table */
  .compare-table { margin-top: 24px; }
  .compare-row > div { padding: 12px 14px; font-size: 12.5px; }

  /* AOG banner */
  .aog-inner { flex-direction: column; align-items: flex-start; padding: 16px; }
  .aog-inner > div { font-size: 13px; }
  .aog-btn { font-size: 12.5px; width: 100%; justify-content: center; }

  /* Testimonials */
  .featured-quote { padding: 22px; }
  .featured-quote-text { font-size: 15px; }
  .quote-mark { font-size: 26px; }
  .rating-big .score { font-size: 30px; }
  .rating-bar-row { font-size: 11.5px; }
  .rating-bar-row .val { width: 70px; }
  .rating-pct .big { font-size: 20px; }

  /* Product cards */
  .product-info .pn { font-size: 11px; }
  .product-info .title { font-size: 13px; height: auto; }
  .product-info .price-row .now { font-size: 16px; }
  .bulk-hint { font-size: 10.5px; }

  /* Product detail page */
  .pd-title { font-size: 20px; }
  .pd-desc { font-size: 13.5px; }
  .pd-meta-row { flex-wrap: wrap; gap: 10px; font-size: 12px; }
  .from-price-big { font-size: 20px; }
  .batch-grid { grid-template-columns: 1fr 1fr; }
  .batch-card .val { font-size: 13px; }
  .bulk-table th, .bulk-table td { padding: 9px 10px; font-size: 12.5px; }
  .alt-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .spec-table tr td { font-size: 12.5px; padding: 8px 0; }
  .spec-table tr td:first-child { width: 45%; }
}

/* Toast */
.ax-toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff; padding: 13px 22px; border-radius: 8px;
  font-size: 13.5px; font-weight: 600; opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s; z-index: 999; box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.ax-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Generic static content pages */
.page-banner { background: var(--steel); color: #fff; padding: 42px 40px; }
.page-banner-inner { max-width: 1600px; margin: 0 auto; }
.page-banner .eyebrow { color: var(--accent); font-weight: 800; letter-spacing: 1.2px; font-size: 12.5px; text-transform: uppercase; margin-bottom: 10px; }
.page-banner h1 { font-size: 32px; font-weight: 800; }
.page-banner p { color: #c7d2e0; margin-top: 10px; font-size: 14.5px; max-width: 640px; }
.static-wrap { max-width: 1000px; margin: 0 auto; padding: 46px 40px 70px; }
.static-wrap.wide { max-width: 1300px; }
.static-wrap h2 { font-size: 21px; font-weight: 800; margin: 34px 0 14px; }
.static-wrap h2:first-child { margin-top: 0; }
.static-wrap p { color: #414a56; line-height: 1.7; font-size: 14.5px; margin-bottom: 12px; }
.static-wrap ul.bullet-list { margin: 10px 0 18px 0; }
.static-wrap ul.bullet-list li { position: relative; padding-left: 22px; color: #414a56; line-height: 1.7; font-size: 14.5px; margin-bottom: 8px; }
.static-wrap ul.bullet-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--green); position: absolute; left: 0; top: 2px; font-size: 11px; }

.value-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 20px 0 10px; }
.value-cards-grid .vc { border: 1px solid var(--line); border-radius: 10px; padding: 22px; }
.value-cards-grid .vc i { color: var(--accent); font-size: 22px; margin-bottom: 12px; }
.value-cards-grid .vc h4 { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.value-cards-grid .vc p { font-size: 13.5px; margin: 0; }

.stat-strip { display: flex; gap: 40px; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 26px 0; flex-wrap: wrap; }
.stat-strip div { }
.stat-strip .num { font-size: 26px; font-weight: 800; color: var(--steel); }
.stat-strip .lbl { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* Forms */
.ax-form { border: 1px solid var(--line); border-radius: 12px; padding: 30px; background: var(--surface); }
.ax-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.ax-form .form-row.full { grid-template-columns: 1fr; }
.ax-form label { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.ax-form input, .ax-form select, .ax-form textarea {
  width: 100%; padding: 11px 13px; border-radius: 7px; border: 1.5px solid var(--line);
  font-size: 14px; background: #fff;
}
.ax-form textarea { resize: vertical; min-height: 90px; }
.submit-btn {
  background: var(--accent); color: #fff; border: none; padding: 13px 26px;
  border-radius: 8px; font-weight: 800; font-size: 14.5px; margin-top: 6px;
}
.submit-btn:hover { background: #e65f00; }
.ax-form-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.form-success { display: none; border: 1.5px solid var(--green); background: #eafaf1; color: var(--green); padding: 14px 18px; border-radius: 8px; font-size: 13.5px; font-weight: 700; margin-bottom: 18px; }
.form-success.show { display: block; }

/* Jobs / Careers */
.job-list { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; margin-top: 10px; }
.job-row { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.job-row:last-child { border-bottom: none; }
.job-row h4 { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.job-row .job-meta { font-size: 12.5px; color: var(--muted); }
.job-row .job-meta span { margin-right: 12px; }
.job-apply-btn, .btn-secondary { border: 1.5px solid var(--steel); color: var(--steel); background: none; padding: 9px 18px; border-radius: 7px; font-weight: 700; font-size: 13px; white-space: nowrap; }
.job-apply-btn:hover, .btn-secondary:hover { background: var(--steel); color: #fff; }

/* Login */
.auth-split { display: grid; grid-template-columns: 1fr 480px; min-height: 640px; }
.auth-banner {
  background: linear-gradient(160deg, var(--steel) 0%, #060d29 100%);
  color: #fff; padding: 56px 56px; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.auth-banner::before {
  content: "\f0fb"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; right: -60px; bottom: -60px; font-size: 320px; color: rgba(255,255,255,.05); transform: rotate(-15deg);
}
.auth-banner .eyebrow { color: var(--accent); font-weight: 800; letter-spacing: 1.2px; font-size: 12.5px; text-transform: uppercase; margin-bottom: 14px; }
.auth-banner h2 { font-size: 30px; font-weight: 800; line-height: 1.25; margin-bottom: 16px; max-width: 420px; }
.auth-banner p { color: #c7d2e0; font-size: 14.5px; line-height: 1.7; max-width: 400px; margin-bottom: 32px; }
.auth-banner-points { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.auth-banner-points div { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; }
.auth-banner-points i { color: var(--accent); font-size: 16px; width: 20px; }
.auth-banner-quote { border-left: 3px solid var(--accent); padding-left: 16px; font-size: 13.5px; color: #c7d2e0; font-style: italic; max-width: 380px; }
.auth-banner-quote span { display: block; margin-top: 8px; font-style: normal; font-weight: 700; color: #fff; }
.auth-panel-side { display: flex; align-items: center; justify-content: center; padding: 50px 40px; }
@media (max-width: 900px) {
  .auth-split { grid-template-columns: 1fr; min-height: auto; }
  .auth-banner { display: none; }
}
.auth-wrap { max-width: 420px; margin: 0 auto; padding: 0; width: 100%; }
.auth-card { border: 1px solid var(--line); border-radius: 12px; padding: 32px; width: 100%; }
.auth-card h1 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.auth-card .sub { font-size: 13.5px; color: var(--muted); margin-bottom: 24px; }
.auth-tabs { display: flex; gap: 4px; background: var(--surface); padding: 4px; border-radius: 8px; margin-bottom: 22px; }
.auth-tabs button { flex: 1; padding: 9px; border: none; background: none; border-radius: 6px; font-weight: 700; font-size: 13.5px; color: var(--muted); }
.auth-tabs button.active { background: #fff; color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,.1); }
.auth-panel { display: none; }
.auth-panel.active { display: block; }
.auth-links { display: flex; justify-content: space-between; font-size: 12.5px; margin-top: 14px; }
.auth-links a { color: var(--steel-light); font-weight: 600; }
.auth-divider { text-align: center; font-size: 12px; color: var(--muted); margin: 20px 0; position: relative; }
.auth-divider::before, .auth-divider::after { content: ""; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--line); }
.auth-divider::before { left: 0; } .auth-divider::after { right: 0; }
.social-login-btn { width: 100%; border: 1.5px solid var(--line); background: #fff; padding: 11px; border-radius: 8px; font-weight: 700; font-size: 13.5px; display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 10px; }

/* Cart page */
.cart-wrap { max-width: 1200px; margin: 0 auto; padding: 34px 40px 70px; display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.cart-empty { text-align: center; padding: 70px 20px; }
.cart-empty i { font-size: 50px; color: var(--line); margin-bottom: 18px; }
.cart-empty h2 { font-size: 19px; margin-bottom: 8px; }
.cart-empty p { color: var(--muted); margin-bottom: 22px; }
.cart-item-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-item-row .img-wrap { width: 84px; height: 84px; border-radius: 8px; overflow: hidden; background: var(--surface); flex-shrink: 0; }
.cart-item-row .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-info .pn { font-size: 11.5px; color: var(--steel-light); font-weight: 700; letter-spacing: .3px; }
.cart-item-info .title { font-size: 14.5px; font-weight: 700; margin: 3px 0; }
.cart-item-info .pack { font-size: 12.5px; color: var(--muted); }
.cart-item-price { font-weight: 800; font-size: 15px; width: 90px; text-align: right; }
.cart-item-remove { color: var(--red); font-size: 13px; background: none; border: none; margin-left: 14px; }
.cart-summary { border: 1px solid var(--line); border-radius: 12px; padding: 24px; position: sticky; top: 90px; }
.cart-summary h3 { font-size: 16px; font-weight: 800; margin-bottom: 16px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; color: #414a56; }
.cart-summary-row.total { font-size: 17px; font-weight: 800; color: var(--ink); border-top: 1px solid var(--line); padding-top: 14px; margin-top: 14px; }
@media (max-width: 900px) {
  .cart-wrap { grid-template-columns: 1fr; }
  .ax-form .form-row { grid-template-columns: 1fr; }
  .value-cards-grid { grid-template-columns: 1fr; }
  .job-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .static-wrap { padding: 30px 16px 50px; }
  .page-banner { padding: 30px 16px; }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

/* About page extras */
.about-story-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; margin-bottom: 10px; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-visual img { border-radius: 10px; aspect-ratio: 1; object-fit: cover; width: 100%; }
.about-visual img:first-child { grid-row: span 2; aspect-ratio: auto; height: 100%; }

.timeline { position: relative; margin: 20px 0 10px; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline-item { position: relative; padding-bottom: 26px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ""; position: absolute; left: -28px; top: 3px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); border: 3px solid #fff; box-shadow: 0 0 0 1.5px var(--accent); }
.timeline-item .yr { font-size: 12.5px; font-weight: 800; color: var(--accent); letter-spacing: .3px; margin-bottom: 4px; }
.timeline-item h4 { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.timeline-item p { font-size: 13.5px; margin: 0; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 10px; }
.team-card { text-align: center; }
.team-card .avatar { width: 84px; height: 84px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 34px; color: var(--steel-light); }
.team-card h4 { font-size: 14.5px; font-weight: 800; margin-bottom: 2px; }
.team-card .role { font-size: 12.5px; color: var(--muted); }

.about-cta { max-width: 1300px; margin: 0 auto 46px; padding: 0 40px; }
@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .about-cta { padding: 0 16px; }
  .about-story-grid { gap: 24px; }
  .stat-strip { gap: 24px 32px; padding: 20px 0; }
  .stat-strip .num { font-size: 22px; }
  .timeline { padding-left: 22px; }
  .timeline-item::before { left: -22px; }

  .auth-panel-side { padding: 30px 16px; }
  .auth-card { padding: 24px 20px; }
  .auth-split { min-height: auto; }

  .cart-wrap { padding: 24px 16px 50px; gap: 20px; }
  .cart-item-row { flex-wrap: wrap; gap: 12px; padding: 16px 0; }
  .cart-item-info { flex-basis: calc(100% - 96px); }
  .cart-item-price { width: auto; margin-left: auto; }
  .cart-summary { position: static; }
}

/* About page animation polish */
.value-cards-grid .vc { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.value-cards-grid .vc:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(16,21,29,.09); border-color: var(--steel-light); }
.value-cards-grid .vc i { transition: transform .25s ease; }
.value-cards-grid .vc:hover i { transform: scale(1.15) rotate(-6deg); }

.about-visual img { transition: transform .4s ease; }
.about-visual img:hover { transform: scale(1.04); }

.timeline-item { opacity: 0; transform: translateX(-16px); transition: opacity .6s ease, transform .6s ease; }
.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-item:nth-child(1) { transition-delay: 0s; }
.timeline-item:nth-child(2) { transition-delay: .1s; }
.timeline-item:nth-child(3) { transition-delay: .2s; }
.timeline-item:nth-child(4) { transition-delay: .3s; }
.timeline-item::before { transition: transform .3s ease .3s; transform: scale(0); }
.timeline-item.visible::before { transform: scale(1); }

.team-card { transition: transform .25s ease; }
.team-card:hover { transform: translateY(-5px); }
.team-card .avatar { transition: background .25s ease, color .25s ease, transform .25s ease; }
.team-card:hover .avatar { background: var(--steel); color: #fff; transform: scale(1.08); }
.team-grid.reveal.visible .team-card:nth-child(1) { transition-delay: .05s; }
.team-grid.reveal.visible .team-card:nth-child(2) { transition-delay: .12s; }
.team-grid.reveal.visible .team-card:nth-child(3) { transition-delay: .19s; }
.team-grid.reveal.visible .team-card:nth-child(4) { transition-delay: .26s; }

.stat-strip .num { transition: color .2s ease; }
