/* ================================================================
   sliders-base.css
   Design tokens + shared utilities used by ALL slider stylesheets
   ================================================================ */


/* ── DESIGN TOKENS ───────────────────────────────────────────── */

:root {
  --ink:         #0f0e0c;
  --paper:       #f7f5f1;
  --line:        #e8e3d9;
  --muted:       #8a8278;
  --primary:     #0F4C81;
  --primary-d:   #2563EB;
  --accent:      #e8533a;
  --gold:        #c9913a;
  --teal:        #1e3c3a;
  --teal-soft:   #eaf0ef;
  --r:           12px;
}


/* ── RESET ───────────────────────────────────────────────────── */

*  { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

body {
  font-family: 'Vazirmatn', sans-serif;
  background: var(--paper);
  color: var(--ink);
}


/* ── SECTION WRAPPER ─────────────────────────────────────────── */

.slider-section + .slider-section { border-top: 1px solid var(--line); }

.sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.sec-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 4px;
}

.sec-sub {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 28px;
}


/* ── NAV PILL (prev / next buttons) ─────────────────────────── */

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 4px 6px;
}

.nav-pill button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}

.nav-pill button:hover {
  background: var(--primary);
  color: #fff;
}


/* ── BADGE ───────────────────────────────────────────────────── */

.p-badge {
  position: absolute;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  color: #fff;
}

.p-badge.off       { background: var(--accent); }
.p-badge.new-badge { background: var(--teal); }
.p-badge.hot       { background: var(--gold); }


/* ── STARS ───────────────────────────────────────────────────── */

.stars-row {
  color: var(--gold);
  font-size: 11.5px;
  letter-spacing: -.5px;
}


/* ── LAYOUT UTILITIES ────────────────────────────────────────── */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.swiper-slide { height: auto; }
