/* ── Special Offers page ── */

/* HERO */
.so-hero {
  position: relative;
  height: 380px;
  background: linear-gradient(135deg, #0d1646 0%, #0a2a1a 55%, #162b08 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.so-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.so-hero-inner {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.so-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #FBA504;
  margin-bottom: 10px;
}
.so-hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 6.5vw, 68px);
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 14px;
}
.so-hero-title em { color: #FBA504; font-style: normal; }
.so-hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  max-width: 440px;
  margin: 0 auto 22px;
  line-height: 1.65;
}
.so-hero-pills {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.so-hero-pill {
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.88);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

/* URGENCY BAR */
.so-urgency {
  background: linear-gradient(90deg, #0d1646, #162e4d);
  color: rgba(255,255,255,0.85);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
}
.so-urgency strong { color: #FBA504; }
.so-urgency-dot {
  width: 6px;
  height: 6px;
  background: #4caf50;
  border-radius: 50%;
  flex-shrink: 0;
}

/* TRUST BAR */
.so-trust {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 600;
  color: #555;
}
.so-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* PAGE BODY */
.so-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 44px 20px 80px;
}
.so-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FBA504;
  margin-bottom: 5px;
}
.so-title {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #0d1646;
  margin-bottom: 4px;
}
.so-title em { font-style: italic; color: #FBA504; }
.so-count {
  font-size: 12px;
  color: #999;
  margin-bottom: 28px;
}

/* CARDS */
.so-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.so-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: row;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 180px;
}
.so-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

/* image panel */
.so-card-img {
  width: 260px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.so-card-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.so-card-img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.12), transparent 70%);
}

.so-card-discount {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #e53935;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 6px 11px 5px;
  border-radius: 8px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(229,57,53,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.so-card-discount small {
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.88;
}

.so-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(13,22,70,0.82);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
}

.so-card-price {
  position: absolute;
  bottom: 12px;
  left: 14px;
}
.so-card-price-now {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.so-card-price-per {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin-top: 1px;
}
.so-card-price-was {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-decoration: line-through;
}

/* detail panel */
.so-card-detail {
  flex: 1;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  min-width: 0;
}
.so-card-name {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0d1646;
  line-height: 1.2;
}
.so-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.so-card-meta-item {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  display: flex;
  align-items: center;
  gap: 3px;
}
.so-card-stars { color: #FBA504; font-size: 12px; letter-spacing: 0.5px; }
.so-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}
.so-card-rating b { font-weight: 700; color: #222; }
.so-card-rating small { color: #aaa; }

.so-card-save {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fffbf0;
  border: 1px solid #fde68a;
  border-radius: 7px;
  padding: 5px 11px;
  font-size: 12px;
  width: fit-content;
}
.so-card-save b { color: #92620a; }
.so-card-save span { color: #bbb; }

.so-card-btn {
  display: inline-block;
  margin-top: 4px;
  background: #FBA504;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 9px 20px;
  border-radius: 9px;
  width: fit-content;
  text-decoration: none;
  transition: background 0.18s;
}
.so-card-btn:hover { background: #e09400; }

/* EMPTY STATE */
.so-empty {
  text-align: center;
  padding: 80px 24px;
  color: #888;
}
.so-empty h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: #0d1646;
  margin-bottom: 10px;
}
.so-empty p { font-size: 14px; line-height: 1.6; }
.so-empty a {
  display: inline-block;
  margin-top: 20px;
  background: #FBA504;
  color: #fff;
  padding: 10px 24px;
  border-radius: 9px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

/* responsive */
@media (max-width: 600px) {
  .so-card { flex-direction: column; min-height: unset; }
  .so-card-img { width: 100%; height: 200px; }
  .so-hero { height: 320px; }
  .so-trust { gap: 16px; }
}
