/* ══════════════════════════════════════════════════════════════════
   TODAY'S BEST DEALS — Premium opportunity strip
   ══════════════════════════════════════════════════════════════════ */

.ds-section {
  padding: 2rem 0 3.5rem;
  position: relative;
}
.ds-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.ds-title-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.ds-icon {
  color: #4ade80;
  font-size: 0.9rem;
}
.ds-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #f0f2f5;
  letter-spacing: -0.01em;
}
.ds-subtitle {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.4);
}
.ds-view-all {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent, #d4a853);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.ds-view-all:hover { color: #e8c87a; }

/* Scroll strip */
.ds-strip {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}
.ds-strip::-webkit-scrollbar { display: none; }

/* Deal card */
.ds-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.008) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary, #e8eaed);
  transition: transform 0.18s ease-out, border-color 0.18s ease-out, box-shadow 0.25s ease-out;
  position: relative;
}
.ds-card:hover {
  transform: translateY(-3px);
  border-color: rgba(74,222,128,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* Image area */
.ds-img {
  height: 120px;
  background: rgba(255,255,255,0.02);
  position: relative;
  overflow: hidden;
}
.ds-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.ds-card:hover .ds-img img { opacity: 1; }
.ds-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 1.8rem;
  color: rgba(255,255,255,0.06);
  font-weight: 700;
}

/* Deal badge (overlaid on image) */
.ds-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.2em 0.5em;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.ds-badge--great { background: rgba(22,101,52,0.92); color: #4ade80; }
.ds-badge--good { background: rgba(20,83,45,0.92); color: #4ade80; }

/* Percent badge */
.ds-pct {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.15em 0.4em;
  border-radius: 3px;
  font-size: 0.58rem;
  font-weight: 700;
  background: rgba(0,0,0,0.6);
  color: #4ade80;
  backdrop-filter: blur(4px);
}

/* Card body */
.ds-body {
  padding: 0.8rem 1rem 1rem;
}
.ds-coach-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #f0f2f5;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ds-prices {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}
.ds-price {
  font-size: 0.85rem;
  font-weight: 800;
  color: #f0f2f5;
  font-feature-settings: 'tnum';
}
.ds-est {
  font-size: 0.62rem;
  color: rgba(148,163,184,0.5);
  text-decoration: line-through;
}
.ds-savings {
  font-size: 0.6rem;
  font-weight: 600;
  color: #4ade80;
}

/* Responsive */
@media (max-width: 600px) {
  .ds-card { flex: 0 0 220px; }
  .ds-img { height: 100px; }
}
