/* ============================================================================
   Leetam — v22 "Courts pattern" layer
   Loads after base.css and refine.css. Rebuilds the header, footer, banners
   and every product rail to match the Courts Jamaica home page structure,
   using Leetam's own blue / red / charcoal.
   ========================================================================== */

:root {
  --c-blue:       #0A5F8F;   /* header band, section headings */
  --c-blue-dark:  #07486C;   /* announcement bar */
  --c-blue-mid:   #0B6FA4;
  --c-red:        #E02534;   /* Leetam signature — now-price + primary CTA */
  --c-red-deep:   #B3111F;
  --c-green:      #22A54B;   /* discount chip */
  --c-teal:       #12ADA9;   /* SAVE chip */
  --c-bg:         #EFF2F7;   /* page canvas */
  --c-plate:      #F5F6F8;   /* product image plate */
  --c-ink:        #16202B;
  --c-ink-soft:   #5D6B7A;
  --c-line:       #E1E6EE;
  --c-r:          16px;      /* the Courts corner radius */
  --c-r-sm:       10px;
  --gutter:       20px;
}

body { background: var(--c-bg); }

/* ── Announcement bar ───────────────────────────────────────────────────── */
.top-bar, .util-bar, .cat-rail { display: none !important; }

.ann-bar { background: var(--c-blue-dark); color: #fff; }
.ann-bar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 11px var(--gutter);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
}
.ann-bar svg { width: 20px; height: 20px; flex: none; }

/* ── Header band ────────────────────────────────────────────────────────── */
.ct-header {
  position: sticky;
  top: 0;
  z-index: 101;
  background: var(--c-blue);
}
.ct-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px var(--gutter) 16px;
}
.ct-bar {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ct-menu {
  width: 52px; height: 52px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: var(--c-r-sm);
  background: rgba(0,0,0,.24);
  color: #fff;
  cursor: pointer;
}
.ct-menu svg { width: 24px; height: 24px; }
.ct-logo { display: flex; align-items: center; margin-right: auto; }
.ct-logo img { height: 52px; width: auto; display: block; }
.ct-actions { display: flex; align-items: center; gap: 6px; }
.ct-icon {
  position: relative;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--c-r-sm);
  color: #fff;
  transition: background .18s;
}
.ct-icon:hover { background: rgba(0,0,0,.18); }
.ct-icon svg { width: 27px; height: 27px; }
.ct-icon .cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 100px;
  background: var(--c-red);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 2px solid var(--c-blue);
}

/* Search — the wide white bar */
.ct-search {
  margin-top: 14px;
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--c-r-sm);
  overflow: hidden;
}
.ct-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 16px;
  color: var(--c-ink);
  padding: 18px 8px 18px 20px;
  min-width: 0;
}
.ct-search input::placeholder { color: #9AA5B2; }
.ct-search button {
  flex: none;
  width: 62px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--c-blue);
  background: transparent;
}
.ct-search button svg { width: 26px; height: 26px; }

/* Quick links strip under the header */
.ct-quick {
  background: #fff;
  border-bottom: 1px solid var(--c-line);
}
.ct-quick-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 26px;
  height: 52px;
  overflow-x: auto;
  scrollbar-width: none;
}
.ct-quick-inner::-webkit-scrollbar { display: none; }
.ct-quick a {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-blue);
  white-space: nowrap;
}
.ct-quick a:hover { color: var(--c-red); }
.ct-quick .sep { color: var(--c-line); flex: none; }

body { padding-top: 0 !important; }

/* ── Section furniture ──────────────────────────────────────────────────── */
.ct-section { padding: 30px 0 6px; }
.ct-section.on-white { background: #fff; padding-bottom: 34px; margin: 20px 0; }
.ct-wrap { max-width: 1280px; margin: 0 auto; padding: 0 var(--gutter); }

.ct-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.ct-head h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-blue);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 0;
}
.ct-head p { font-size: 14px; color: #9AA5B2; margin: 8px 0 0; max-width: 42ch; }
.ct-viewall {
  font-size: 15px;
  font-weight: 600;
  color: #9AA5B2;
  white-space: nowrap;
  padding-top: 4px;
}
.ct-viewall:hover { color: var(--c-blue); }
.ct-rule {
  height: 3px;
  background: #DDE3EB;
  border-radius: 3px;
  margin: 18px 0 22px;
  overflow: hidden;
}
.ct-rule span {
  display: block;
  height: 100%;
  width: 45%;
  background: var(--c-blue);
  border-radius: 3px;
  transition: width .25s ease, transform .25s ease;
}

/* ── Carousel ───────────────────────────────────────────────────────────── */
.ct-carousel { position: relative; }
.ct-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.ct-track::-webkit-scrollbar { display: none; }
.ct-track > * {
  flex: 0 0 calc((100% - 16px) / 2);
  scroll-snap-align: start;
  min-width: 0;
}
.ct-arrow {
  position: absolute;
  top: 42%;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  color: var(--c-blue);
  display: grid;
  place-items: center;
  box-shadow: 0 3px 14px rgba(16,32,43,.16);
  cursor: pointer;
  z-index: 3;
  transition: background .18s, color .18s;
}
.ct-arrow svg { width: 24px; height: 24px; }
.ct-arrow:hover { background: var(--c-blue); color: #fff; }
.ct-arrow.prev { left: calc(var(--gutter) * -1 + 4px); }
.ct-arrow.next { right: calc(var(--gutter) * -1 + 4px); }

/* ── Product card, Courts style ─────────────────────────────────────────── */
.pc {
  display: flex;
  flex-direction: column;
  background: var(--c-plate);
  border-radius: var(--c-r);
  overflow: hidden;
}
.pc-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--c-plate);
  display: grid;
  place-items: center;
  padding: 18px;
}
.pc-img img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.pc-img-fallback { color: #B7C0CB; font-size: 34px; }
.pc-off {
  position: absolute;
  top: 0; right: 0;
  background: var(--c-green);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 0 var(--c-r) 0 var(--c-r);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pc-off svg { width: 15px; height: 15px; }
.pc-ribbon {
  position: absolute;
  top: 0; left: 0;
  background: #A9123C;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--c-r) 0 var(--c-r) 0;
}
.pc-body {
  background: #fff;
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.pc-was {
  font-size: 15px;
  color: #9AA5B2;
  text-decoration: line-through;
  font-weight: 500;
}
.pc-now { font-size: 17px; font-weight: 800; color: #A9123C; }
.pc-price { font-size: 17px; font-weight: 800; color: var(--c-ink); }
.pc-quote {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-blue);
  background: #E8F2F9;
  border-radius: 100px;
  padding: 5px 12px;
}
.pc-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-ink);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 4px;
}
.pc-sku {
  font-family: 'SF Mono', ui-monospace, Menlo, Consolas, monospace;
  font-size: 11px;
  color: #9AA5B2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pc-btn {
  margin-top: auto;
  padding-top: 14px;
}
.pc-btn span {
  display: block;
  text-align: center;
  border: 1.5px solid #CBD3DD;
  border-radius: var(--c-r-sm);
  padding: 13px 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-ink);
  transition: border-color .18s, background .18s, color .18s;
}
.pc:hover .pc-btn span { border-color: var(--c-blue); background: var(--c-blue); color: #fff; }

/* ── Hero + promo banners ───────────────────────────────────────────────── */
.ct-hero { padding-top: 22px; }
.ct-hero .ct-carousel { position: relative; }
.ct-banner-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  border-radius: var(--c-r);
}
.ct-banner-track::-webkit-scrollbar { display: none; }
.ct-banner-track > * { flex: 0 0 100%; scroll-snap-align: start; }

.ct-hero-slide {
  position: relative;
  min-height: 300px;
  border-radius: var(--c-r);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 34px 30px;
  color: #fff;
}
.ct-hero-slide.s1 { background: linear-gradient(115deg, #0A5F8F 0%, #07486C 60%, #052F47 100%); }
.ct-hero-slide.s2 { background: linear-gradient(115deg, #E02534 0%, #A2101C 100%); }
.ct-hero-slide.s3 { background: linear-gradient(115deg, #16202B 0%, #29394A 100%); }
.ct-hero-slide.has-img::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--slide-img) center/cover no-repeat;
  opacity: .38;
}
.ct-hero-copy { position: relative; z-index: 2; max-width: 30ch; }
.ct-hero-kicker {
  display: inline-block;
  background: rgba(255,255,255,.16);
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ct-hero-slide h2 {
  font-size: clamp(1.7rem, 6vw, 2.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 10px;
}
.ct-hero-slide h2 em { font-style: normal; color: #FFD34D; }
.ct-hero-slide p { font-size: 15px; line-height: 1.5; color: rgba(255,255,255,.86); margin: 0 0 20px; }
.ct-btn-white {
  display: inline-block;
  background: #fff;
  color: var(--c-ink);
  border-radius: var(--c-r-sm);
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid #fff;
}
.ct-btn-white:hover { background: transparent; color: #fff; }

/* Stacked promo banner cards */
.ct-promos { display: grid; gap: 18px; margin-top: 18px; }
.ct-promo {
  position: relative;
  border-radius: var(--c-r);
  overflow: hidden;
  background: #ECEDEF;
  min-height: 210px;
  display: flex;
  align-items: center;
  padding: 24px 22px;
}
.ct-promo.tone-red { background: var(--c-red); }
.ct-promo.tone-dark { background: #16202B; }
.ct-promo-art {
  position: absolute;
  inset: 0;
  background: var(--promo-img) right center/cover no-repeat;
  opacity: .95;
}
.ct-promo-art::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(236,237,239,.98) 0%, rgba(236,237,239,.85) 42%, rgba(236,237,239,0) 78%);
}
.ct-promo.tone-red .ct-promo-art::after { background: linear-gradient(90deg, rgba(224,37,52,.97) 0%, rgba(224,37,52,.82) 45%, rgba(224,37,52,0) 80%); }
.ct-promo.tone-dark .ct-promo-art::after { background: linear-gradient(90deg, rgba(22,32,43,.97) 0%, rgba(22,32,43,.82) 45%, rgba(22,32,43,0) 80%); }
.ct-promo-copy { position: relative; z-index: 2; max-width: 26ch; }
.ct-save {
  display: inline-block;
  background: var(--c-teal);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.ct-promo h3 {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--c-ink);
  line-height: 1.25;
  margin: 0 0 3px;
}
.ct-promo h3 b { font-weight: 800; }
.ct-promo .code { font-size: 12.5px; color: #7A8694; letter-spacing: .04em; margin-bottom: 6px; }
.ct-promo .big {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--c-blue);
  letter-spacing: -.035em;
  line-height: 1;
}
.ct-promo .big s { font-size: 1.2rem; }
.ct-promo .was { font-size: 13.5px; color: #7A8694; margin-bottom: 14px; }
.ct-promo.tone-red h3, .ct-promo.tone-dark h3,
.ct-promo.tone-red .big, .ct-promo.tone-dark .big { color: #fff; }
.ct-promo.tone-red .code, .ct-promo.tone-red .was,
.ct-promo.tone-dark .code, .ct-promo.tone-dark .was { color: rgba(255,255,255,.75); }
.ct-btn-outline {
  display: inline-block;
  background: #fff;
  border: 1.5px solid #CBD3DD;
  border-radius: var(--c-r-sm);
  padding: 11px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-ink);
}
.ct-btn-outline:hover { border-color: var(--c-blue); color: var(--c-blue); }

/* ── Shop by category — circular tiles ──────────────────────────────────── */
.cat-circles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 14px;
}
.cat-circle { text-align: center; }
.cat-circle-art {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1/1;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--c-plate);
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.cat-circle:hover .cat-circle-art { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(16,32,43,.14); }
.cat-circle-art img { width: 74%; height: 74%; object-fit: contain; mix-blend-mode: multiply; }
.cat-circle-art svg { width: 44%; height: 44%; color: var(--c-blue); }
.cat-circle-art.is-sale {
  background: linear-gradient(180deg, #F2A03D 0%, #F2A03D 30%, #E02534 30%, #E02534 70%, #12ADA9 70%);
  color: #fff;
}
.cat-circle-art.is-sale span {
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}
.cat-circle-name { font-size: 15.5px; font-weight: 700; color: var(--c-ink); line-height: 1.25; }

/* ── Shop by brands ─────────────────────────────────────────────────────── */
.brand-card {
  border-radius: var(--c-r);
  overflow: hidden;
  background: #fff;
  display: block;
}
.brand-card-art {
  aspect-ratio: 4/3;
  background: var(--c-plate);
  background-size: cover;
  background-position: center;
}
.brand-card-name {
  padding: 16px 10px;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  color: var(--c-ink);
  letter-spacing: -.01em;
}

/* ── Service strip ──────────────────────────────────────────────────────── */
.ct-services { background: var(--c-blue); color: #fff; margin-top: 24px; }
.ct-services-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  text-align: center;
}
.ct-service svg { width: 34px; height: 34px; margin: 0 auto 12px; display: block; }
.ct-service b { display: block; font-size: 15.5px; font-weight: 700; margin-bottom: 5px; }
.ct-service span { font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.5; }

/* ── Newsletter ─────────────────────────────────────────────────────────── */
.ct-news { background: var(--c-blue); color: #fff; padding: 44px var(--gutter); text-align: center; }
.ct-news h2 { font-size: 1.6rem; font-weight: 800; color: #fff; margin: 0 0 14px; }
.ct-news p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.88); max-width: 620px; margin: 0 auto 22px; }
.ct-news-form { display: flex; max-width: 620px; margin: 0 auto; border-radius: 4px; overflow: hidden; }
.ct-news-form input {
  flex: 1;
  border: 0;
  background: rgba(0,0,0,.22);
  color: #fff;
  font: inherit;
  font-size: 15px;
  padding: 17px 18px;
  min-width: 0;
}
.ct-news-form input::placeholder { color: rgba(255,255,255,.6); }
.ct-news-form button {
  background: #fff;
  color: var(--c-blue);
  font-weight: 800;
  font-size: 15px;
  padding: 0 26px;
}

/* ── Footer, accordion style ────────────────────────────────────────────── */
footer { background: #fff !important; color: var(--c-ink) !important; }
.footer-grid, .footer-pay, .footer-bottom { display: none !important; }
.ct-footer { max-width: 760px; margin: 0 auto; padding: 34px var(--gutter) 30px; }
.ct-footer-logo { display: block; width: 190px; margin: 0 auto 26px; }
.ct-acc { border-bottom: 1px solid var(--c-line); }
.ct-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  color: var(--c-ink);
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.ct-acc-btn svg { width: 22px; height: 22px; flex: none; transition: transform .22s ease; }
.ct-acc.open .ct-acc-btn svg { transform: rotate(45deg); }
.ct-acc-body { display: none; padding: 0 4px 20px; }
.ct-acc.open .ct-acc-body { display: block; }
.ct-acc-body a, .ct-acc-body p {
  display: block;
  font-size: 14.5px;
  color: var(--c-ink-soft);
  padding: 7px 0;
  margin: 0;
}
.ct-acc-body a:hover { color: var(--c-blue); }
.ct-social { display: flex; justify-content: center; gap: 14px; margin: 30px 0 26px; }
.ct-social a {
  width: 58px; height: 58px;
  border-radius: var(--c-r-sm);
  background: var(--c-blue);
  color: #fff;
  display: grid;
  place-items: center;
}
.ct-social a:hover { background: var(--c-red); }
.ct-social svg { width: 27px; height: 27px; }
.ct-paylogos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
}
.ct-paylogos span {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--c-ink-soft);
  border: 1px solid var(--c-line);
  border-radius: 6px;
  padding: 7px 12px;
}
.ct-legal { text-align: center; font-size: 12.5px; color: #9AA5B2; padding: 22px 0 8px; line-height: 1.7; }
.ct-legal a { color: var(--c-ink-soft); }

/* ── Desktop ────────────────────────────────────────────────────────────── */
@media (min-width: 921px) {
  :root { --gutter: 24px; }
  .ct-bar { gap: 20px; }
  .ct-logo img { height: 58px; }
  .ct-search { max-width: 640px; margin: 14px auto 0; }
  .ct-track > * { flex: 0 0 calc((100% - 48px) / 4); }
  .ct-hero-slide { min-height: 400px; padding: 48px 56px; }
  .ct-hero-copy { max-width: 34ch; }
  .ct-promos { grid-template-columns: 1fr 1fr; }
  .ct-promo.wide { grid-column: 1 / -1; }
  .ct-promo { min-height: 240px; padding: 32px 34px; }
  .cat-circles { grid-template-columns: repeat(6, 1fr); }
  .ct-arrow.prev { left: -14px; }
  .ct-arrow.next { right: -14px; }
  .ct-section { padding: 40px 0 10px; }
  .ct-head h2 { font-size: 1.9rem; }
}

@media (max-width: 600px) {
  :root { --gutter: 16px; }
  .ct-head h2 { font-size: 1.35rem; }
  .ct-viewall { font-size: 14px; }
  .ct-arrow { width: 46px; height: 46px; }
  .ct-services-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .ct-promo { min-height: 180px; }
  .ct-promo .big { font-size: 2rem; }
  .cat-circles { gap: 22px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .ct-track, .ct-banner-track { scroll-behavior: auto; }
  .cat-circle:hover .cat-circle-art { transform: none; }
}

/* Brand plates get a quiet tint so the rail isn't a row of grey boxes */
.brand-card-art { background: linear-gradient(135deg, #DDE5EE 0%, #F2F5F9 100%); }
.brand-card:nth-child(2n) .brand-card-art { background: linear-gradient(135deg, #E7DEDF 0%, #F7F3F4 100%); }
.brand-card:nth-child(3n) .brand-card-art { background: linear-gradient(135deg, #DCE7E4 0%, #F2F7F6 100%); }

/* ── Legacy .part-card grids inherit the Courts card look ───────────────── */
.parts-grid, .related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 921px) {
  .parts-grid { grid-template-columns: repeat(4, 1fr); }
}
.part-card {
  background: var(--c-plate) !important;
  border: 0 !important;
  border-radius: var(--c-r) !important;
  box-shadow: none !important;
  overflow: hidden;
}
.part-card:hover { transform: none; box-shadow: 0 10px 26px rgba(16,32,43,.12) !important; }
.part-card-img {
  aspect-ratio: 1/1;
  background: var(--c-plate);
  border-bottom: 0;
  padding: 16px;
  display: grid;
  place-items: center;
}
.part-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.part-card-badge {
  top: 0; left: auto; right: 0;
  background: var(--c-green) !important;
  border-radius: 0 var(--c-r) 0 var(--c-r) !important;
  font-size: 12px;
  padding: 7px 12px;
  letter-spacing: 0;
  text-transform: none;
}
.part-card-body { background: #fff; padding: 16px 15px 18px; gap: 5px; }
.part-card-brand { color: #9AA5B2; font-size: 10.5px; }
.part-card-name { font-size: 15px; font-weight: 500; color: var(--c-ink); min-height: 2.7em; }
.part-card:hover .part-card-name { color: var(--c-ink); }
.part-card-sku { background: transparent; border: 0; padding: 0; color: #9AA5B2; font-size: 11px; }
.part-card-foot { border-top: 0; padding-top: 10px; margin-top: 8px; }
.part-card-price-num { font-size: 17px; font-weight: 800; color: var(--c-ink); }
.part-card-price-quote { background: #E8F2F9; color: var(--c-blue); }
.part-card-view { color: var(--c-blue); }

/* ============================================================================
   v23 — white logo bar, centred logo, inverted icons, smaller footer mark
   ========================================================================== */

.ct-header { background: var(--c-blue); }

/* White strip carrying the logo */
.ct-topline { background: #fff; border-bottom: 1px solid var(--c-line); }
.ct-topline .ct-bar {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 76px;
}

/* Logo sits dead centre regardless of what's either side */
.ct-topline .ct-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.ct-topline .ct-logo img { height: 58px; }

/* Icons inverted for the white background */
.ct-topline .ct-menu {
  background: var(--c-blue);
  color: #fff;
  width: 48px;
  height: 48px;
}
.ct-topline .ct-menu:hover { background: var(--c-blue-dark); }
.ct-topline .ct-icon { color: var(--c-blue); }
.ct-topline .ct-icon:hover { background: #EDF3F8; }
.ct-topline .cart-badge { border-color: #fff; }

/* Blue search row below */
.ct-searchline { background: var(--c-blue); }
.ct-searchline .ct-search {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  border-radius: var(--c-r-sm);
  width: auto;
}
.ct-searchline {
  padding: 14px var(--gutter) 16px;
}

/* Footer mark: smaller and given room */
.ct-footer-logo { width: 132px; margin: 8px auto 34px; }

@media (min-width: 921px) {
  .ct-topline .ct-bar { min-height: 88px; }
  .ct-topline .ct-logo img { height: 64px; }
  .ct-searchline .ct-search { max-width: 640px; }
  .ct-footer-logo { width: 150px; }
}
@media (max-width: 600px) {
  .ct-topline .ct-bar { min-height: 68px; padding: 8px var(--gutter); }
  .ct-topline .ct-logo img { height: 50px; }
  .ct-topline .ct-menu { width: 44px; height: 44px; }
  .ct-topline .ct-menu svg { width: 21px; height: 21px; }
  .ct-icon { width: 42px; height: 42px; }
  .ct-icon svg { width: 24px; height: 24px; }
  .ct-footer-logo { width: 118px; margin-bottom: 30px; }
}

/* ============================================================================
   v24 — Palette: red + graphite, blue retired.
   The logo red does the accent work; large structural bands go graphite so the
   red stays a signal rather than a wash. Blue survives only as a link tint.
   ========================================================================== */

:root {
  --c-blue:       #E02534;   /* was blue — now the logo red */
  --c-blue-dark:  #1E2732;   /* announcement bar / deep band → graphite */
  --c-blue-mid:   #B3111F;
  --c-graphite:   #232D39;
  --c-graphite-2: #303C4A;
  --c-red:        #E02534;
  --c-red-deep:   #B3111F;
  --c-red-soft:   #FDECEE;
}

/* Announcement bar → graphite with a red rule under it */
.ann-bar { background: var(--c-graphite); border-bottom: 2px solid var(--c-red); }

/* Section headings, view-all, rules */
.ct-head h2 { color: var(--c-graphite); }
.ct-rule span { background: var(--c-red); }
.ct-viewall:hover { color: var(--c-red); }

/* Service strip + newsletter → graphite bands, red detail */
.ct-services { background: var(--c-graphite); }
.ct-service svg { color: var(--c-red); }
.ct-news { background: var(--c-graphite); }
.ct-news-form button { color: var(--c-red); }
.ct-news h2 { position: relative; display: inline-block; padding-bottom: 12px; }
.ct-news h2::after {
  content: '';
  position: absolute; left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 54px; height: 3px;
  background: var(--c-red);
  border-radius: 3px;
}

/* Product cards: now-price in the logo red */
.pc-now { color: var(--c-red); }
.pc-quote { color: var(--c-red); background: var(--c-red-soft); }
.pc:hover .pc-btn span { border-color: var(--c-red); background: var(--c-red); color: #fff; }
.ct-arrow { color: var(--c-graphite); }
.ct-arrow:hover { background: var(--c-red); color: #fff; }

/* Category circles + brand tiles */
.cat-circle-art svg { color: var(--c-graphite); }
.cat-circle:hover .cat-circle-art svg { color: var(--c-red); }
.cat-circle-art.is-sale {
  background: linear-gradient(180deg, #E02534 0%, #E02534 34%, #1E2732 34%, #1E2732 68%, #9AA5B2 68%);
}

/* Hero + promos: graphite dominant, red as the second slide */
.ct-hero-slide.s1 { background: linear-gradient(115deg, #232D39 0%, #1A222C 60%, #11171E 100%); }
.ct-hero-slide.s2 { background: linear-gradient(115deg, #E02534 0%, #9E1622 100%); }
.ct-hero-slide.s3 { background: linear-gradient(115deg, #3B4654 0%, #232D39 100%); }
.ct-hero-slide h2 em { color: #FF6A73; }
.ct-hero-slide.s2 h2 em { color: #FFD34D; }
.ct-promo .big { color: var(--c-red); }
.ct-save { background: var(--c-graphite); }
.ct-btn-outline:hover { border-color: var(--c-red); color: var(--c-red); }
.ct-promo.tone-dark { background: var(--c-graphite); }
.ct-promo.tone-dark .ct-promo-art::after {
  background: linear-gradient(90deg, rgba(35,45,57,.97) 0%, rgba(35,45,57,.82) 45%, rgba(35,45,57,0) 80%);
}

/* Legacy pages: retire the leftover blue */
.legal-hero .breadcrumb a, .legal-content a, .about-section a,
.part-card-view, .part-card-price-quote { color: var(--c-red); }
.part-card-price-quote { background: var(--c-red-soft); }
.about-hero, .brand-hero, .q-head, .page-header { background: var(--c-graphite); }
.tab-btn.active { border-bottom-color: var(--c-red); }

/* ============================================================================
   v24 — Desktop header (>=1024px). Mobile keeps the stacked version as-is.
   ========================================================================== */

.ct-header-d { display: none; }

@media (min-width: 1024px) {
  .ann-bar { display: block; }
  .ct-header, .ct-quick { display: none !important; }

  .ct-header-d {
    display: block;
    position: sticky;
    top: 0;
    z-index: 101;
    background: #fff;
    box-shadow: 0 1px 0 var(--c-line);
  }

  /* Row 1 — logo, search, actions */
  .ct-d-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .ct-d-logo { flex: none; display: block; }
  .ct-d-logo img { height: 62px; width: auto; display: block; }

  .ct-d-search {
    flex: 1;
    display: flex;
    align-items: center;
    max-width: 640px;
    border: 2px solid var(--c-graphite);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
  }
  .ct-d-search input {
    flex: 1;
    border: 0;
    outline: 0;
    font: inherit;
    font-size: 15px;
    color: var(--c-ink);
    padding: 13px 16px;
    min-width: 0;
    background: transparent;
  }
  .ct-d-search input::placeholder { color: #98A2AE; }
  .ct-d-search button {
    flex: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 46px;
    padding: 0 22px;
    background: var(--c-red);
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s;
  }
  .ct-d-search button:hover { background: var(--c-red-deep); }
  .ct-d-search button svg { width: 18px; height: 18px; }

  .ct-d-actions { flex: none; display: flex; align-items: center; gap: 8px; margin-left: auto; }
  .ct-d-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 8px;
    color: var(--c-graphite);
    transition: background .18s, color .18s;
  }
  .ct-d-action:hover { background: #F2F4F8; color: var(--c-red); }
  .ct-d-action svg { width: 24px; height: 24px; flex: none; }
  .ct-d-action span {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    font-size: 12px;
    color: var(--c-ink-soft);
    white-space: nowrap;
  }
  .ct-d-action b { font-size: 13.5px; font-weight: 700; color: var(--c-ink); }
  .ct-d-action:hover b { color: var(--c-red); }
  .ct-d-cart .cart-badge {
    position: absolute;
    top: 2px; left: 26px;
    min-width: 19px; height: 19px;
    padding: 0 5px;
    border-radius: 100px;
    background: var(--c-red);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    font-style: normal;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
  }

  /* Row 2 — graphite department bar */
  .ct-d-nav { background: var(--c-graphite); }
  .ct-d-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: stretch;
    gap: 2px;
    height: 52px;
  }
  .ct-d-allbtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 22px;
    margin-right: 10px;
    background: var(--c-red);
    color: #fff;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    transition: background .18s;
  }
  .ct-d-allbtn:hover { background: var(--c-red-deep); }
  .ct-d-allbtn svg { width: 17px; height: 17px; }

  .ct-d-item { position: relative; display: flex; align-items: stretch; }
  .ct-d-item > a {
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    font-size: 14.5px;
    font-weight: 600;
    color: rgba(255,255,255,.86);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: color .16s, border-color .16s, background .16s;
  }
  .ct-d-item:hover > a { color: #fff; background: rgba(255,255,255,.07); border-bottom-color: var(--c-red); }
  .ct-d-item > a.is-deals { color: #FF8A92; font-weight: 700; }
  .ct-d-item:hover > a.is-deals { color: #fff; }

  .ct-d-nav-right {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    white-space: nowrap;
  }
  .ct-d-nav-right:hover { color: #fff; }

  .ct-d-mega {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-top: 3px solid var(--c-red);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 16px 40px rgba(16,32,43,.16);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .16s, transform .16s, visibility 0s .16s;
  }
  .ct-d-item:hover .ct-d-mega, .ct-d-item:focus-within .ct-d-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .16s, transform .16s, visibility 0s 0s;
  }
  .ct-d-mega-head {
    display: block;
    font-size: 10.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 800;
    color: #98A2AE;
    padding: 6px 12px 10px;
    border-bottom: 1px solid var(--c-line);
    margin-bottom: 6px;
  }
  .ct-d-mega a {
    display: block;
    padding: 9px 12px;
    border-radius: 7px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--c-ink);
    white-space: nowrap;
  }
  .ct-d-mega a:hover { background: #F4F6F9; color: var(--c-red); }
}

/* ============================================================================
   v24 — Desktop footer. Mobile keeps the accordion.
   ========================================================================== */

.ct-footer-d { display: none; }

@media (min-width: 1024px) {
  .ct-footer { display: none !important; }

  footer { background: var(--c-graphite) !important; }
  .ct-footer-d {
    display: block;
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 24px 26px;
    color: rgba(255,255,255,.66);
  }
  .ct-fd-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.1fr;
    gap: 44px;
    padding-bottom: 40px;
  }
  .ct-fd-logo {
    display: inline-block;
    background: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 18px;
  }
  .ct-fd-logo img { height: 52px; width: auto; display: block; }
  .ct-fd-brand p { font-size: 13.5px; line-height: 1.7; margin: 0 0 20px; max-width: 34ch; }
  .ct-fd-social { display: flex; gap: 10px; }
  .ct-fd-social a {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
    display: grid;
    place-items: center;
    transition: background .18s, border-color .18s, transform .18s;
  }
  .ct-fd-social a:hover { background: var(--c-red); border-color: var(--c-red); transform: translateY(-2px); }
  .ct-fd-social svg { width: 19px; height: 19px; }

  .ct-fd-col h5 {
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .ct-fd-col a, .ct-fd-col p {
    display: block;
    font-size: 13.5px;
    color: rgba(255,255,255,.66);
    padding: 6px 0;
    margin: 0;
    line-height: 1.6;
  }
  .ct-fd-col a:hover { color: #fff; }
  .ct-fd-strong { font-weight: 700; color: #fff !important; }

  .ct-fd-pay {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .ct-fd-pay-label {
    font-size: 10.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(255,255,255,.45);
    margin-right: 6px;
  }
  .ct-fd-pay span:not(.ct-fd-pay-label) {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.78);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 100px;
    padding: 7px 14px;
  }

  .ct-fd-legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0 4px;
    font-size: 12.5px;
    color: rgba(255,255,255,.45);
  }
  .ct-fd-legal a { color: rgba(255,255,255,.7); }
  .ct-fd-legal a:hover { color: #fff; }
}

/* Mobile/tablet: hide the desktop blocks explicitly, and keep the mobile
   header visible up to the 1024px switch (it was previously capped at 920). */
@media (max-width: 1023px) {
  .ct-header-d, .ct-footer-d { display: none !important; }
  .ct-header, .ct-quick, .ct-footer { display: block !important; }
}

/* Mobile header tuning for the new palette: thin red announcement strip,
   white logo bar, graphite search row — so red stays an accent, not a wash. */
.ann-bar { background: var(--c-red); border-bottom: none; }
.ann-bar a { color: #fff; }
.ct-searchline { background: var(--c-graphite); }
.ct-searchline .ct-search button { color: var(--c-red); }
.ct-topline .ct-menu { background: var(--c-graphite); color: #fff; }
.ct-topline .ct-menu:hover { background: var(--c-red); }
.ct-topline .ct-icon { color: var(--c-graphite); }
.ct-topline .ct-icon:hover { background: #F2F4F8; color: var(--c-red); }
.ct-quick { border-bottom: 1px solid var(--c-line); }
.ct-quick a { color: var(--c-graphite); }
.ct-quick a:hover { color: var(--c-red); }

/* Mobile accordion footer: graphite text, red plus-marks */
.ct-acc-btn { color: var(--c-graphite); }
.ct-acc-btn svg { color: var(--c-red); }
.ct-acc-body a:hover { color: var(--c-red); }
.ct-social a { background: var(--c-graphite); }
.ct-social a:hover { background: var(--c-red); }
.ct-header { background: var(--c-graphite); }
/* Mobile cart badge sits on the white logo bar, so its ring is white */
.ct-topline .ct-icon .cart-badge { border-color: #fff; }
