/* =========================
   HERO UNIT (Daily Horoscope)
   ========================= */
.hero-section {
  position: relative;
  padding: 120px 16px 34px;
  border-radius: 18px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
     rgba(255, 249, 193, 0.6);
  pointer-events: none;
}


.hero-content { position: relative; z-index: 1; }

.daily-reading {
  font-weight: 700;
  font-size: 16px;
  opacity: .9;
  margin: 0 0 12px;
}

/* =========================
   ZODIAC PILLS
   ========================= */
.zodiac-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 6px 2px 12px;
  scroll-snap-type: x mandatory;
}
.hide-scrollbar { scrollbar-width: none; }
.hide-scrollbar::-webkit-scrollbar { display: none; }

.zodiac-pill {
  flex: 0 0 auto;
  text-align: center;
  cursor: pointer;
  scroll-snap-align: start;
}

.zodiac-circle {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(49,57,87,.12);
  transition: .2s ease;
}

.zodiac-circle.active,
.zodiac-pill.active .zodiac-circle {
  background: #ff8a00;
  border-color: #ff8a00;
  box-shadow: 0 8px 18px rgba(255,138,0,.35);
}

.zodiac-symbol { font-size: 20px; color: #313957; }
.zodiac-circle.active .zodiac-symbol { color: #fff; }

.zodiac-name {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #313957;
  opacity: .9;
}

/* =========================
   HOROSCOPE BLOCKS
   ========================= */
.horoscope-section { margin-top: 12px; }

.horoscope-content { display: none; }
.horoscope-content.active { display: block; }

.horoscope-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.card-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.zodiac-info { display: flex; gap: 10px; align-items: center; }

.zodiac-badge {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: #ff8a00;
  color: #ff8a00;
  font-size: 18px; font-weight: 800;
}

.zodiac-details h3 { margin: 0; font-size: 18px; }
.zodiac-date { margin: 2px 0 0; font-size: 12px; opacity: .7; }

/* =========================
   TABS
   ========================= */
.tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f3f5f9;
  cursor: pointer;
  transition: .2s ease;
  font-size: 12px;
  font-weight: 700;
  color: #313957;
}

/* ✅ HARD HIDE SVG DOTS (high specificity, cannot be overridden) */
.hero-section .tabs .tab svg {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  position: absolute !important;
  pointer-events: none !important;
}

.tab-icon.material-symbols-outlined {
  font-size: 18px;
  color: #313957;
  transition: .2s ease;
}

.tab .tab-text { color: #313957; }

.tab.active {
  background: #ff8a00;
}

.tab.active .tab-text,
.tab.active .tab-icon.material-symbols-outlined {
  color: #fff;
}

/* Tab panels */
.tab-content { display: none; margin-top: 10px; }
.tab-content.active { display: block; }

.horoscope-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #313957;
}

/* =========================
   INFO CARDS
   ========================= */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 12px;
}

.info-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,.05);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.info-icon .material-symbols-outlined {
  font-size: 18px;
  color: #fff;
}

.info-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #313957;
}

.info-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #313957;
  opacity: .9;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px) {
  .info-cards { grid-template-columns: 1fr; }
  .card-header { flex-direction: column; align-items: flex-start; }
}
