/* ============================================================
   SIPL — Light-Industrial Design System
   Satpal Industries storefront redesign.
   Fonts (loaded in layout head): Anton (display), Archivo (body),
   Space Mono (labels). Namespaced `sipl-` so it can live alongside
   the legacy theme CSS while pages are migrated.
   ============================================================ */

:root {
  --sipl-cream:        #F3F1EA;
  --sipl-cream-2:      #EAE5DB;
  --sipl-panel:        #EFEBE2;
  --sipl-white:        #FFFFFF;
  --sipl-ink:          #1A1A1C;
  --sipl-ink-2:        #0F0F10;
  --sipl-ink-3:        #131315;
  --sipl-yellow:       #FFC400;
  --sipl-yellow-hover: #FFD23D;
  --sipl-gold:         #9A7400;
  --sipl-gold-2:       #C8920A;
  --sipl-muted:        #56534D;
  --sipl-muted-2:      #76736C;
  --sipl-muted-3:      #908E87;
  --sipl-border:       #E4DFD4;
  --sipl-border-soft:  rgba(26, 26, 28, 0.08);
  --sipl-max:          1320px;
  --sipl-font:         'Archivo', system-ui, -apple-system, sans-serif;
  --sipl-display:      'Anton', 'Archivo', sans-serif;
  --sipl-mono:         'Space Mono', ui-monospace, monospace;
}

/* ---------- Shared primitives ---------- */
.sipl-page,
.sipl-header,
.sipl-footer {
  font-family: var(--sipl-font);
}
.sipl-page {
  background: var(--sipl-cream);
  color: var(--sipl-ink);
  overflow-x: clip;
}
.sipl-page *,
.sipl-header *,
.sipl-footer * { box-sizing: border-box; }
/* never let an image push the page wider than the viewport */
.sipl-page img,
.sipl-header img,
.sipl-footer img { max-width: 100%; }

.sipl-stripe {
  height: 4px;
  width: 100%;
  background-image: repeating-linear-gradient(45deg,
    var(--sipl-yellow) 0, var(--sipl-yellow) 14px,
    var(--sipl-ink) 14px, var(--sipl-ink) 28px);
}
.sipl-stripe--dark {
  background-image: repeating-linear-gradient(45deg,
    var(--sipl-yellow) 0, var(--sipl-yellow) 14px,
    var(--sipl-ink-2) 14px, var(--sipl-ink-2) 28px);
}

.sipl-wrap {
  max-width: var(--sipl-max);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 48px);
  padding-right: clamp(16px, 4vw, 48px);
}

/* Mono "// eyebrow" label */
.sipl-eyebrow {
  font-family: var(--sipl-mono);
  color: var(--sipl-gold);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.sipl-eyebrow--bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.sipl-eyebrow--bar::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--sipl-gold-2);
  flex-shrink: 0;
}

/* Anton display heading */
.sipl-h1 {
  font-family: var(--sipl-display);
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--sipl-ink);
  font-weight: 400;
}
.sipl-h2 {
  font-family: var(--sipl-display);
  font-size: clamp(30px, 5vw, 56px);
  line-height: 0.96;
  text-transform: uppercase;
  margin: 0;
  color: var(--sipl-ink);
  font-weight: 400;
}
.sipl-h3 {
  font-family: var(--sipl-display);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
  color: var(--sipl-ink);
  font-weight: 400;
}
.sipl-mark {
  background: var(--sipl-yellow);
  padding: 2px 10px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.sipl-lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--sipl-muted);
}

/* Buttons */
.sipl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  font-family: var(--sipl-font);
  line-height: 1;
}
.sipl-btn--primary { background: var(--sipl-yellow); color: var(--sipl-ink-2); }
.sipl-btn--primary:hover { background: var(--sipl-yellow-hover); color: var(--sipl-ink-2); }
.sipl-btn--ghost { background: var(--sipl-white); color: var(--sipl-ink); border-color: #CFC9BC; }
.sipl-btn--ghost:hover { border-color: var(--sipl-yellow); color: var(--sipl-gold); }
.sipl-btn--block { width: 100%; justify-content: center; }

/* "All X →" inline link */
.sipl-more {
  color: var(--sipl-gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .15s ease;
}
.sipl-more:hover { gap: 14px; color: var(--sipl-gold); }

/* Section head (eyebrow + title + optional "view all") */
.sipl-sec-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

/* ============================================================
   HEADER
   ============================================================ */
.sipl-header { position: sticky; top: 0; z-index: 100; }

.sipl-util {
  background: var(--sipl-panel);
  color: var(--sipl-muted-2);
  font-family: var(--sipl-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--sipl-border-soft);
}
.sipl-util__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}
.sipl-util__left { display: flex; align-items: center; gap: 8px; text-transform: uppercase; }
.sipl-util__left .dot { color: var(--sipl-gold-2); }
.sipl-util__right { display: flex; align-items: center; gap: 22px; text-transform: uppercase; }
.sipl-util__right a { color: var(--sipl-muted-2); text-decoration: none; }
.sipl-util__right a:hover { color: var(--sipl-gold); }

.sipl-bar {
  background: var(--sipl-white);
  border-bottom: 1px solid var(--sipl-border);
  box-shadow: 0 1px 12px rgba(26, 26, 28, 0.04);
}
.sipl-bar__inner {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 22px);
  padding-top: 12px;
  padding-bottom: 12px;
}
.sipl-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.sipl-logo img { height: 54px; width: auto; max-width: 220px; object-fit: contain; display: block; }

.sipl-dnav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
/* Header dropdowns (Achievements, Blog) */
.sipl-nav-dd { position: relative; }
.sipl-dnav .sipl-nav-dd__toggle { display: inline-flex; align-items: center; gap: 5px; background: none; border: 0; cursor: pointer; font-family: inherit; line-height: inherit; }
.sipl-nav-dd__caret { flex-shrink: 0; transition: transform .2s ease; }
.sipl-nav-dd.is-open .sipl-nav-dd__caret { transform: rotate(180deg); }
.sipl-nav-dd__menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 232px; background: var(--sipl-white); border: 1px solid var(--sipl-border); box-shadow: 0 18px 44px rgba(26, 26, 28, 0.14); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .18s ease, transform .18s ease, visibility .18s; z-index: 300; }
.sipl-nav-dd.is-open .sipl-nav-dd__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sipl-nav-dd__item { display: block; padding: 10px 12px; color: var(--sipl-ink); text-decoration: none; font-weight: 700; font-size: 12.5px; letter-spacing: 0.02em; text-transform: uppercase; border-left: 2px solid transparent; }
.sipl-nav-dd__item:hover { background: var(--sipl-panel); color: var(--sipl-gold); border-left-color: var(--sipl-yellow); }
/* Mobile dropdown groups */
.m-group__label { display: block; font-family: var(--sipl-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sipl-gold); padding: 14px 0 2px; }
.m-link--sub span:first-child { padding-left: 14px; opacity: 0.92; }
/* Offset in-page anchors so the sticky header doesn't cover the target */
#clients, #divisions { scroll-margin-top: 110px; }
.sipl-nav-link {
  position: relative;
  color: var(--sipl-ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 10px 14px;
  display: block;
}
.sipl-nav-link:hover { color: var(--sipl-gold); }
.sipl-nav-link.is-active { color: var(--sipl-ink); }
.sipl-nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 3px;
  background: var(--sipl-yellow);
}

.sipl-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(2px, 0.6vw, 8px);
  flex-shrink: 0;
}
.sipl-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  color: var(--sipl-ink);
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.sipl-icon-btn:hover { color: var(--sipl-gold); }
.sipl-icon-btn:disabled { opacity: .5; cursor: default; }
.sipl-badge {
  position: absolute;
  top: 2px; right: 0;
  background: var(--sipl-yellow);
  color: var(--sipl-ink-2);
  font-size: 10px;
  font-weight: 800;
  min-width: 17px;
  height: 17px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}
.sipl-quote {
  background: var(--sipl-yellow);
  color: var(--sipl-ink-2);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 4px;
}
.sipl-quote:hover { background: var(--sipl-yellow-hover); color: var(--sipl-ink-2); }

.sipl-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid #D2CCBE;
  color: var(--sipl-ink);
  cursor: pointer;
}

/* Mobile dropdown */
.sipl-mobile {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--sipl-white);
  border-bottom: 2px solid var(--sipl-yellow);
  box-shadow: 0 18px 36px rgba(26, 26, 28, 0.16);
  z-index: 90;
  max-height: 80vh;
  overflow-y: auto;
}
.sipl-mobile.is-open { display: block; }
.sipl-mobile__inner { padding: 12px clamp(16px, 4vw, 48px) 20px; }
.sipl-mobile a.m-link {
  color: var(--sipl-ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  padding: 14px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #EEEAE0;
}
.sipl-mobile a.m-link:hover { color: var(--sipl-gold); }
.sipl-mobile a.m-link .arr { color: var(--sipl-gold-2); }
.sipl-mobile a.m-quote {
  margin-top: 16px;
  background: var(--sipl-yellow);
  color: var(--sipl-ink-2);
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sipl-mobile a.m-quote:hover { background: var(--sipl-yellow-hover); }

/* Search overlay */
.sipl-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(15, 15, 16, 0.5);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(16px, 7vh, 90px) 16px;
}
.sipl-search-overlay[hidden] { display: none; }
.sipl-search-box {
  width: 100%;
  max-width: 720px;
  background: var(--sipl-white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}
.sipl-search-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--sipl-border);
}
.sipl-search-top input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--sipl-font);
  font-size: 18px;
  color: var(--sipl-ink);
}
.sipl-search-close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--sipl-muted-2);
  font-size: 26px;
  line-height: 1;
  padding: 2px 6px;
}
.sipl-search-close:hover { color: var(--sipl-ink); }
.sipl-search-results { max-height: 62vh; overflow: auto; }
.sipl-search-hint { padding: 24px 20px; color: var(--sipl-muted-2); font-size: 14px; }
.sipl-search-hint a { color: var(--sipl-gold); font-weight: 700; text-decoration: none; }
.sipl-search-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  text-decoration: none;
  border-bottom: 1px solid #EEEAE0;
}
.sipl-search-item:hover,
.sipl-search-item.is-active { background: #F7F5EF; }
.sipl-search-item img {
  width: 48px; height: 48px;
  object-fit: cover;
  border: 1px solid var(--sipl-border);
  flex-shrink: 0;
}
.sipl-search-item .si-name {
  font-weight: 700; font-size: 14.5px; color: var(--sipl-ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sipl-search-item .si-brand {
  font-family: var(--sipl-mono); font-size: 11px; color: var(--sipl-gold);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.sipl-search-item .si-price { font-family: var(--sipl-display); font-size: 17px; color: var(--sipl-ink); white-space: nowrap; margin-left: auto; }
.sipl-search-all {
  display: block;
  padding: 15px 20px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sipl-gold);
  text-decoration: none;
  background: #FAF8F3;
}

@media (max-width: 940px) {
  .sipl-dnav { display: none; }
  .sipl-burger { display: flex; }
  .sipl-quote { display: none !important; }
}
@media (max-width: 620px) {
  .sipl-util { display: none; }
  .sipl-logo img { height: 44px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.sipl-footer { background: var(--sipl-ink-2); color: #C9C7C0; }

.sipl-foot-news {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--sipl-ink-3);
}
.sipl-foot-news__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(28px, 4vw, 44px);
}
.sipl-foot-news__title {
  font-family: var(--sipl-display);
  font-size: clamp(24px, 3vw, 34px);
  color: #F4F1EA;
  line-height: 1.02;
  text-transform: uppercase;
  font-weight: 400;
}
.sipl-foot-news__eyebrow {
  font-family: var(--sipl-mono);
  color: var(--sipl-yellow);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sipl-foot-news__form { display: flex; flex: 1 1 280px; min-width: 0; max-width: 460px; }
.sipl-foot-news__form input {
  flex: 1;
  min-width: 0;
  background: var(--sipl-ink-2);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #F4F1EA;
  padding: 16px 18px;
  font-family: var(--sipl-font);
  font-size: 15px;
  outline: none;
}
.sipl-foot-news__form button {
  background: var(--sipl-yellow);
  color: var(--sipl-ink-2);
  border: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0 26px;
  cursor: pointer;
  font-family: var(--sipl-font);
  font-size: 14px;
}
.sipl-foot-news__form button:hover { background: var(--sipl-yellow-hover); }

.sipl-foot-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: clamp(26px, 3.2vw, 48px);
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(36px, 5vw, 64px);
}
@media (max-width: 1100px) {
  .sipl-foot-cols { grid-template-columns: repeat(4, 1fr); }
  .sipl-foot-brand { grid-column: 1 / -1; }
}
.sipl-foot-brand img { height: 70px; width: auto; display: block; margin-bottom: 18px; }
.sipl-foot-note { font-size: 14.5px; line-height: 1.7; color: var(--sipl-muted-3); max-width: 320px; margin: 0 0 20px; }
.sipl-social { display: flex; gap: 10px; }
.sipl-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex; align-items: center; justify-content: center;
  color: #C9C7C0;
  text-decoration: none;
}
.sipl-social a:hover { background: var(--sipl-yellow); color: var(--sipl-ink-2); border-color: var(--sipl-yellow); }

.sipl-foot-col__title {
  font-family: var(--sipl-mono);
  color: var(--sipl-yellow);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sipl-foot-col__links { display: flex; flex-direction: column; gap: 12px; }
.sipl-foot-col__links a { color: #C9C7C0; text-decoration: none; font-size: 14.5px; }
.sipl-foot-col__links a:hover { color: var(--sipl-yellow); }

.sipl-foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}
.sipl-foot-copy { font-family: var(--sipl-mono); font-size: 12.5px; color: #6F6D67; }
.sipl-foot-legal { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.sipl-foot-legal a { color: var(--sipl-muted-3); text-decoration: none; font-size: 12.5px; font-family: var(--sipl-mono); }
.sipl-foot-legal a:hover { color: var(--sipl-yellow); }

@media (max-width: 760px) {
  .sipl-foot-cols { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .sipl-foot-brand { grid-column: 1 / -1; }
  .sipl-foot-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.sipl-section { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }
.sipl-section--tight { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(40px, 6vw, 80px); }
.sipl-band { background: var(--sipl-cream-2); border-top: 1px solid var(--sipl-border-soft); border-bottom: 1px solid var(--sipl-border-soft); }
.sipl-band--yellow { background: var(--sipl-yellow); color: var(--sipl-ink-2); }
.sipl-grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .sipl-grid4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .sipl-grid4 { grid-template-columns: 1fr; } }

/* Product collection ("Summer Sale"-style block) — optional banner sits beside the products, honoring banner_position */
.sipl-coll { display: grid; grid-template-columns: minmax(0, 380px) 1fr; gap: 24px; align-items: stretch; }
.sipl-coll--right { grid-template-columns: 1fr minmax(0, 380px); }
.sipl-coll__banner { display: block; overflow: hidden; border: 1px solid var(--sipl-border); background: #ECE8DF; min-height: 260px; }
.sipl-coll--right .sipl-coll__banner { order: 2; }
.sipl-coll__banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sipl-coll__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-content: start; }
@media (max-width: 900px) {
    .sipl-coll, .sipl-coll--right { grid-template-columns: 1fr; }
    .sipl-coll--right .sipl-coll__banner { order: 0; }
    .sipl-coll__banner { min-height: 180px; }
    .sipl-coll__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) { .sipl-coll__grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOME — hero
   ============================================================ */
.sipl-hero { position: relative; background: var(--sipl-cream); border-bottom: 1px solid var(--sipl-border-soft); overflow: hidden; }
.sipl-hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; height: clamp(520px, 62vh, 620px); max-width: var(--sipl-max); margin: 0 auto; }
.sipl-hero-copy { padding: clamp(40px, 6vw, 88px) clamp(16px, 4vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.sipl-hero-eyebrow { font-family: var(--sipl-mono); color: var(--sipl-gold); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.sipl-hero-eyebrow::before { content: ""; width: 36px; height: 2px; background: var(--sipl-gold-2); display: inline-block; flex-shrink: 0; }
.sipl-hero-title { font-family: var(--sipl-display); font-size: clamp(32px, 4.4vw, 60px); line-height: 1.04; text-transform: uppercase; margin: 0 0 22px; color: var(--sipl-ink); font-weight: 400; }
.sipl-hero-sub { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.6; color: var(--sipl-muted); max-width: 520px; margin: 0 0 36px; }
.sipl-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.sipl-hero-img { position: relative; background: #1a1a1c; overflow: hidden; }
.sipl-hero-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sipl-hero-img .corner { position: absolute; left: 0; bottom: 0; width: 64px; height: 64px; background: var(--sipl-yellow); }
.sipl-hero-img .bar { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--sipl-yellow); }
.sipl-hero-slide { display: none; }
.sipl-hero-slide.is-active { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: clamp(520px, 62vh, 620px); max-width: var(--sipl-max); margin: 0 auto; }
.sipl-hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background: rgba(255,255,255,0.9); border: 1px solid #D2CCBE; color: var(--sipl-ink); cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 5; }
.sipl-hero-arrow:hover { background: var(--sipl-yellow); border-color: var(--sipl-yellow); }
.sipl-hero-arrow.prev { left: clamp(8px, 1.5vw, 18px); }
.sipl-hero-arrow.next { right: clamp(8px, 1.5vw, 18px); }
.sipl-hero-dots { position: absolute; left: 0; right: 0; bottom: 16px; display: flex; justify-content: center; gap: 9px; z-index: 5; }
.sipl-hero-dots button { width: 8px; height: 8px; background: rgba(26,26,28,0.25); border: none; cursor: pointer; padding: 0; transition: width .2s, background .2s; }
.sipl-hero-dots button.is-active { width: 28px; background: var(--sipl-ink); }
@media (max-width: 760px) {
  .sipl-hero-slide.is-active { grid-template-columns: 1fr; height: auto; }
  .sipl-hero-img { height: 240px; order: -1; }
  .sipl-hero-arrow { display: none !important; }
}

/* Features bar */
.sipl-feat { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(15,15,16,0.16); max-width: var(--sipl-max); margin: 0 auto; }
.sipl-feat__item { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 26px 18px; background: var(--sipl-yellow); }
.sipl-feat__item .ico { font-size: 30px; line-height: 1; }
.sipl-feat__item .t { font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: 0.02em; }
.sipl-feat__item .s { font-size: 13px; color: #5a4d12; }
@media (max-width: 760px) { .sipl-feat { grid-template-columns: repeat(2, 1fr); } }

/* Category card */
.sipl-cat-card { position: relative; aspect-ratio: 1 / 1; overflow: hidden; text-decoration: none; background: #1a1a1c; border: 1px solid var(--sipl-border); display: block; }
.sipl-cat-card:hover { border-color: var(--sipl-yellow); }
.sipl-cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.82; }
.sipl-cat-card .shade { position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(15,15,16,0.9)); }
.sipl-cat-card .meta { position: absolute; left: 18px; right: 18px; bottom: 18px; }
.sipl-cat-card .count { font-family: var(--sipl-mono); font-size: 11px; color: var(--sipl-yellow); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.sipl-cat-card .name { font-family: var(--sipl-display); font-size: 22px; color: #fff; text-transform: uppercase; line-height: 1; font-weight: 400; }

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.sipl-pcard { position: relative; background: var(--sipl-white); border: 1px solid var(--sipl-border); display: flex; flex-direction: column; height: 100%; transition: border-color .15s, transform .15s, box-shadow .15s; }
.sipl-pcard:hover { border-color: var(--sipl-yellow); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(26,26,28,0.10); }
.sipl-pcard__thumb { position: relative; display: block; aspect-ratio: 4 / 3; background-image: linear-gradient(135deg, #ECE8DF, #F5F2EB); overflow: hidden; text-decoration: none; }
.sipl-pcard__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sipl-pcard__tag { position: absolute; top: 12px; left: 12px; background: var(--sipl-yellow); color: var(--sipl-ink-2); font-size: 10.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 9px; }
.sipl-pcard__wish { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; background: rgba(255,255,255,0.92); border: 1px solid var(--sipl-border); color: var(--sipl-ink); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.sipl-pcard__wish:hover, .sipl-pcard__wish.active { color: var(--sipl-gold-2); border-color: var(--sipl-yellow); }
.sipl-pcard__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.sipl-pcard__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.sipl-pcard__brand { font-family: var(--sipl-mono); font-size: 11px; color: var(--sipl-gold); text-transform: uppercase; letter-spacing: 0.06em; }
.sipl-pcard__avail { font-family: var(--sipl-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.04em; }
.sipl-pcard__avail.in { color: #2E8B57; }
.sipl-pcard__avail.out { color: #C0392B; }
.sipl-pcard__name { color: var(--sipl-ink); text-decoration: none; font-weight: 700; font-size: 15.5px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 40px; }
.sipl-pcard__name:hover { color: var(--sipl-gold); }
.sipl-pcard__rating { display: flex; align-items: center; gap: 6px; }
.sipl-pcard__stars { color: #E6A700; font-size: 13px; letter-spacing: 1px; }
.sipl-pcard__stars .off { color: #D8D2C4; }
.sipl-pcard__rnum { font-size: 12px; color: #8A867E; }
.sipl-pcard__price { display: flex; align-items: baseline; gap: 9px; margin-top: 2px; flex-wrap: wrap; }
.sipl-pcard__price .amt { font-family: var(--sipl-display); font-size: 24px; color: var(--sipl-ink); font-weight: 400; }
.sipl-pcard__price .amt del { font-size: 14px; color: #A8A399; font-weight: 400; margin-left: 6px; }
.sipl-pcard__actions { display: flex; gap: 8px; margin-top: 10px; }
.sipl-pcard__add { flex: 1; background: var(--sipl-yellow); color: var(--sipl-ink-2); border: none; font-family: var(--sipl-font); font-weight: 800; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.04em; padding: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px; text-decoration: none; }
.sipl-pcard__add:hover { background: var(--sipl-yellow-hover); color: var(--sipl-ink-2); }
.sipl-pcard__quote { width: 44px; flex-shrink: 0; border: 1px solid #D2CCBE; color: var(--sipl-ink); display: flex; align-items: center; justify-content: center; text-decoration: none; }
.sipl-pcard__quote:hover { border-color: var(--sipl-yellow); color: var(--sipl-gold); }

/* Promo cards */
.sipl-promos { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; align-items: stretch; }
.sipl-promo { background: var(--sipl-white); border: 1px solid var(--sipl-border); display: flex; flex-direction: column; overflow: hidden; }
.sipl-promo__img { aspect-ratio: 16/9; overflow: hidden; background: #ECE8DF; }
.sipl-promo__img img { width: 100%; height: 100%; object-fit: cover; }
.sipl-promo__body { padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; }
.sipl-promo__body p { color: var(--sipl-muted); font-size: 15.5px; line-height: 1.6; margin: 14px 0 22px; }

/* Brand card */
.sipl-bcard { background: var(--sipl-white); border: 1px solid var(--sipl-border); padding: 28px 24px; text-decoration: none; display: flex; flex-direction: column; min-height: 150px; }
.sipl-bcard:hover { border-color: var(--sipl-yellow); box-shadow: 0 10px 28px rgba(26,26,28,0.08); }
.sipl-bcard__logo { height: 84px; display: flex; align-items: center; margin-bottom: 16px; }
.sipl-bcard__logo img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.sipl-bcard__name { font-family: var(--sipl-display); font-size: 28px; letter-spacing: 0.02em; color: var(--sipl-ink); text-transform: uppercase; font-weight: 400; }
.sipl-bcard__cat { font-family: var(--sipl-mono); font-size: 11px; color: var(--sipl-gold); text-transform: uppercase; letter-spacing: 0.06em; }
.sipl-bcard__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--sipl-border-soft); }
.sipl-bcard__foot .c { font-family: var(--sipl-mono); font-size: 12px; color: var(--sipl-muted-2); }
.sipl-bcard__foot .s { color: var(--sipl-gold); font-weight: 800; font-size: 12px; text-transform: uppercase; }

/* Tenders carousel */
.sipl-tenders-track { display: flex; gap: 24px; }
.sipl-tcard { flex: 0 0 calc((100% - 48px) / 3); background: var(--sipl-white); border: 1px solid var(--sipl-border); text-decoration: none; display: flex; flex-direction: column; overflow: hidden; transition: border-color .15s; }
.sipl-tcard:hover { border-color: var(--sipl-yellow); }
.sipl-tcard__img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #1a1a1c; }
.sipl-tcard__img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; }
.sipl-tcard__img .shade { position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(15,15,16,0.55)); }
.sipl-tcard__status { position: absolute; top: 14px; right: 14px; font-family: var(--sipl-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 5px 11px; }
.sipl-tcard__status.won { background: rgba(46,139,87,0.18); color: #1F7A4D; }
.sipl-tcard__status.ongoing { background: rgba(200,146,10,0.20); color: #8A6500; }
.sipl-tcard__status.completed { background: rgba(42,111,219,0.16); color: #2057B0; }
.sipl-tcard__badge { position: absolute; left: 14px; bottom: 12px; display: flex; align-items: center; gap: 10px; }
.sipl-tcard__code { width: 42px; height: 42px; background: var(--sipl-yellow); display: flex; align-items: center; justify-content: center; font-family: var(--sipl-display); font-size: 16px; color: var(--sipl-ink-2); font-weight: 400; }
.sipl-tcard__sector { font-family: var(--sipl-mono); font-size: 11px; color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }
.sipl-tcard__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.sipl-tcard__title { font-size: 18px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; color: var(--sipl-ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 47px; }
.sipl-tcard__client { font-family: var(--sipl-mono); font-size: 12px; color: var(--sipl-gold); margin-bottom: 12px; }
.sipl-tcard__desc { font-size: 14px; line-height: 1.6; color: var(--sipl-muted-2); margin: 0 0 18px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sipl-tcard__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; font-family: var(--sipl-mono); font-size: 12px; color: #94908A; border-top: 1px solid var(--sipl-border-soft); padding-top: 14px; }
.sipl-tcard__foot .d { color: var(--sipl-gold); font-weight: 700; }
@media (max-width: 900px) { .sipl-tcard { flex: 0 0 calc((100% - 24px) / 2); } }
@media (max-width: 580px) { .sipl-tcard { flex: 0 0 100%; } }

/* Stats */
.sipl-stats-head { text-align: center; margin-bottom: 44px; }
.sipl-stats-head .sipl-eyebrow { color: #5a4d12; }
.sipl-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: rgba(15,15,16,0.14); border: 1px solid rgba(15,15,16,0.14); }
.sipl-stat { background: var(--sipl-yellow); padding: 36px 20px; text-align: center; }
.sipl-stat .n { font-family: var(--sipl-display); font-size: clamp(40px, 5vw, 58px); color: var(--sipl-ink-2); line-height: 1; font-weight: 400; }
.sipl-stat .l { font-family: var(--sipl-mono); font-size: 11.5px; color: #5a4d12; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 8px; }

/* Divisions */
.sipl-div-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.sipl-div-card { background: var(--sipl-white); border: 1px solid var(--sipl-border); overflow: hidden; display: flex; flex-direction: column; height: 100%; text-decoration: none; transition: border-color .15s, transform .15s, box-shadow .15s; }
.sipl-div-card:hover { border-color: var(--sipl-yellow); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(26,26,28,0.10); }
.sipl-div-card__img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #ECE8DF; }
.sipl-div-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sipl-div-card__num { position: absolute; top: 14px; left: 14px; width: 44px; height: 44px; background: var(--sipl-yellow); display: flex; align-items: center; justify-content: center; font-family: var(--sipl-display); font-size: 18px; color: var(--sipl-ink-2); font-weight: 400; }
.sipl-div-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.sipl-div-card__name { font-family: var(--sipl-display); font-size: 24px; text-transform: uppercase; margin: 0 0 10px; color: var(--sipl-ink); font-weight: 400; }
.sipl-div-card__desc { font-size: 14px; line-height: 1.6; color: var(--sipl-muted-2); margin: 0 0 18px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.sipl-div-card__more { margin-top: auto; color: var(--sipl-gold); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
/* Divisions slider — mirrors the Tenders track (3 visible, auto-scroll) */
.sipl-div-track { display: flex; gap: 24px; }
.sipl-div-track .sipl-div-card { flex: 0 0 calc((100% - 48px) / 3); }
@media (max-width: 900px) { .sipl-div-track .sipl-div-card { flex: 0 0 calc((100% - 24px) / 2); } }
@media (max-width: 580px) { .sipl-div-track .sipl-div-card { flex: 0 0 100%; } }

/* Certifications page grid */
.sipl-cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(228px, 1fr)); gap: 24px; }
.sipl-cert-card { background: var(--sipl-white); border: 1px solid var(--sipl-border); overflow: hidden; transition: border-color .15s, transform .15s, box-shadow .15s; }
.sipl-cert-card:hover { border-color: var(--sipl-yellow); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(26, 26, 28, 0.10); }
.sipl-cert-card__img { aspect-ratio: 3 / 4; background: var(--sipl-panel); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.sipl-cert-card__img img { width: 100%; height: 100%; object-fit: contain; }
.sipl-cert-card__title { padding: 14px 16px; font-family: var(--sipl-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--sipl-ink); text-align: center; border-top: 1px solid var(--sipl-border-soft); }

/* Achievements page grid */
.sipl-ach-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.sipl-ach-card { background: var(--sipl-white); border: 1px solid var(--sipl-border); overflow: hidden; display: flex; flex-direction: column; transition: border-color .15s, transform .15s, box-shadow .15s; }
.sipl-ach-card:hover { border-color: var(--sipl-yellow); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(26, 26, 28, 0.10); }
.sipl-ach-card__img { aspect-ratio: 16 / 10; background: #1a1a1c; overflow: hidden; }
.sipl-ach-card__img img { width: 100%; height: 100%; object-fit: cover; }
.sipl-ach-card__body { padding: 22px; }
.sipl-ach-card__title { font-family: var(--sipl-display); font-size: 22px; text-transform: uppercase; margin: 0 0 8px; color: var(--sipl-ink); font-weight: 400; line-height: 1.12; }
.sipl-ach-card__desc { font-size: 14px; line-height: 1.6; color: var(--sipl-muted-2); margin: 0; }

/* Customer logos marquee */
@keyframes siplLogoLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes siplLogoRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.sipl-cust { background: var(--sipl-cream); padding: clamp(48px, 6vw, 84px) 0; overflow: hidden; }
.sipl-cust__head { text-align: center; margin-bottom: 38px; }
.sipl-logo-marquee { display: flex; flex-direction: column; gap: 16px; }
.sipl-logo-row { overflow: hidden; }
.sipl-logo-track { display: flex; width: max-content; }
.sipl-logo-row1 .sipl-logo-track { animation: siplLogoLeft 38s linear infinite; }
.sipl-logo-row2 .sipl-logo-track { animation: siplLogoRight 44s linear infinite; }
.sipl-logo-marquee:hover .sipl-logo-track { animation-play-state: paused; }
.sipl-logo-box { flex: 0 0 auto; width: 200px; height: 96px; background: var(--sipl-white); border: 1px solid var(--sipl-border); display: flex; align-items: center; justify-content: center; margin-right: 16px; padding: 16px; }
.sipl-logo-box span { font-family: var(--sipl-display); font-size: 24px; color: #9A958A; letter-spacing: 0.03em; text-transform: uppercase; font-weight: 400; }
.sipl-logo-box img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* CTA band */
.sipl-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.sipl-cta__copy { max-width: 680px; }
.sipl-cta__copy .sipl-eyebrow { color: #5a4d12; }
.sipl-cta__btn { background: var(--sipl-ink); color: var(--sipl-yellow); text-decoration: none; font-weight: 800; font-size: 16px; text-transform: uppercase; letter-spacing: 0.04em; padding: 22px 40px; display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.sipl-cta__btn:hover { background: #000; color: var(--sipl-yellow); }

/* ============================================================
   PAGE HEAD (breadcrumb + title) — shared across inner pages
   ============================================================ */
.sipl-phead { background: var(--sipl-cream-2); border-bottom: 1px solid rgba(26,26,28,0.10); }
.sipl-phead__inner { padding-top: clamp(28px, 4vw, 48px); padding-bottom: clamp(28px, 4vw, 48px); }
.sipl-crumb { font-family: var(--sipl-mono); font-size: 12px; color: var(--sipl-muted-2); margin-bottom: 14px; }
.sipl-crumb a { color: var(--sipl-muted-2); text-decoration: none; }
.sipl-crumb a:hover { color: var(--sipl-gold); }
.sipl-crumb .cur { color: var(--sipl-gold); }
.sipl-phead__title { font-family: var(--sipl-display); font-size: clamp(34px, 5vw, 58px); text-transform: uppercase; margin: 0; line-height: 0.96; color: var(--sipl-ink); font-weight: 400; }
.sipl-phead__sub { color: var(--sipl-muted-2); font-size: 15px; margin: 12px 0 0; max-width: 640px; }

/* ============================================================
   SHOP / PRODUCTS LISTING
   ============================================================ */
.sipl-shop { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; padding-top: clamp(28px, 4vw, 44px); padding-bottom: clamp(40px, 6vw, 72px); }
.sipl-filter { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 26px; background: transparent; }
.sipl-filter__close { display: none; }
.sipl-filter__search { position: relative; }
.sipl-filter__search input { width: 100%; background: var(--sipl-white); border: 1px solid #D2CCBE; color: var(--sipl-ink); padding: 13px 14px 13px 40px; font-family: var(--sipl-font); font-size: 14px; outline: none; }
.sipl-filter__search svg { position: absolute; left: 13px; top: 13px; }
.sipl-filter__group .sipl-filter__title { font-family: var(--sipl-mono); font-size: 12px; color: var(--sipl-gold); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(26,26,28,0.12); font-weight: 400; }
.sipl-filter__list { display: flex; flex-direction: column; gap: 2px; max-height: 280px; overflow-y: auto; }
.sipl-filter__list a { text-align: left; color: #4A4843; font-weight: 600; font-size: 14px; padding: 9px 4px; text-decoration: none; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.sipl-filter__list a:hover, .sipl-filter__list a.is-active { color: var(--sipl-gold); }
.sipl-filter__list a .n { font-family: var(--sipl-mono); font-size: 11px; opacity: 0.6; }
.sipl-check { display: flex; align-items: center; gap: 10px; color: #4A4843; font-size: 14px; cursor: pointer; padding: 5px 0; }
.sipl-check input { width: 18px; height: 18px; accent-color: var(--sipl-yellow); flex-shrink: 0; cursor: pointer; }
.sipl-check .swatch { width: 22px; height: 22px; border: 1px solid #C2BBAC; display: inline-block; flex-shrink: 0; }
.sipl-price-inputs { display: flex; gap: 8px; margin: 12px 0; }
.sipl-price-inputs input { width: 100%; border: 1px solid #D2CCBE; background: var(--sipl-white); padding: 8px 10px; font-family: var(--sipl-font); font-size: 13px; }
#slider-range { margin: 10px 4px; }

.sipl-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid rgba(26,26,28,0.10); }
.sipl-toolbar__count { font-family: var(--sipl-mono); font-size: 13px; color: var(--sipl-muted-2); }
.sipl-toolbar__count b { color: var(--sipl-gold); font-weight: 700; }
.sipl-toolbar__right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.sipl-filter-in { display: none; align-items: center; gap: 6px; background: var(--sipl-white); border: 1px solid #D2CCBE; color: var(--sipl-ink); padding: 10px 14px; font-weight: 700; font-size: 13px; text-transform: uppercase; cursor: pointer; }
.sipl-select { background: var(--sipl-white); border: 1px solid #D2CCBE; color: var(--sipl-ink); padding: 11px 16px; font-family: var(--sipl-font); font-size: 13.5px; outline: none; cursor: pointer; }
.sipl-select-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sipl-mono); font-size: 12px; color: var(--sipl-muted-2); text-transform: uppercase; }

.sipl-shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }

/* Pagination (works with Bootstrap paginateLinks markup) */
.sipl-pagi-wrap { display: flex; justify-content: center; margin-top: 44px; }
.sipl-pagi-wrap .pagination { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.sipl-pagi-wrap .page-item .page-link { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1px solid #D2CCBE; color: #4A4843; background: var(--sipl-white); text-decoration: none; font-weight: 700; border-radius: 0; }
.sipl-pagi-wrap .page-item.active .page-link { background: var(--sipl-yellow); color: var(--sipl-ink-2); border-color: var(--sipl-yellow); }
.sipl-pagi-wrap .page-item.disabled .page-link { opacity: 0.4; }
.sipl-pagi-wrap .page-link:hover { border-color: var(--sipl-yellow); color: var(--sipl-gold); }

/* loading overlay */
#overlay, #overlay2 { display: none; }
.sipl-shop-results { position: relative; }
.sipl-shop-results #overlay { position: absolute; inset: 0; background: rgba(243,241,234,0.6); z-index: 10; display: none; align-items: center; justify-content: center; }
.sipl-shop-results #overlay .cv-spinner { display: flex; align-items: center; justify-content: center; height: 100%; }
.sipl-shop-results #overlay .spinner { width: 40px; height: 40px; border: 4px solid var(--sipl-border); border-top-color: var(--sipl-yellow); border-radius: 50%; animation: siplSpin 0.8s linear infinite; }
@keyframes siplSpin { to { transform: rotate(360deg); } }

.sipl-empty { text-align: center; padding: 60px 20px; }
.sipl-empty img { max-width: 140px; opacity: 0.7; margin-bottom: 16px; }
.sipl-empty h5 { font-family: var(--sipl-display); text-transform: uppercase; color: var(--sipl-muted); font-weight: 400; }

@media (max-width: 991px) {
  .sipl-shop { grid-template-columns: 1fr; }
  .sipl-filter-in { display: inline-flex; }
  .sipl-filter { position: fixed; top: 0; left: 0; bottom: 0; width: 300px; max-width: 86vw; background: var(--sipl-cream); z-index: 1200; padding: 20px; overflow-y: auto; transform: translateX(-100%); transition: transform .25s ease; box-shadow: 0 0 40px rgba(0,0,0,0.2); }
  .sipl-filter.active { transform: translateX(0); }
  .sipl-filter__close { display: flex; align-self: flex-end; background: transparent; border: none; font-size: 26px; line-height: 1; cursor: pointer; color: var(--sipl-ink); }
}

/* ============================================================
   CATEGORIES / BRANDS index grids
   ============================================================ */
.sipl-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.sipl-cat-tile { position: relative; aspect-ratio: 4/3; overflow: hidden; text-decoration: none; background: #1a1a1c; border: 1px solid var(--sipl-border); display: block; }
.sipl-cat-tile:hover { border-color: var(--sipl-yellow); }
.sipl-cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.84; }
.sipl-cat-tile .shade { position: absolute; inset: 0; background: linear-gradient(transparent 35%, rgba(15,15,16,0.9)); }
.sipl-cat-tile .meta { position: absolute; left: 16px; right: 16px; bottom: 16px; }
.sipl-cat-tile .name { font-family: var(--sipl-display); font-size: 20px; color: #fff; text-transform: uppercase; line-height: 1.05; font-weight: 400; }
.sipl-cat-tile .sub { font-family: var(--sipl-mono); font-size: 11px; color: var(--sipl-yellow); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.sipl-subcats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.sipl-subcats a { font-size: 12.5px; color: var(--sipl-muted); text-decoration: none; background: var(--sipl-white); border: 1px solid var(--sipl-border); padding: 5px 10px; }
.sipl-subcats a:hover { border-color: var(--sipl-yellow); color: var(--sipl-gold); }

/* ============================================================
   PRODUCT DETAIL — theme the existing buy-box to the new system
   ============================================================ */
.sipl-pdetail { padding-top: clamp(24px, 3vw, 40px); padding-bottom: clamp(40px, 6vw, 72px); }
.sipl-pdetail .product-title { font-family: var(--sipl-display); font-weight: 400; text-transform: uppercase; color: var(--sipl-ink); font-size: clamp(26px, 3vw, 38px); line-height: 1.04; }
.sipl-pdetail .product-price, .sipl-pdetail #productPrice { font-family: var(--sipl-display); font-weight: 400; color: var(--sipl-ink); font-size: clamp(26px, 3vw, 34px); }
.sipl-pdetail .product-rate-unit { font-family: var(--sipl-mono); font-size: 14px; color: var(--sipl-muted-2); }
.sipl-pdetail .product-save { background: rgba(46,139,87,0.15); color: #1F7A4D; font-family: var(--sipl-mono); font-size: 12px; padding: 4px 10px; text-transform: uppercase; }
.sipl-pdetail .ratings-area .ratings { color: #E6A700; }
.sipl-pdetail .product-summary { color: var(--sipl-muted); font-size: 15px; line-height: 1.6; margin: 14px 0; }
.sipl-pdetail .product-meta-box { border: 1px solid var(--sipl-border); background: var(--sipl-white); padding: 16px 18px; margin: 18px 0; display: flex; flex-direction: column; gap: 10px; }
.sipl-pdetail .product-meta-row { display: flex; gap: 12px; font-size: 14px; }
.sipl-pdetail .product-meta-label { font-family: var(--sipl-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--sipl-gold); min-width: 90px; }
.sipl-pdetail .product-meta-value a { color: var(--sipl-ink); text-decoration: none; }
.sipl-pdetail .product-meta-value a:hover { color: var(--sipl-gold); }
.sipl-pdetail .attribute-name { font-family: var(--sipl-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--sipl-muted); }
.sipl-pdetail .attribute-value { border: 1px solid #D2CCBE; background: var(--sipl-white); padding: 8px 14px; margin: 6px 6px 0 0; cursor: pointer; }
.sipl-pdetail .attribute-value.active, .sipl-pdetail .attribute-value:hover { border-color: var(--sipl-yellow); }
.sipl-pdetail .product-action-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.sipl-pdetail .btn--base, .sipl-pdetail .add-to-wishlist-btn { background: var(--sipl-yellow); color: var(--sipl-ink-2); border: 1px solid var(--sipl-yellow); border-radius: 0; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; padding: 14px 26px; }
.sipl-pdetail .btn--base:hover { background: var(--sipl-yellow-hover); color: var(--sipl-ink-2); }
.sipl-pdetail .btn--dark { background: var(--sipl-ink); color: var(--sipl-yellow); border: 1px solid var(--sipl-ink); border-radius: 0; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; padding: 14px 26px; }
.sipl-pdetail .btn--dark:hover { background: #000; color: var(--sipl-yellow); }
.sipl-pdetail .add-to-wishlist-btn { background: var(--sipl-white); color: var(--sipl-ink); border: 1px solid #D2CCBE; }
.sipl-pdetail .add-to-wishlist-btn.active, .sipl-pdetail .add-to-wishlist-btn:hover { border-color: var(--sipl-yellow); color: var(--sipl-gold); }
.sipl-pdetail .product-qty-row { display: flex; align-items: center; gap: 16px; margin: 16px 0; }
.sipl-pdetail .product-qty-label { font-family: var(--sipl-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--sipl-muted); }
.sipl-pdetail .product-trust { list-style: none; padding: 18px 0 0; margin: 18px 0 0; border-top: 1px solid var(--sipl-border); display: flex; flex-wrap: wrap; gap: 18px; }
.sipl-pdetail .product-trust li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--sipl-muted); }
.sipl-pdetail .product-trust i { color: var(--sipl-gold); font-size: 18px; }
.sipl-pdetail .rental-fields { background: var(--sipl-white); border: 1px solid var(--sipl-border); padding: 16px; margin-bottom: 16px; }
.sipl-pdetail .rental-dates { display: flex; gap: 12px; flex-wrap: wrap; }
.sipl-pdetail .rental-summary-total { font-weight: 800; }

/* Quick-view modal — reuse the .sipl-pdetail buy-box styling inside a Bootstrap-5 modal */
#quickView .modal-content { border: 0; border-radius: 0; background: var(--sipl-cream); position: relative; }
#quickView .modal-body.sipl-pdetail { padding: clamp(20px, 3vw, 40px); }
#quickView .modal-close-btn { position: absolute; top: 12px; right: 12px; z-index: 10; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; background: var(--sipl-white); border: 1px solid var(--sipl-border); color: var(--sipl-ink); cursor: pointer; font-size: 18px; line-height: 1; }
#quickView .modal-close-btn:hover { background: var(--sipl-yellow); border-color: var(--sipl-yellow); }
#quickView .product-details-container { --bs-gutter-x: 0; }
#quickView .product-gallery .xzoom5 { width: 100%; height: auto; max-height: 440px; object-fit: contain; background: var(--sipl-white); }
#quickView .media-item-nav { cursor: pointer; }
#quickView .media-item-nav.active img, #quickView .media-item-nav:hover img { outline: 2px solid var(--sipl-yellow); outline-offset: -2px; }
#quickView .product-action-buttons { display: flex; gap: 10px; }
#quickView .product-action-buttons .btn { flex: 1 1 0; justify-content: center; }
#quickView .product-wishlist { margin-top: 10px; }
#quickView .product-wishlist .add-to-wishlist-btn { width: 100%; justify-content: center; }
#quickView .quickview-details-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-family: var(--sipl-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--sipl-gold); text-decoration: none; }
#quickView .quickview-details-link:hover { color: var(--sipl-ink); }

/* Detail tabs */
.sipl-pdetail .nav-tabs { border-bottom: 1px solid var(--sipl-border); display: flex; gap: 4px; flex-wrap: wrap; padding: 0; list-style: none; }
.sipl-pdetail .nav-tabs a { display: block; padding: 14px 18px; font-family: var(--sipl-font); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--sipl-muted); text-decoration: none; border-bottom: 3px solid transparent; }
.sipl-pdetail .nav-tabs a.active { color: var(--sipl-ink); border-bottom-color: var(--sipl-yellow); }
.sipl-pdetail .tab-content { padding-top: 28px; }
.sipl-pdetail .specification-table ul { list-style: none; padding: 0; }
.sipl-pdetail .specification-table li { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--sipl-border); font-size: 14px; }
.sipl-pdetail-related { padding-top: clamp(40px, 6vw, 72px); }

/* ============================================================
   COMMERCE — track form, checkout steps, cart
   ============================================================ */
.sipl-track-form { display: flex; border: 1px solid #D2CCBE; background: var(--sipl-white); }
.sipl-track-form input { flex: 1; min-width: 0; border: none; outline: none; background: transparent; padding: 16px 18px; font-family: var(--sipl-font); font-size: 15px; color: var(--sipl-ink); }
.sipl-track-form .track-btn { border-radius: 0; white-space: nowrap; }
.order-track-item .thumb i { color: var(--sipl-gold); }
.order-track-item.active .thumb { background: var(--sipl-yellow) !important; border-color: var(--sipl-yellow) !important; }
.order-track-item.active .thumb i { color: var(--sipl-ink-2) !important; }

/* Checkout step layout — themed on the existing markup */
.sipl-page .cart-step-box { background: var(--sipl-white); border: 1px solid var(--sipl-border); padding: 18px 12px; text-align: center; }
.sipl-page .cart-step-box.active { border-color: var(--sipl-yellow); box-shadow: 0 6px 18px rgba(26,26,28,0.06); }
.sipl-page .cart-step-title { font-family: var(--sipl-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--sipl-muted); }
.sipl-page .cart-step-box.active .cart-step-title { color: var(--sipl-ink); }

/* Cart */
.sipl-page .cart-body { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--sipl-border); background: var(--sipl-white); }
.sipl-page .cart-footer { margin-top: 24px; }
.sipl-page .cart-next-step { margin-top: 24px; }
.sipl-page .empty-cart__page { text-align: center; padding: 50px 20px; }
.sipl-page .empty-cart__page img { max-width: 160px; opacity: 0.8; }

/* Generic button + form theming inside sipl pages */
.sipl-page .btn--base { background: var(--sipl-yellow); color: var(--sipl-ink-2); border: 1px solid var(--sipl-yellow); border-radius: 0; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; }
.sipl-page .btn--base:hover { background: var(--sipl-yellow-hover); color: var(--sipl-ink-2); }
.sipl-page .btn--dark { background: var(--sipl-ink); color: var(--sipl-yellow); border: 1px solid var(--sipl-ink); border-radius: 0; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; }
.sipl-page .btn-outline--light { border: 1px solid #D2CCBE; border-radius: 0; color: var(--sipl-ink); font-weight: 700; text-transform: uppercase; }
.sipl-page .btn-outline--light:hover { border-color: var(--sipl-yellow); color: var(--sipl-gold); }
.sipl-page .form--control, .sipl-page .form-control, .sipl-page .form--select {
    border: 1px solid #D2CCBE; border-radius: 0; font-family: var(--sipl-font); padding: 12px 14px; background: var(--sipl-white);
}
.sipl-page .form--control:focus, .sipl-page .form-control:focus, .sipl-page .form--select:focus { border-color: var(--sipl-yellow); box-shadow: none; outline: none; }
.sipl-page label.form-label, .sipl-page .form--label { font-family: var(--sipl-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sipl-muted); }

/* Generic content card used by checkout/account panels */
.sipl-card { background: var(--sipl-white); border: 1px solid var(--sipl-border); padding: clamp(20px, 3vw, 32px); }
.sipl-card + .sipl-card { margin-top: 20px; }
/* Cards laid out in a grid are spaced by the grid's gap — cancel the stacked-card
   top margin (meant only for block-stacked cards) so grid rows never stagger. */
.sipl-grid4 > .sipl-card,
[style*="display:grid"] > .sipl-card,
[style*="display: grid"] > .sipl-card { margin-top: 0; }

/* Form primitives */
.sipl-field { display: flex; flex-direction: column; gap: 8px; }
.sipl-flabel { font-family: var(--sipl-mono); font-size: 11px; color: var(--sipl-muted-2); text-transform: uppercase; letter-spacing: 0.06em; }
.sipl-input, .sipl-page .auth-form input, .sipl-page select.sipl-input {
    width: 100%; background: var(--sipl-white); border: 1px solid #D2CCBE; color: var(--sipl-ink);
    padding: 14px 15px; font-size: 14px; outline: none; font-family: var(--sipl-font);
}
.sipl-input:focus { border-color: var(--sipl-yellow); }
.sipl-input::placeholder { color: #A29C90; }

/* ============================================================
   AUTH — split-screen
   ============================================================ */
.sipl-auth { font-family: var(--sipl-font); background: var(--sipl-cream); color: var(--sipl-ink); min-height: 100vh; display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }
.sipl-auth__brand { background: var(--sipl-cream-2); border-right: 1px solid var(--sipl-border-soft); display: flex; flex-direction: column; min-height: 100vh; }
.sipl-auth__brand-top { padding: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 48px) 0; }
.sipl-auth__brand-top img { height: 60px; width: auto; }
.sipl-auth__brand-top h2 { font-family: var(--sipl-display); font-size: clamp(30px, 3.4vw, 48px); text-transform: uppercase; line-height: 0.96; margin: 0 0 14px; color: var(--sipl-ink); font-weight: 400; }
.sipl-auth__brand-top p { color: var(--sipl-muted); font-size: 15px; max-width: 380px; margin: 0 0 24px; }
.sipl-auth__brand .eb { font-family: var(--sipl-mono); color: var(--sipl-gold); font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; margin: 30px 0 16px; }
.sipl-auth__perks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.sipl-auth__perks div { display: flex; gap: 10px; align-items: center; color: #46443F; font-size: 14.5px; }
.sipl-auth__perks .tick { color: var(--sipl-gold-2); font-weight: 900; }
.sipl-auth__brand-img { flex: 1; min-height: 180px; background-size: cover; background-position: center; border-top: 4px solid var(--sipl-yellow); margin-top: 16px; }
.sipl-auth__form { display: flex; align-items: center; justify-content: center; padding: clamp(32px, 5vw, 64px); background: var(--sipl-cream); }
.sipl-auth__box { width: 100%; max-width: 420px; }
.sipl-auth__box h1 { font-family: var(--sipl-display); font-size: clamp(30px, 4vw, 42px); text-transform: uppercase; margin: 0 0 8px; font-weight: 400; }
.sipl-auth__box .lead { color: var(--sipl-muted-2); font-size: 14.5px; margin: 0 0 30px; }
.sipl-auth__form .form-group { margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.sipl-auth__form .form--label, .sipl-auth__form label { font-family: var(--sipl-mono); font-size: 11px; color: var(--sipl-muted-2); text-transform: uppercase; letter-spacing: 0.06em; }
.sipl-auth__form .form--control, .sipl-auth__form input[type=email], .sipl-auth__form input[type=password], .sipl-auth__form input[type=text] {
    width: 100%; background: var(--sipl-white); border: 1px solid #D2CCBE; color: var(--sipl-ink); padding: 14px 15px; font-size: 14px; outline: none; font-family: var(--sipl-font); border-radius: 0;
}
.sipl-auth__form .form--control:focus { border-color: var(--sipl-yellow); box-shadow: none; }
.sipl-auth__submit { display: flex; align-items: center; justify-content: center; width: 100%; background: var(--sipl-yellow); color: var(--sipl-ink-2); border: none; font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: 0.04em; padding: 16px; cursor: pointer; font-family: var(--sipl-font); margin-top: 4px; }
.sipl-auth__submit:hover { background: var(--sipl-yellow-hover); color: var(--sipl-ink-2); }
.sipl-auth__alt { text-align: center; color: var(--sipl-muted-2); font-size: 14px; margin: 26px 0 0; }
.sipl-auth__alt a { color: var(--sipl-gold); text-decoration: none; font-weight: 700; }
.sipl-auth__divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; }
.sipl-auth__divider span.l { flex: 1; height: 1px; background: rgba(26,26,28,0.12); }
.sipl-auth__divider span.t { font-family: var(--sipl-mono); font-size: 11px; color: #94908A; }
.sipl-auth__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.sipl-auth__row a { color: var(--sipl-gold); text-decoration: none; font-size: 13.5px; font-weight: 600; }

/* ============================================================
   CONTENT — prose, tenders, divisions, blog
   ============================================================ */
.sipl-prose { color: var(--sipl-muted); font-size: 15.5px; line-height: 1.8; }
.sipl-prose h1, .sipl-prose h2, .sipl-prose h3, .sipl-prose h4 { font-family: var(--sipl-display); color: var(--sipl-ink); text-transform: uppercase; font-weight: 400; margin: 28px 0 12px; line-height: 1.1; }
.sipl-prose h2 { font-size: 28px; } .sipl-prose h3 { font-size: 22px; } .sipl-prose h4 { font-size: 18px; }
.sipl-prose p { margin: 0 0 16px; }
.sipl-prose ul, .sipl-prose ol { margin: 0 0 16px; padding-left: 22px; }
.sipl-prose li { margin-bottom: 8px; }
.sipl-prose a { color: var(--sipl-gold); }
.sipl-prose img { max-width: 100%; height: auto; }
.sipl-prose strong { color: var(--sipl-ink); }

.sipl-tenders-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

.sipl-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.sipl-check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--sipl-muted); }
.sipl-check-list li::before { content: "✓"; color: var(--sipl-gold-2); font-weight: 900; flex-shrink: 0; }

.sipl-detail-hero { position: relative; aspect-ratio: 21/9; overflow: hidden; background: #1a1a1c; border: 1px solid var(--sipl-border); }
.sipl-detail-hero img { display: block; width: 100%; height: 100%; object-fit: cover; opacity: 0.92; }
.sipl-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 860px) { .sipl-detail-grid { grid-template-columns: 1fr; } }
/* mobile: drop the fixed banner ratio so the full image fits naturally, no crop */
@media (max-width: 600px) {
  .sipl-detail-hero { aspect-ratio: auto; }
  .sipl-detail-hero img { height: auto; }
}

/* ---------- Contact: multi-location map (tabs) ---------- */
.sipl-loc { border: 1px solid var(--sipl-border); background: var(--sipl-white); }
.sipl-loc__tabs { display: flex; border-bottom: 1px solid var(--sipl-border); }
.sipl-loc__tab { flex: 1; padding: 14px 12px; background: none; border: 0; border-bottom: 2px solid transparent; font-family: var(--sipl-mono); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--sipl-muted); cursor: pointer; transition: color .15s, border-color .15s; }
.sipl-loc__tab:hover { color: var(--sipl-ink); }
.sipl-loc__tab.is-active { color: var(--sipl-ink); border-bottom-color: var(--sipl-yellow); }
.sipl-loc__bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--sipl-border); }
.sipl-loc__addr { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--sipl-ink); line-height: 1.4; }
.sipl-loc__addr i { color: var(--sipl-gold); flex-shrink: 0; margin-top: 2px; }
.sipl-loc__dir { font-size: 13px; font-weight: 700; color: var(--sipl-gold); text-decoration: none; white-space: nowrap; }
.sipl-loc__map { min-height: 340px; }
.sipl-loc__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
@media (max-width: 480px) { .sipl-loc__bar { flex-direction: column; align-items: flex-start; gap: 8px; } }
.sipl-card-links a { display: block; color: var(--sipl-muted); font-size: 14px; text-decoration: none; word-break: break-word; line-height: 1.7; }
.sipl-card-links a:hover { color: var(--sipl-gold); }

/* ---------- About: CEO / leadership message ---------- */
.sipl-ceo { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.sipl-ceo__card { background: var(--sipl-white); border: 1px solid var(--sipl-border); padding: 28px; text-align: center; }
.sipl-ceo__avatar { width: 100px; height: 100px; margin: 0 auto 16px; background: var(--sipl-yellow); color: var(--sipl-ink-2); font-family: var(--sipl-display); font-size: 38px; line-height: 1; display: flex; align-items: center; justify-content: center; }
.sipl-ceo__name { font-family: var(--sipl-display); font-size: 22px; text-transform: uppercase; color: var(--sipl-ink); line-height: 1.1; }
.sipl-ceo__role { font-family: var(--sipl-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--sipl-muted); margin-top: 8px; }
.sipl-ceo__quote { margin: 16px 0 22px; padding-left: 20px; border-left: 3px solid var(--sipl-yellow); font-family: var(--sipl-display); font-weight: 400; font-size: clamp(20px, 2.3vw, 26px); line-height: 1.35; color: var(--sipl-ink); }
@media (max-width: 760px) {
  .sipl-ceo { grid-template-columns: 1fr; gap: 24px; }
  .sipl-ceo__card { display: flex; align-items: center; gap: 16px; text-align: left; padding: 18px 20px; }
  .sipl-ceo__avatar { margin: 0; width: 64px; height: 64px; font-size: 24px; flex-shrink: 0; }
}
.sipl-timeline { list-style: none; padding: 0; margin: 0; }
.sipl-timeline li { display: flex; gap: 14px; padding-bottom: 18px; position: relative; }
.sipl-timeline li::before { content: ""; width: 12px; height: 12px; background: var(--sipl-yellow); flex-shrink: 0; margin-top: 4px; }
.sipl-timeline .ti-t { font-weight: 700; font-size: 14.5px; color: var(--sipl-ink); }
.sipl-timeline .ti-d { font-family: var(--sipl-mono); font-size: 12px; color: var(--sipl-muted-2); }
.sipl-meta-list { display: flex; flex-direction: column; gap: 0; }
.sipl-meta-list .row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--sipl-border); font-size: 14px; }
.sipl-meta-list .row .k { font-family: var(--sipl-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sipl-gold); }

/* Blog */
.sipl-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.sipl-blog-card { background: var(--sipl-white); border: 1px solid var(--sipl-border); display: flex; flex-direction: column; overflow: hidden; text-decoration: none; transition: border-color .15s, transform .15s, box-shadow .15s; }
.sipl-blog-card:hover { border-color: var(--sipl-yellow); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(26,26,28,0.10); }
.sipl-blog-card__img { aspect-ratio: 16/10; overflow: hidden; background: #ECE8DF; }
.sipl-blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.sipl-blog-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.sipl-blog-card__cat { font-family: var(--sipl-mono); font-size: 11px; color: var(--sipl-gold); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.sipl-blog-card__title { font-size: 18px; font-weight: 800; color: var(--sipl-ink); line-height: 1.3; margin: 0 0 10px; }
.sipl-blog-card__excerpt { font-size: 14px; color: var(--sipl-muted-2); line-height: 1.6; margin: 0 0 16px; }
.sipl-blog-card__meta { margin-top: auto; font-family: var(--sipl-mono); font-size: 12px; color: #94908A; display: flex; gap: 12px; }
.sipl-status { font-family: var(--sipl-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 5px 11px; display: inline-block; }
.sipl-status.won { background: rgba(46,139,87,0.18); color: #1F7A4D; }
.sipl-status.ongoing { background: rgba(200,146,10,0.20); color: #8A6500; }
.sipl-status.completed { background: rgba(42,111,219,0.16); color: #2057B0; }

/* FAQ accordion (themed on Bootstrap collapse) */
.sipl-faq { max-width: 820px; margin: 0 auto; }
.sipl-faq .accordion-item { border: 1px solid var(--sipl-border); background: var(--sipl-white); margin-bottom: 12px; border-radius: 0; }
.sipl-faq .accordion-button { font-family: var(--sipl-font); font-weight: 700; font-size: 16px; color: var(--sipl-ink); background: var(--sipl-white); padding: 18px 20px; box-shadow: none; border-radius: 0; }
.sipl-faq .accordion-button:not(.collapsed) { color: var(--sipl-gold); background: #FAF8F3; box-shadow: none; }
.sipl-faq .accordion-button:focus { box-shadow: none; border-color: var(--sipl-yellow); }
.sipl-faq .accordion-button::after { filter: grayscale(1); }
.sipl-faq .accordion-body { color: var(--sipl-muted); font-size: 15px; line-height: 1.7; padding: 0 20px 20px; }

/* ============================================================
   CUSTOMER DASHBOARD / ACCOUNT
   ============================================================ */
.sipl-dash { display: grid; grid-template-columns: 264px 1fr; gap: 28px; align-items: start; padding-top: clamp(28px, 4vw, 44px); padding-bottom: clamp(40px, 6vw, 72px); }
.sipl-dash__nav { background: var(--sipl-white); border: 1px solid var(--sipl-border); position: sticky; top: 96px; }
.sipl-dash__nav ul { list-style: none; margin: 0; padding: 8px; display: flex; flex-direction: column; gap: 2px; }
.sipl-dash__nav a { display: flex; align-items: center; gap: 12px; padding: 13px 14px; text-decoration: none; color: var(--sipl-ink); font-weight: 600; font-size: 14.5px; border-left: 3px solid transparent; }
.sipl-dash__nav a i { font-size: 20px; color: var(--sipl-muted-2); width: 22px; text-align: center; }
.sipl-dash__nav a:hover { background: #FAF8F3; color: var(--sipl-gold); }
.sipl-dash__nav a.active { background: #FAF8F3; color: var(--sipl-gold); border-left-color: var(--sipl-yellow); }
.sipl-dash__nav a.active i { color: var(--sipl-gold); }
.sipl-dash__nav a.signout-btn { color: #C0392B; }
.sipl-dash__nav a.signout-btn i { color: #C0392B; }
.sipl-dash__content { min-width: 0; }
@media (max-width: 860px) {
    .sipl-dash { grid-template-columns: 1fr; }
    .sipl-dash__nav { position: static; }
    .sipl-dash__nav ul { flex-direction: row; flex-wrap: wrap; }
    .sipl-dash__nav a { border-left: none; border-bottom: 3px solid transparent; }
    .sipl-dash__nav a.active { border-left: none; border-bottom-color: var(--sipl-yellow); }
}

/* Dashboard stat tiles */
.sipl-dstats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 24px; }
.sipl-dstat { background: var(--sipl-white); border: 1px solid var(--sipl-border); padding: 22px; }
.sipl-dstat .n { font-family: var(--sipl-display); font-size: 36px; color: var(--sipl-ink); line-height: 1; font-weight: 400; }
.sipl-dstat .l { font-family: var(--sipl-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sipl-muted-2); margin-top: 8px; }
.sipl-dstat i { font-size: 22px; color: var(--sipl-gold); margin-bottom: 10px; display: block; }

/* Tables inside sipl pages */
.sipl-page .table, .sipl-page table.table { border-collapse: collapse; width: 100%; background: var(--sipl-white); }
.sipl-page .table thead th { font-family: var(--sipl-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sipl-muted-2); background: #FAF8F3; border-bottom: 1px solid var(--sipl-border); padding: 14px 16px; text-align: left; }
.sipl-page .table tbody td { padding: 14px 16px; border-bottom: 1px solid var(--sipl-border); font-size: 14px; color: var(--sipl-ink); }
.sipl-page .table-responsive { border: 1px solid var(--sipl-border); }
.sipl-dash__content .breadcrumb { background: transparent; padding: 0 0 18px; }
.sipl-dash__content .breadcrumb h6 { font-family: var(--sipl-display); text-transform: uppercase; font-size: 24px; color: var(--sipl-ink); font-weight: 400; margin: 0; }

/* ============================================================
   MODALS (login / checkout-auth / quick view) — themed
   ============================================================ */
.custom--modal .modal-content { border-radius: 0; border: 1px solid var(--sipl-border); }
.custom--modal .form--control, .custom--modal input.form-control, .custom--modal .form--select {
    border-radius: 0; border: 1px solid #D2CCBE; font-family: var(--sipl-font); padding: 12px 14px;
}
.custom--modal .form--control:focus { border-color: var(--sipl-yellow); box-shadow: none; }
.custom--modal .form--label, .custom--modal label { font-family: var(--sipl-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sipl-muted-2); }
.custom--modal .btn--base { background: var(--sipl-yellow); color: var(--sipl-ink-2); border: 1px solid var(--sipl-yellow); border-radius: 0; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; }
.custom--modal .btn--base:hover { background: var(--sipl-yellow-hover); color: var(--sipl-ink-2); }
.custom--modal .btn--dark { background: var(--sipl-ink); color: var(--sipl-yellow); border-radius: 0; }
.custom--modal h4, .custom--modal h5, .custom--modal .title { font-family: var(--sipl-display); text-transform: uppercase; font-weight: 400; color: var(--sipl-ink); }

/* ============================================================
   LEGACY-MARKUP CONSISTENCY (account panel + checkout)
   Themes old-theme classes that still live inside .sipl-page,
   so un-migrated panels match the SIPL system without a rewrite.
   ============================================================ */
.sipl-page .card, .sipl-page .custom--card { background: var(--sipl-white); border: 1px solid var(--sipl-border); border-radius: 0; box-shadow: none; }
.sipl-page .card-body { padding: clamp(18px, 2.5vw, 28px); }
.sipl-page .card-title { font-family: var(--sipl-display); font-weight: 400; text-transform: uppercase; color: var(--sipl-ink); font-size: 20px; }
.sipl-page .text--base, .sipl-page a.text--base { color: var(--sipl-gold) !important; }
.sipl-page .heading-clr { color: var(--sipl-ink); }

/* Order-status tabs (nav--link pills) */
.sipl-page .nav--links { display: flex; gap: 8px; flex-wrap: wrap; }
.sipl-page .nav--link { padding: 9px 16px; border-radius: 0; color: var(--sipl-muted); border: 1px solid var(--sipl-border); background: var(--sipl-white); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .02em; text-decoration: none; }
.sipl-page .nav--link:hover { border-color: var(--sipl-yellow); color: var(--sipl-gold); }
.sipl-page .nav--link.active { background-color: var(--sipl-yellow); border-color: var(--sipl-yellow); color: var(--sipl-ink-2); }

/* Misc legacy buttons used in panel/review modals */
.sipl-page .btn-xs, .sipl-page .reasonBtn { border: 1px solid var(--sipl-border); border-radius: 0; padding: 4px 10px; background: var(--sipl-white); color: var(--sipl-ink); }
.sipl-page .btn-xs:hover, .sipl-page .reasonBtn:hover { border-color: var(--sipl-yellow); color: var(--sipl-gold); }

/* Checkout step indicator: square the active highlight */
.sipl-page .cart-step-box { border-radius: 0; }
.sipl-page .cart-step-box .cart-step-icon svg { max-height: 46px; }

/* ============================================================
   CLEAN PANEL COMPONENTS (account dashboard, migrated views)
   ============================================================ */
.sipl-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.sipl-tab { padding: 9px 16px; border: 1px solid var(--sipl-border); background: var(--sipl-white); color: var(--sipl-muted); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .02em; text-decoration: none; white-space: nowrap; }
.sipl-tab:hover { border-color: var(--sipl-yellow); color: var(--sipl-gold); }
.sipl-tab.active { background: var(--sipl-yellow); border-color: var(--sipl-yellow); color: var(--sipl-ink-2); }
@media (max-width: 575px) { .sipl-tab { flex: 1 1 calc(50% - 8px); text-align: center; } }

.sipl-card__title { font-family: var(--sipl-display); font-weight: 400; text-transform: uppercase; color: var(--sipl-ink); font-size: 20px; margin: 0 0 20px; }
.sipl-form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.sipl-form-grid .full { grid-column: 1 / -1; }

.sipl-list { display: flex; flex-direction: column; }
.sipl-list__item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--sipl-border); }
.sipl-list__item:last-child { border-bottom: 0; }
.sipl-list__icon { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: #FAF8F3; border: 1px solid var(--sipl-border); color: var(--sipl-gold); font-size: 18px; }
.sipl-list__body { flex: 1; min-width: 0; }
.sipl-list__time { font-family: var(--sipl-mono); font-size: 11px; color: var(--sipl-muted-2); }

.sipl-section-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.sipl-empty-row { text-align: center; padding: 40px 16px; color: var(--sipl-muted-2); font-family: var(--sipl-mono); text-transform: uppercase; font-size: 13px; letter-spacing: .04em; }
.sipl-btn--sm { padding: 8px 14px; font-size: 12px; gap: 6px; }
.sipl-info-card { background: #FAF8F3; display: flex; align-items: center; gap: 14px; }
.sipl-info-card i { font-size: 24px; color: var(--sipl-gold); flex-shrink: 0; }
.sipl-info-card p { margin: 0; color: var(--sipl-muted); font-size: 14.5px; }

/* ============================================================
   BACK TO TOP  (brand gold, derived from Site Base Color)
   ============================================================ */
a.scrollToTop {
    width: 46px;
    height: 46px;
    line-height: 46px;
    background: var(--sipl-yellow);
    color: #1a1a1c;
    border: none;
    border-radius: 10px;
    bottom: 26px;
    right: 22px;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 10px 26px rgba(26, 26, 28, 0.28);
    transform: translateY(16px);
    transition: opacity .25s ease, transform .25s ease, background .15s ease, color .15s ease;
}
a.scrollToTop.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: none;
}
a.scrollToTop:hover {
    background: #1a1a1c;
    color: var(--sipl-yellow);
}
a.scrollToTop i {
    animation: none;
}
@media (min-width: 992px) {
    a.scrollToTop { right: 28px; }
}

/* ============================================================
   CART / CHECKOUT
   ============================================================ */
/* Checkout steps */
.sipl-steps { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.sipl-step { flex: 1; min-width: 150px; display: flex; align-items: center; gap: 12px; padding: 15px 18px; background: var(--sipl-white); border: 1px solid var(--sipl-border); position: relative; }
.sipl-step__link { position: absolute; inset: 0; z-index: 1; }
.sipl-step__n { width: 34px; height: 34px; flex-shrink: 0; display: grid; place-items: center; border: 1px solid var(--sipl-border); font-weight: 800; font-size: 15px; color: var(--sipl-muted); background: var(--sipl-cream-2); font-family: var(--sipl-display); }
.sipl-step__t { font-weight: 700; font-size: 14px; color: var(--sipl-ink); }
.sipl-step.active { border-color: var(--sipl-ink-2); }
.sipl-step.active .sipl-step__n { background: var(--sipl-yellow); color: var(--sipl-ink-2); border-color: var(--sipl-yellow); }
.sipl-step.active .sipl-step__t { color: var(--sipl-ink-2); }

/* Cart layout */
.sipl-cart { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.sipl-cart-items { display: flex; flex-direction: column; gap: 14px; }
.sipl-cart-item { display: grid; grid-template-columns: 92px 1fr auto auto auto; gap: 18px; align-items: center; background: var(--sipl-white); border: 1px solid var(--sipl-border); padding: 14px; }
.sipl-cart-item__thumb { width: 92px; height: 92px; overflow: hidden; border: 1px solid var(--sipl-border-soft); background: var(--sipl-cream-2); display: block; }
.sipl-cart-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.sipl-cart-item__name { font-weight: 700; color: var(--sipl-ink-2); font-size: 15.5px; text-decoration: none; display: block; margin-bottom: 6px; line-height: 1.3; }
.sipl-cart-item__name:hover { color: var(--sipl-gold); }
.sipl-cart-item__meta { font-size: 13px; color: var(--sipl-muted); display: flex; flex-direction: column; gap: 2px; }
.sipl-cart-item__meta b { color: var(--sipl-ink); font-weight: 600; }
.sipl-cart-item__total { text-align: right; min-width: 96px; }
.sipl-cart-item__total .lbl { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--sipl-muted); margin-bottom: 2px; }
.sipl-cart-item__total .val { font-weight: 800; font-size: 17px; color: var(--sipl-ink-2); font-family: var(--sipl-display); }
.sipl-cart-item__actions { display: flex; flex-direction: column; gap: 8px; }
.sipl-cart-item__actions button { width: 36px; height: 36px; border: 1px solid var(--sipl-border); background: var(--sipl-white); color: var(--sipl-muted); cursor: pointer; display: grid; place-items: center; transition: .15s; font-size: 16px; }
.sipl-cart-item__actions button:hover { border-color: var(--sipl-ink-2); color: var(--sipl-ink-2); }
.sipl-cart-item__actions .addToWishlist.active { color: #e5484d; border-color: #e5484d; }

/* Quantity stepper inside cart */
.sipl-cart-item__qty .product-quantity-input { border: 1px solid var(--sipl-border); width: max-content; }
.sipl-cart-item__qty .qtyButton { width: 34px; height: 38px; border: 0; background: var(--sipl-cream-2); cursor: pointer; color: var(--sipl-ink-2); display: grid; place-items: center; }
.sipl-cart-item__qty .qtyButton:disabled { opacity: .4; cursor: not-allowed; }
.sipl-cart-item__qty input { width: 46px; height: 38px; border: 0; border-left: 1px solid var(--sipl-border); border-right: 1px solid var(--sipl-border); text-align: center; font-weight: 700; color: var(--sipl-ink-2); -moz-appearance: textfield; background: var(--sipl-white); }
.sipl-cart-item__qty input::-webkit-outer-spin-button, .sipl-cart-item__qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Order summary */
.sipl-cart-aside { position: sticky; top: 100px; }
.sipl-cart-summary { background: var(--sipl-white); border: 1px solid var(--sipl-border); padding: 22px; }
.sipl-cart-summary__title { font-weight: 800; font-size: 16px; margin-bottom: 16px; color: var(--sipl-ink-2); font-family: var(--sipl-display); text-transform: uppercase; letter-spacing: .03em; }
.sipl-coupon { display: flex; gap: 8px; margin-bottom: 8px; }
.sipl-coupon input { flex: 1; min-width: 0; height: 42px; border: 1px solid var(--sipl-border); padding: 0 12px; font-size: 14px; background: var(--sipl-cream-2); }
.sipl-coupon button { height: 42px; padding: 0 18px; background: var(--sipl-ink-2); color: #fff; border: 0; font-weight: 700; cursor: pointer; white-space: nowrap; }
.sipl-coupon button:disabled { opacity: .45; cursor: not-allowed; }
.sipl-sum-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 11px 0; font-size: 14.5px; color: var(--sipl-ink); border-top: 1px solid var(--sipl-border-soft); }
.sipl-sum-row .coupon-inner { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: var(--sipl-muted); }
.sipl-sum-row .removeCoupon { background: none; border: 0; color: #e5484d; cursor: pointer; padding: 0; font-size: 16px; }
.sipl-sum-row.total { border-top: 2px solid var(--sipl-ink-2); margin-top: 6px; padding-top: 14px; font-size: 18px; font-weight: 800; color: var(--sipl-ink-2); }
.sipl-sum-row.total .amount { font-family: var(--sipl-display); }
.sipl-cart-checkout { width: 100%; justify-content: center; margin-top: 16px; }

@media (max-width: 991px) {
    .sipl-cart { grid-template-columns: 1fr; }
    .sipl-cart-aside { position: static; }
}
@media (max-width: 560px) {
    .sipl-cart-item { grid-template-columns: 72px 1fr; grid-template-areas: "thumb info" "qty total" "actions actions"; gap: 12px 14px; }
    .sipl-cart-item__thumb { grid-area: thumb; width: 72px; height: 72px; }
    .sipl-cart-item__info { grid-area: info; }
    .sipl-cart-item__qty { grid-area: qty; }
    .sipl-cart-item__total { grid-area: total; text-align: right; align-self: center; }
    .sipl-cart-item__actions { grid-area: actions; flex-direction: row; justify-content: flex-end; border-top: 1px solid var(--sipl-border-soft); padding-top: 10px; }
}

/* Header cart drawer — compact items + summary in the narrow sidebar */
.cart--products .sipl-cart-item { grid-template-columns: 60px 1fr; grid-template-areas: "thumb info" "qty total" "actions actions"; gap: 10px 12px; padding: 14px 0; border: 0; border-bottom: 1px solid var(--sipl-border-soft); }
.cart--products .sipl-cart-item:last-of-type { border-bottom: 0; }
.cart--products .sipl-cart-item__thumb { grid-area: thumb; width: 60px; height: 60px; }
.cart--products .sipl-cart-item__info { grid-area: info; }
.cart--products .sipl-cart-item__qty { grid-area: qty; }
.cart--products .sipl-cart-item__total { grid-area: total; text-align: right; align-self: center; }
.cart--products .sipl-cart-item__actions { grid-area: actions; flex-direction: row; justify-content: flex-end; }
.cart--products .sipl-cart-summary { border: 0; padding: 14px 0 0; }
.cart--products .sipl-cart-summary__title { display: none; }
.cart--products .cart-bottom { border-top: 1px solid var(--sipl-border); margin-top: 4px; }
.cart--products .sipl-empty { padding: 44px 16px; }
.cart--products .sipl-empty img { max-width: 130px; }

/* ============================================================
   CHECKOUT — shipping / payment / confirmation
   ============================================================ */
.sipl-checkout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.sipl-checkout__aside { position: sticky; top: 100px; }

/* Address radio cards */
.sipl-addr-list { display: flex; flex-direction: column; gap: 14px; }
.sipl-addr { display: flex; gap: 16px; background: var(--sipl-white); border: 1px solid var(--sipl-border); padding: 16px 18px; cursor: pointer; align-items: flex-start; }
.sipl-addr:has(input:checked) { border-color: var(--sipl-ink-2); box-shadow: inset 0 0 0 1px var(--sipl-ink-2); }
.sipl-addr__radio { margin-top: 3px; }
.sipl-addr__body { flex: 1; min-width: 0; }
.sipl-addr__label { font-weight: 700; color: var(--sipl-ink-2); font-size: 15px; margin-bottom: 8px; }
.sipl-addr__row { display: flex; font-size: 13.5px; padding: 2px 0; gap: 8px; }
.sipl-addr__row .k { width: 78px; flex-shrink: 0; color: var(--sipl-muted); }
.sipl-addr__row .v { color: var(--sipl-ink); }
.sipl-addr__edit { background: var(--sipl-white); border: 1px solid var(--sipl-border); color: var(--sipl-ink); padding: 7px 12px; cursor: pointer; font-weight: 600; font-size: 13px; white-space: nowrap; align-self: flex-start; }
.sipl-addr__edit:hover { border-color: var(--sipl-ink-2); }
.sipl-addr-add { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px; border: 1.5px dashed var(--sipl-border); background: var(--sipl-cream-2); color: var(--sipl-ink); font-weight: 600; cursor: pointer; }
.sipl-addr-add:hover { border-color: var(--sipl-ink-2); color: var(--sipl-ink-2); }

/* Payment option radio cards */
.sipl-pay-list { display: flex; flex-direction: column; gap: 12px; }
.sipl-pay { display: flex; align-items: center; gap: 14px; background: var(--sipl-white); border: 1px solid var(--sipl-border); padding: 12px 16px; cursor: pointer; }
.sipl-pay:has(input:checked) { border-color: var(--sipl-ink-2); box-shadow: inset 0 0 0 1px var(--sipl-ink-2); }
.sipl-pay__thumb { width: 56px; height: 40px; flex-shrink: 0; display: grid; place-items: center; border: 1px solid var(--sipl-border-soft); background: var(--sipl-white); overflow: hidden; }
.sipl-pay__thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.sipl-pay__name { font-weight: 600; color: var(--sipl-ink-2); font-size: 14.5px; }
.sipl-pay-divide { text-align: center; position: relative; margin: 14px 0; color: var(--sipl-muted); font-size: 13px; }
.sipl-pay-divide::before { content: ''; position: absolute; left: 0; top: 50%; width: 100%; height: 1px; background: var(--sipl-border-soft); }
.sipl-pay-divide span { background: var(--sipl-cream); padding: 0 12px; position: relative; }

/* Confirmation */
.sipl-confirm { max-width: 520px; margin: 0 auto; text-align: center; background: var(--sipl-white); border: 1px solid var(--sipl-border); padding: 48px 40px; }
.sipl-confirm img { max-width: 150px; margin: 0 auto 18px; display: block; }
.sipl-confirm h3 { font-family: var(--sipl-display); font-weight: 800; color: var(--sipl-ink-2); margin-bottom: 8px; }
.sipl-confirm p { color: var(--sipl-muted); margin-bottom: 24px; }

/* Step nav (back / continue) */
.sipl-checkout-nav { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.sipl-back { display: inline-flex; align-items: center; gap: 6px; color: var(--sipl-ink); font-weight: 600; text-decoration: none; }
.sipl-back:hover { color: var(--sipl-gold); }
.sipl-section-label { font-weight: 800; font-size: 16px; color: var(--sipl-ink-2); font-family: var(--sipl-display); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 16px; }

/* Auth modal tabs */
.sipl-auth-tabs { display: flex; border: 1px solid var(--sipl-border); margin-bottom: 22px; }
.sipl-auth-tabs .nav-item { flex: 1; }
.sipl-auth-tabs .nav-link { width: 100%; border: 0; border-radius: 0; padding: 12px; font-weight: 700; color: var(--sipl-muted); background: var(--sipl-cream-2); }
.sipl-auth-tabs .nav-link.active { background: var(--sipl-ink-2); color: #fff; }

@media (max-width: 991px) {
    .sipl-checkout { grid-template-columns: 1fr; }
    .sipl-checkout__aside { position: static; }
}
