/* =========================================================
   ASTRO RISHI RAHUL — PANCHANG PAGES VANILLA CSS
   100% Pure Modern Vanilla CSS (No Bootstrap, No External CSS Libraries)
   Design System Tokens: Maroon (#7b1113 / #6E1A08), Gold (#D4AF37), Light Cream (#FFF9F1)
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --primary-maroon: #6E1A08;
  --maroon-dark: #3B0B03;
  --maroon-main: #7b1113;
  --maroon-light: #9e181c;
  --maroon-subtle: #FFF0EB;
  --gold-main: #D4AF37;
  --gold-dark: #A8862A;
  --gold-light: #F0D482;
  --gold-subtle: #FFFDF5;
  --bg-cream: #FFF9F1;
  --white: #FFFFFF;
  --text-dark: #2D1A12;
  --text-muted: #665852;
  --card-border: #F3E7DB;
  --shadow-card: 0 10px 30px rgba(74, 35, 19, 0.06);
  --shadow-hover: 0 16px 40px rgba(110, 26, 8, 0.12);
  --radius-card: 16px;
  --radius-pill: 50px;
}

/* =========================================================
   PURE VANILLA UTILITY & HELPER CLASSES
   ========================================================= */
.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-column,
.vstack {
  display: flex !important;
  flex-direction: column !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.me-auto {
  margin-right: auto !important;
}

.text-center {
  text-align: center !important;
}

.text-end {
  text-align: right !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

/* Typography & Colors */
.text-maroon {
  color: var(--maroon-main) !important;
}

.text-gold {
  color: var(--gold-main) !important;
}

.text-gold-dark {
  color: var(--gold-dark) !important;
}

.text-dark {
  color: var(--text-dark) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-danger {
  color: #c62828 !important;
}

.text-success {
  color: #2e7d32 !important;
}

.font-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.font-serif {
  font-family: 'Cinzel', Georgia, 'Times New Roman', serif !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

/* Padding & Margin Utility Rules */
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

/* Custom Badge Component */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  line-height: 1;
}

.bg-gold {
  background-color: var(--gold-main) !important;
  color: var(--text-dark) !important;
}

.bg-maroon {
  background-color: var(--maroon-main) !important;
  color: var(--white) !important;
}

.bg-cream {
  background-color: var(--bg-cream) !important;
}

/* Pure Vanilla Form Controls & Buttons */
.form-select,
.form-control {
  display: block;
  width: 100%;
  padding: 7px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  background-color: var(--white);
  border: 1.5px solid var(--card-border);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-select:focus,
.form-control:focus {
  border-color: var(--maroon-main);
  box-shadow: 0 0 0 3px rgba(123, 17, 19, 0.1);
}

.border-maroon {
  border-color: var(--maroon-main) !important;
}

.btn-outline-maroon {
  color: var(--maroon-main);
  border: 1.5px solid var(--maroon-main);
  background: transparent;
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-outline-maroon:hover {
  background-color: var(--maroon-main);
  color: var(--white);
}

/* =========================================================
   PANCHANG HERO BANNER AREA
   ========================================================= */
.panchang-hero-area,
.pch-fresh-hero {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon-main) 50%, var(--maroon-light) 100%);
  position: relative;
  padding: 36px 0 30px;
  color: var(--white);
  border-bottom: 3px solid var(--gold-main);
}

.pch-hero-breadcrumb,
.pch-fresh-bc {
  display: flex;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.pch-hero-breadcrumb a,
.pch-fresh-bc a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.pch-hero-breadcrumb a:hover,
.pch-fresh-bc a:hover {
  color: var(--gold-main);
}

.pch-hero-breadcrumb .pch-bc-current,
.pch-fresh-bc .active {
  color: var(--gold-main);
  font-weight: 600;
}

.pch-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pch-hero-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Cinzel', 'Poppins', Georgia, serif;
}

.pch-hero-subtitle {
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}

/* =========================================================
   NAVIGATION TABS
   ========================================================= */
.panchang-tab-bar,
.pch-fresh-tabs-bar {
  background: var(--maroon-dark);
  padding: 10px 0;
}

.panchang-tab-link,
.pch-nav-tab {
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 22px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.panchang-tab-link:hover,
.panchang-tab-link.active,
.pch-nav-tab:hover,
.pch-nav-tab.active {
  background: var(--gold-main);
  color: var(--maroon-dark);
}

/* =========================================================
   COMPACT WHITE FILTER TOOLBAR
   ========================================================= */
.panchang-filter-bar,
.pch-fresh-toolbar {
  background: var(--white);
  border-bottom: 1px solid var(--card-border);
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.pch-date-display {
  font-size: 1rem;
  font-weight: 700;
  color: var(--maroon-main);
  background: var(--bg-cream);
  border: 1.5px solid var(--gold-main);
  padding: 5px 16px;
  border-radius: 8px;
}

.pch-lang-select {
  border: 1.5px solid var(--maroon-main);
  color: var(--maroon-main);
  font-weight: 600;
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.88rem;
  background: var(--white);
}

/* =========================================================
   8 TOP SUMMARY CARDS GRID (FIXED NO-OVERFLOW)
   ========================================================= */
.summary-cards-section,
.pch-summary-section {
  margin-bottom: 24px;
  width: 100%;
}

.summary-cards-grid,
.pch-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

@media (max-width: 992px) {

  .summary-cards-grid,
  .pch-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {

  .summary-cards-grid,
  .pch-summary-grid {
    grid-template-columns: 1fr;
  }
}

.summary-card-item,
.pch-summary-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-width: 0;
}

.summary-card-item:hover,
.pch-summary-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-main);
}

.sc-icon,
.pch-sc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  background: var(--maroon-subtle);
  color: var(--maroon-main);
}

.sc-info,
.pch-sc-info {
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.sc-label,
.pch-sc-label {
  display: block;
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-value,
.pch-sc-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.sc-sub,
.pch-sc-sub {
  font-size: 0.76rem;
  color: var(--maroon-main);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.festival-summary-card,
.pch-summary-card.festival-card {
  border-left: 4px solid var(--maroon-main);
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFDF8 100%);
}

.avoid-card,
.pch-summary-card.inauspicious-card {
  border-left: 4px solid var(--maroon-main);
}

.highlight-card,
.pch-summary-card.auspicious-card {
  border-left: 4px solid #2e7d32;
}

/* =========================================================
   PURE VANILLA 2-COLUMN MAIN LAYOUT (No Overlap / No Overflow)
   ========================================================= */
.panchang-layout,
.pch-main-layout {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 24px;
  width: 100%;
}

@media (max-width: 991.98px) {

  .panchang-layout,
  .pch-main-layout {
    grid-template-columns: 1fr;
  }
}

.panchang-main,
.pch-main-column {
  min-width: 0;
  width: 100%;
}

.panchang-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* =========================================================
   FEATURED CONTENT CARDS (FULL WIDTH STACKED)
   ========================================================= */
.astro-card,
.pch-feature-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  transition: box-shadow 0.25s ease;
}

.astro-card:hover,
.pch-feature-card:hover {
  box-shadow: var(--shadow-hover);
}

.card-body,
.pch-card-body {
  padding: 22px 24px;
  min-width: 0;
}

.pch-card-header {
  padding: 16px 24px;
  background: var(--white);
  border-bottom: 1.5px solid var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.pch-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon-main);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', 'Poppins', Georgia, serif;
}

.pch-card-title i {
  color: var(--gold-main);
}

/* Key-Value Meta Grid inside Full Width Feature Cards */
.astro-meta-grid,
.pch-kv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  font-size: 0.88rem;
  width: 100%;
}

@media (max-width: 640px) {

  .astro-meta-grid,
  .pch-kv-grid {
    grid-template-columns: 1fr;
  }
}

.am-item,
.pch-kv-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-cream);
  border-radius: 10px;
  border: 1px solid #F6EFE7;
  min-width: 0;
  gap: 8px;
}

.pch-kv-label,
.am-item span {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.85rem;
  white-space: nowrap;
}

.pch-kv-value,
.am-item strong {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.88rem;
  text-align: right;
  overflow-wrap: break-word;
  word-break: break-word;
}

.astro-desc-box,
.pch-desc-box {
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--gold-subtle);
  border-left: 3.5px solid var(--gold-main);
  border-radius: 8px;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  width: 100%;
}

/* =========================================================
   MUHURAT GRID CARDS
   ========================================================= */
.pch-muhurat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

@media (max-width: 992px) {
  .pch-muhurat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .pch-muhurat-grid {
    grid-template-columns: 1fr;
  }
}

.pch-muhurat-item {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: var(--bg-cream);
  min-width: 0;
}

.pch-muhurat-item.good {
  background: #f1f8e9;
  border-color: #c8e6c9;
}

.pch-muhurat-item.bad {
  background: var(--maroon-subtle);
  border-color: #ffcdd2;
}

.pch-muhurat-title {
  font-size: 0.82rem;
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pch-muhurat-time {
  font-size: 0.94rem;
  font-weight: 700;
  font-family: monospace;
}

/* =========================================================
   FESTIVAL LIST CARDS
   ========================================================= */
.pch-fest-item {
  padding: 14px 18px;
  background: var(--bg-cream);
  border: 1.5px solid var(--gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  width: 100%;
}

.pch-upcoming-item {
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  width: 100%;
}

/* =========================================================
   VANILLA SIDEBAR STYLES
   ========================================================= */
.panchang-sidebar,
.pch-fresh-sidebar {
  position: sticky;
  top: 90px;
  min-width: 0;
}

.panchang-sidebar .widget,
.pch-fresh-sidebar .widget {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
}

.panchang-sidebar .widget-title,
.pch-fresh-sidebar .widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--maroon-main);
  border-bottom: 2px solid var(--gold-light);
  padding-bottom: 8px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pch-quick-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-cream);
  border-radius: 8px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 8px;
  transition: all 0.2s;
}

.pch-quick-link:hover {
  background: var(--maroon-main);
  color: var(--white);
}

.pch-quick-link i {
  color: var(--gold-main);
}

.pch-quick-link:hover i {
  color: var(--gold-light);
}

/* =========================================================
   WEEKLY PANCHANG REDESIGN STYLES
   ========================================================= */

/* Week Navigation Bar */
.pch-week-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}

.pch-week-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background: var(--bg-cream);
  color: var(--maroon-main);
  border: 1.5px solid var(--card-border);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.pch-week-nav-btn:hover {
  background: var(--maroon-main);
  color: var(--white);
  border-color: var(--maroon-main);
  box-shadow: 0 4px 12px rgba(110, 26, 8, 0.15);
}

.pch-week-date-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--maroon-main);
  background: linear-gradient(135deg, var(--gold-subtle) 0%, var(--bg-cream) 100%);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.8);
}

/* 7-Day Responsive Layout Grid */
.weekly-panchang-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

@media (max-width: 1100px) {
  .weekly-panchang-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .weekly-panchang-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Day Card Styling */
.weekly-day-card {
  background: var(--white);
  border: 1.5px solid var(--card-border);
  background: linear-gradient(135deg, #E5BD44 0%, #D4AF37 100%) !important;
  border: 1.5px solid #C29A2B !important;
  border-radius: var(--radius-card, 16px) !important;
  box-shadow: 0 8px 24px rgba(74, 35, 19, 0.1) !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.weekly-day-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 28px rgba(59, 11, 3, 0.22) !important;
  border-color: #3B0B03 !important;
}

/* Current Day Highlight - Dark Maroon Outline & Today Glow */
.weekly-day-card.is-today {
  border: 2.5px solid #3B0B03 !important;
  box-shadow: 0 12px 32px rgba(59, 11, 3, 0.25) !important;
}

.weekly-day-card.is-today::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3B0B03, #7b1113, #3B0B03);
}

/* Card Header */
.wdc-header {
  padding: 16px 18px 14px;
  background: linear-gradient(135deg, #E5BD44 0%, #D4AF37 100%) !important;
  border-bottom: 1px solid rgba(59, 11, 3, 0.15) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.weekly-day-card.is-today .wdc-header {
  background: linear-gradient(135deg, #E5BD44 0%, #D4AF37 100%) !important;
}

.wdc-day-name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #3B0B03 !important;
  line-height: 1.2;
}

.wdc-date-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #4A2313 !important;
}

.wdc-today-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #3B0B03 !important;
  color: #F0D482 !important;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(59, 11, 3, 0.35);
}

/* Card Body */
.wdc-body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Panchang Pill Items - Crisp Soft Cream Background */
.wdc-pill-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFDF9 !important;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #EAE0D0 !important;
  box-shadow: 0 2px 6px rgba(59, 11, 3, 0.04);
  transition: all 0.25s ease;
}

.wdc-pill-item:hover {
  background: #FFFFFF !important;
  border-color: #3B0B03 !important;
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(59, 11, 3, 0.12);
}

.wdc-pill-icon,
.bg-maroon-light,
.bg-gold-light {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #3B0B03 !important;
  color: #D4AF37 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.wdc-pill-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.wdc-pill-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #665852 !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 3px;
}

.wdc-pill-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: #2D1A12 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wdc-paksha-tag {
  font-size: 0.76rem;
  font-weight: 600;
  color: #7b1113 !important;
  margin-left: 3px;
}

/* Vrat / Festival Badges */
.wdc-vrat-wrapper {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.wdc-vrat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFDF0 !important;
  border: 1.5px solid #3B0B03 !important;
  color: #3B0B03 !important;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(59, 11, 3, 0.15);
}

.wdc-vrat-badge i {
  color: #7b1113 !important;
}

.wdc-vrat-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Card CTA Footer */
.wdc-footer {
  padding: 12px 18px 16px;
  border-top: 1px solid var(--card-border);
  background: var(--white);
}

.wdc-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 9px 16px;
  background: var(--maroon-subtle);
  color: var(--maroon-main);
  border: 1.5px solid rgba(110, 26, 8, 0.2);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.wdc-action-btn:hover {
  background: var(--maroon-main);
  color: var(--white);
  border-color: var(--maroon-main);
  box-shadow: 0 4px 12px rgba(110, 26, 8, 0.2);
}

.wdc-action-btn i {
  transition: transform 0.25s ease;
}

.wdc-action-btn:hover i {
  transform: translateX(4px);
  color: var(--gold-light);
}

/* =========================================================
   GOOGLE CALENDAR-STYLE MONTHLY GRID STYLES
   ========================================================= */

.monthly-calendar-container {
  width: 100%;
}

/* Month Navigation Bar */
.mcal-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}

.mcal-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background: var(--bg-cream);
  color: var(--maroon-main);
  border: 1.5px solid var(--card-border);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.mcal-nav-btn:hover {
  background: var(--maroon-main);
  color: var(--white);
  border-color: var(--maroon-main);
  box-shadow: 0 4px 12px rgba(110, 26, 8, 0.15);
}

.mcal-month-badge {
  display: inline-flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--maroon-main);
  background: linear-gradient(135deg, var(--gold-subtle) 0%, var(--bg-cream) 100%);
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.8);
}

/* Calendar Main Grid Wrapper */
.mcal-grid-wrapper {
  background: var(--white);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

/* 7-Column Days Header Banner */
.mcal-grid-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon-main) 100%);
  border-bottom: 2px solid var(--gold-main);
}

.mcal-day-header {
  padding: 12px 6px;
  text-align: center;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.mcal-day-header:last-child {
  border-right: none;
}

/* 7-Column Grid Body */
.mcal-grid-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #EAE6DF;
  gap: 1px;
}

/* Individual Day Cell */
.mcal-day-cell {
  background: var(--white);
  min-height: 125px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.mcal-day-cell:hover:not(.other-month) {
  background: #FFFDF8;
  box-shadow: inset 0 0 0 1.5px var(--gold-main);
  z-index: 2;
}

/* Other Month Padding Cells */
.mcal-day-cell.other-month {
  background: #F7F4EF;
  cursor: default;
  opacity: 0.65;
}

/* Today Cell Highlight */
.mcal-day-cell.is-today {
  background: #FFFDF5;
  box-shadow: inset 0 0 0 2px var(--gold-main);
  z-index: 3;
}

/* Cell Header: Date Number */
.mcal-cell-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 6px;
}

.mcal-date-num {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
}

.other-month .mcal-date-num {
  color: var(--text-muted);
  font-weight: 500;
}

.mcal-today-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-main);
  color: var(--maroon-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.35);
}

/* Cell Content Area */
.mcal-cell-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  overflow: hidden;
}

/* Tithi Tag */
.mcal-tithi-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--maroon-main);
  background: var(--maroon-subtle);
  padding: 2px 7px;
  border-radius: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.35;
  display: inline-block;
  max-width: 100%;
}

/* Nakshatra Text */
.mcal-nakshatra-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

/* Vrat / Festival Container & Chip */
.mcal-vrat-container {
  margin-top: 2px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mcal-vrat-chip {
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #FFFDF0 0%, #FFF3D1 100%);
  border: 1px solid var(--gold-main);
  color: var(--maroon-dark);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
}

.mcal-vrat-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mcal-more-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold-dark);
  padding-left: 2px;
}

/* Responsive adjustments for mobile screens */
@media (max-width: 768px) {
  .mcal-day-cell {
    min-height: 90px;
    padding: 5px 6px;
  }

  .mcal-day-header {
    padding: 8px 2px;
    font-size: 0.75rem;
  }

  .mcal-tithi-pill {
    font-size: 0.66rem;
    padding: 1px 4px;
  }

  .mcal-nakshatra-text {
    display: none;
  }

  .mcal-vrat-chip {
    font-size: 0.64rem;
    padding: 1px 4px;
  }
}

/* =========================================================
   TODAY'S PANCHANG CARD VISUAL ENHANCEMENT STYLES
   ========================================================= */

.todays-panchang-container {
  width: 100%;
}

/* Base Summary Card Items in Today's Panchang */
.todays-panchang-container .summary-card-item {
  background: #FFFDF9;
  border: 1px solid #EAE0D0;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(92, 10, 10, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.todays-panchang-container .summary-card-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(92, 10, 10, 0.09);
  border-color: var(--gold-main);
}

/* Solidified Icon Badges */
.todays-panchang-container .sc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.todays-panchang-container .sc-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.todays-panchang-container .sc-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 2px;
}

.todays-panchang-container .sc-value {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 1 & 2. Tithi & Nakshatra Cards (Golden Cream Background) */
.todays-panchang-container .sc-card-tithi,
.todays-panchang-container .sc-card-nakshatra {
  background: linear-gradient(135deg, #FFFDF5 0%, #FFFBF0 100%);
  border-color: #F5E8C9;
}

.todays-panchang-container .sc-card-tithi .sc-icon,
.todays-panchang-container .sc-card-nakshatra .sc-icon {
  background: var(--maroon-main);
  color: var(--gold-light);
}

.todays-panchang-container .sc-card-tithi .sc-value,
.todays-panchang-container .sc-card-nakshatra .sc-value {
  color: var(--maroon-main);
}

/* 3. Today's Festival Box (Glowing Warm Gold Background) */
.todays-panchang-container .sc-card-festival {
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 1px solid #FCD34D;
  border-left: 4px solid var(--maroon-main);
  box-shadow: 0 4px 14px rgba(212, 160, 23, 0.12);
}

.todays-panchang-container .sc-card-festival .sc-icon {
  background: var(--maroon-main);
  color: var(--gold-main);
}

.todays-panchang-container .sc-card-festival .sc-label {
  color: var(--maroon-main);
}

.todays-panchang-container .sc-card-festival .sc-value {
  color: var(--maroon-dark);
}

/* 4, 5, 6. Sunrise, Sunset, Moon Sign Cards (Warm Peach Tint) */
.todays-panchang-container .sc-card-sunrise,
.todays-panchang-container .sc-card-sunset,
.todays-panchang-container .sc-card-moonsign {
  background: linear-gradient(135deg, #FFFDF8 0%, #FFF8F0 100%);
  border-color: #F8E5D0;
}

.todays-panchang-container .sc-card-sunrise .sc-icon,
.todays-panchang-container .sc-card-sunset .sc-icon,
.todays-panchang-container .sc-card-moonsign .sc-icon {
  background: var(--maroon-subtle);
  color: var(--maroon-main);
}

/* 7. Rahu Kaal Card (Inauspicious Rose/Red Tint) */
.todays-panchang-container .sc-card-rahukaal {
  background: linear-gradient(135deg, #FFF5F5 0%, #FEF2F2 100%);
  border: 1px solid #FECDD3;
  border-left: 4px solid #C53030;
}

.todays-panchang-container .sc-card-rahukaal .sc-icon {
  background: #C53030;
  color: #FFFFFF;
}

.todays-panchang-container .sc-card-rahukaal .sc-label {
  color: #9B2C2C;
}

.todays-panchang-container .sc-card-rahukaal .sc-value {
  color: #742A2A;
}

/* 8. Abhijit Muhurta Card (Auspicious Emerald Tint) */
.todays-panchang-container .sc-card-abhijit {
  background: linear-gradient(135deg, #F6FFED 0%, #F0FDF4 100%);
  border: 1px solid #BBF7D0;
  border-left: 4px solid #2F855A;
}

.todays-panchang-container .sc-card-abhijit .sc-icon {
  background: #2F855A;
  color: #FFFFFF;
}

.todays-panchang-container .sc-card-abhijit .sc-label {
  color: #22543D;
}

.todays-panchang-container .sc-card-abhijit .sc-value {
  color: #1C4532;
}

/* Detailed Metadata Key-Value Items (Soft Pill Containers) */
.todays-panchang-container .astro-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (max-width: 576px) {
  .todays-panchang-container .astro-meta-grid {
    grid-template-columns: 1fr;
  }
}

.todays-panchang-container .am-item {
  background: #F7F3EB;
  border: 1px solid #EAE0D0;
  border-radius: 10px;
  padding: 9px 13px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.todays-panchang-container .am-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.todays-panchang-container .am-item strong {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Hover State Background Color #D4AF37 for Today's Panchang Blocks */
.todays-panchang-container .summary-card-item:hover {
  background: #D4AF37 !important;
  border-color: #B89228 !important;
  box-shadow: 0 8px 20px rgba(184, 146, 40, 0.25) !important;
}

.todays-panchang-container .summary-card-item:hover .sc-label,
.todays-panchang-container .summary-card-item:hover .sc-value {
  color: #3B0B03 !important;
}

.todays-panchang-container .summary-card-item:hover .sc-icon {
  background: #3B0B03 !important;
  color: #D4AF37 !important;
}

.todays-panchang-container .am-item {
  transition: all 0.25s ease;
}

.todays-panchang-container .am-item:hover {
  background: #D4AF37 !important;
  border-color: #B89228 !important;
}

.todays-panchang-container .am-item:hover span,
.todays-panchang-container .am-item:hover strong {
  color: #3B0B03 !important;
}

.todays-panchang-container .p-3.rounded-3 {
  transition: all 0.25s ease;
}

.todays-panchang-container .p-3.rounded-3:hover {
  background: #D4AF37 !important;
  border-color: #B89228 !important;
  color: #3B0B03 !important;
}

.todays-panchang-container .p-3.rounded-3:hover span,
.todays-panchang-container .p-3.rounded-3:hover h6,
.todays-panchang-container .p-3.rounded-3:hover strong,
.todays-panchang-container .p-3.rounded-3:hover i {
  color: #3B0B03 !important;
}

/* Search City Sidebar Widget - Primary Maroon Background */
.search-city-widget {
  background: linear-gradient(135deg, var(--maroon-dark, #3B0B03) 0%, var(--primary-maroon, #6E1A08) 100%) !important;
  color: var(--white, #FFFFFF) !important;
  border: 1.5px solid var(--gold-main, #D4AF37) !important;
  box-shadow: 0 8px 24px rgba(59, 11, 3, 0.18) !important;
  border-radius: var(--radius-card, 16px) !important;
}

.search-city-widget .widget-title {
  color: var(--white, #FFFFFF) !important;
  border-bottom: 2px solid var(--gold-main, #D4AF37) !important;
}

.search-city-widget .widget-title i {
  color: var(--gold-main, #D4AF37) !important;
}

.search-city-widget .widget-search {
  background: rgba(255, 255, 255, 0.08) !important;
  border: none !important;
}

.search-city-widget label {
  color: var(--gold-light, #F0D482) !important;
}

.search-city-widget select,
.search-city-widget #sidebarCitySelect {
  background-color: var(--white, #FFFFFF) !important;
  color: var(--maroon-main, #7b1113) !important;
  border: 1.5px solid var(--gold-main, #D4AF37) !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
}

.search-city-widget select:focus,
.search-city-widget #sidebarCitySelect:focus {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3) !important;
  border-color: var(--gold-main, #D4AF37) !important;
}

/* Quick Actions Sidebar Widget - Matching Search City Container Styling */
.quick-actions-widget {
  background: linear-gradient(135deg, var(--maroon-dark, #3B0B03) 0%, var(--primary-maroon, #6E1A08) 100%) !important;
  color: var(--white, #FFFFFF) !important;
  border: 1.5px solid var(--gold-main, #D4AF37) !important;
  box-shadow: 0 8px 24px rgba(59, 11, 3, 0.18) !important;
  border-radius: var(--radius-card, 16px) !important;
}

.quick-actions-widget .widget-title {
  color: var(--white, #FFFFFF) !important;
  border-bottom: 2px solid var(--gold-main, #D4AF37) !important;
}

.quick-actions-widget .widget-title i {
  color: var(--gold-main, #D4AF37) !important;
}

/* Quick Action List & Item Styles */
.quick-actions-widget .quick-action-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-actions-widget .quick-action-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 14px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  border-radius: 10px !important;
  color: var(--white, #FFFFFF) !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  margin-bottom: 0 !important;
}

.quick-actions-widget .quick-action-item i {
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  background: var(--gold-main, #D4AF37) !important;
  color: var(--maroon-dark, #3B0B03) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.85rem !important;
  flex-shrink: 0 !important;
  transition: all 0.25s ease !important;
}

.quick-actions-widget .quick-action-item:hover {
  background: var(--gold-main, #D4AF37) !important;
  border-color: var(--gold-main, #D4AF37) !important;
  color: var(--maroon-dark, #3B0B03) !important;
  transform: translateX(4px) !important;
}

.quick-actions-widget .quick-action-item:hover i {
  background: var(--maroon-dark, #3B0B03) !important;
  color: var(--gold-light, #F0D482) !important;
}

/* Featured Products & Latest Blogs Sidebar Widgets - Matching Search City Container Styling */
.featured-products-widget,
.latest-blogs-widget {
  background: linear-gradient(135deg, var(--maroon-dark, #3B0B03) 0%, var(--primary-maroon, #6E1A08) 100%) !important;
  color: var(--white, #FFFFFF) !important;
  border: 1.5px solid var(--gold-main, #D4AF37) !important;
  box-shadow: 0 8px 24px rgba(59, 11, 3, 0.18) !important;
  border-radius: var(--radius-card, 16px) !important;
}

.featured-products-widget .widget-title,
.latest-blogs-widget .widget-title {
  color: var(--white, #FFFFFF) !important;
  border-bottom: 2px solid var(--gold-main, #D4AF37) !important;
}

.featured-products-widget .widget-title i,
.latest-blogs-widget .widget-title i {
  color: var(--gold-main, #D4AF37) !important;
}

/* Mini Post Item Container Styling inside Dark Maroon Widgets */
.featured-products-widget .mini-post,
.latest-blogs-widget .mini-post {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 12px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  border-radius: 10px !important;
  margin-bottom: 10px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.featured-products-widget .mini-post:last-child,
.latest-blogs-widget .mini-post:last-child {
  margin-bottom: 0 !important;
}

.featured-products-widget .mini-post:hover,
.latest-blogs-widget .mini-post:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: var(--gold-main, #D4AF37) !important;
  transform: translateX(4px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Product & Blog Image Thumbnails */
.featured-products-widget .mini-post img,
.latest-blogs-widget .mini-post img {
  width: 50px !important;
  height: 50px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  border: 1.5px solid rgba(212, 175, 55, 0.5) !important;
  flex-shrink: 0 !important;
}

/* Product & Blog Titles */
.featured-products-widget .mini-post h5,
.latest-blogs-widget .mini-post h5 {
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: var(--white, #FFFFFF) !important;
  margin: 0 0 3px 0 !important;
  line-height: 1.25 !important;
  transition: color 0.2s ease !important;
}

.featured-products-widget .mini-post:hover h5,
.latest-blogs-widget .mini-post:hover h5 {
  color: var(--gold-light, #F0D482) !important;
}

/* Product Prices (Gold Tint) */
.featured-products-widget .mini-post span {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: var(--gold-main, #D4AF37) !important;
  display: block !important;
}

/* Blog Dates / Meta Text (Light Warm Gold) */
.latest-blogs-widget .mini-post span {
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  color: var(--gold-light, #EAE0D0) !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.latest-blogs-widget .mini-post span i {
  color: var(--gold-main, #D4AF37) !important;
}

/* View Shop CTA Button */
.featured-products-widget .btn-shop-cta,
.featured-products-widget .widget-view-more {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 9px 16px !important;
  background: var(--gold-main, #D4AF37) !important;
  color: var(--maroon-dark, #3B0B03) !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25) !important;
}

.featured-products-widget .btn-shop-cta:hover,
.featured-products-widget .widget-view-more:hover {
  background: var(--gold-light, #F0D482) !important;
  color: var(--maroon-dark, #3B0B03) !important;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35) !important;
  transform: translateY(-2px) !important;
}

/* Latest Videos & Need Help Sidebar Widgets - Matching Search City Container Styling */
.latest-videos-widget,
.help-widget {
  background: linear-gradient(135deg, var(--maroon-dark, #3B0B03) 0%, var(--primary-maroon, #6E1A08) 100%) !important;
  color: var(--white, #FFFFFF) !important;
  border: 1.5px solid var(--gold-main, #D4AF37) !important;
  box-shadow: 0 8px 24px rgba(59, 11, 3, 0.18) !important;
  border-radius: var(--radius-card, 16px) !important;
  padding: 20px !important;
}

.latest-videos-widget .widget-title,
.help-widget .widget-title {
  color: var(--white, #FFFFFF) !important;
  border-bottom: 2px solid var(--gold-main, #D4AF37) !important;
  padding-bottom: 8px !important;
  margin-bottom: 14px !important;
}

.latest-videos-widget .widget-title i,
.help-widget .widget-title i {
  color: var(--gold-main, #D4AF37) !important;
}

/* Latest Videos Item Layout */
.latest-videos-widget .mini-post {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 12px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  border-radius: 10px !important;
  margin-bottom: 10px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.latest-videos-widget .mini-post:last-child {
  margin-bottom: 0 !important;
}

.latest-videos-widget .mini-post:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: var(--gold-main, #D4AF37) !important;
  transform: translateX(4px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.latest-videos-widget .mini-post img {
  width: 50px !important;
  height: 50px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  border: 1.5px solid rgba(212, 175, 55, 0.5) !important;
  flex-shrink: 0 !important;
}

.latest-videos-widget .mini-post h5 {
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: var(--white, #FFFFFF) !important;
  margin: 0 0 3px 0 !important;
  line-height: 1.25 !important;
  transition: color 0.2s ease !important;
}

.latest-videos-widget .mini-post:hover h5 {
  color: var(--gold-light, #F0D482) !important;
}

.latest-videos-widget .mini-post span {
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  color: var(--gold-light, #EAE0D0) !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.latest-videos-widget .mini-post span i {
  color: var(--gold-main, #D4AF37) !important;
}

/* Need Help? Description Text */
.help-widget .help-desc {
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.4 !important;
}

/* Need Help? Action Buttons */
.help-widget .btn-whatsapp-cta {
  background: var(--white, #FFFFFF) !important;
  color: #128C7E !important;
  border: 1.5px solid var(--white, #FFFFFF) !important;
  padding: 9px 16px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.help-widget .btn-whatsapp-cta:hover {
  background: #25D366 !important;
  color: var(--white, #FFFFFF) !important;
  border-color: #25D366 !important;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3) !important;
  transform: translateY(-2px) !important;
}

.help-widget .btn-whatsapp-cta i {
  color: #25D366 !important;
  font-size: 1rem !important;
}

.help-widget .btn-whatsapp-cta:hover i {
  color: var(--white, #FFFFFF) !important;
}

.help-widget .btn-call-cta {
  background: var(--gold-main, #D4AF37) !important;
  color: var(--maroon-dark, #3B0B03) !important;
  border: 1.5px solid var(--gold-main, #D4AF37) !important;
  padding: 9px 16px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25) !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  color: var(--white, #FFFFFF) !important;
  margin: 0 0 3px 0 !important;
  line-height: 1.25 !important;
  transition: color 0.2s ease !important;
}

.featured-products-widget .mini-post:hover h5,
.latest-blogs-widget .mini-post:hover h5 {
  color: var(--gold-light, #F0D482) !important;
}

/* Product Prices (Gold Tint) */
.featured-products-widget .mini-post span {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: var(--gold-main, #D4AF37) !important;
  display: block !important;
}

/* Blog Dates / Meta Text (Light Warm Gold) */
.latest-blogs-widget .mini-post span {
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  color: var(--gold-light, #EAE0D0) !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.latest-blogs-widget .mini-post span i {
  color: var(--gold-main, #D4AF37) !important;
}

/* View Shop CTA Button */
.featured-products-widget .btn-shop-cta,
.featured-products-widget .widget-view-more {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 9px 16px !important;
  background: var(--gold-main, #D4AF37) !important;
  color: var(--maroon-dark, #3B0B03) !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25) !important;
}

.featured-products-widget .btn-shop-cta:hover,
.featured-products-widget .widget-view-more:hover {
  background: var(--gold-light, #F0D482) !important;
  color: var(--maroon-dark, #3B0B03) !important;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35) !important;
  transform: translateY(-2px) !important;
}

/* Latest Videos & Need Help Sidebar Widgets - Matching Search City Container Styling */
.latest-videos-widget,
.help-widget {
  background: linear-gradient(135deg, var(--maroon-dark, #3B0B03) 0%, var(--primary-maroon, #6E1A08) 100%) !important;
  color: var(--white, #FFFFFF) !important;
  border: 1.5px solid var(--gold-main, #D4AF37) !important;
  box-shadow: 0 8px 24px rgba(59, 11, 3, 0.18) !important;
  border-radius: var(--radius-card, 16px) !important;
  padding: 20px !important;
}

.latest-videos-widget .widget-title,
.help-widget .widget-title {
  color: var(--white, #FFFFFF) !important;
  border-bottom: 2px solid var(--gold-main, #D4AF37) !important;
  padding-bottom: 8px !important;
  margin-bottom: 14px !important;
}

.latest-videos-widget .widget-title i,
.help-widget .widget-title i {
  color: var(--gold-main, #D4AF37) !important;
}

/* Latest Videos Item Layout */
.latest-videos-widget .mini-post {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 12px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  border-radius: 10px !important;
  margin-bottom: 10px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.latest-videos-widget .mini-post:last-child {
  margin-bottom: 0 !important;
}

.latest-videos-widget .mini-post:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: var(--gold-main, #D4AF37) !important;
  transform: translateX(4px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.latest-videos-widget .mini-post img {
  width: 50px !important;
  height: 50px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  border: 1.5px solid rgba(212, 175, 55, 0.5) !important;
  flex-shrink: 0 !important;
}

.latest-videos-widget .mini-post h5 {
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: var(--white, #FFFFFF) !important;
  margin: 0 0 3px 0 !important;
  line-height: 1.25 !important;
  transition: color 0.2s ease !important;
}

.latest-videos-widget .mini-post:hover h5 {
  color: var(--gold-light, #F0D482) !important;
}

.latest-videos-widget .mini-post span {
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  color: var(--gold-light, #EAE0D0) !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.latest-videos-widget .mini-post span i {
  color: var(--gold-main, #D4AF37) !important;
}

/* Need Help? Description Text */
.help-widget .help-desc {
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.4 !important;
}

/* Need Help? Action Buttons */
.help-widget .btn-whatsapp-cta {
  background: var(--white, #FFFFFF) !important;
  color: #128C7E !important;
  border: 1.5px solid var(--white, #FFFFFF) !important;
  padding: 9px 16px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.help-widget .btn-whatsapp-cta:hover {
  background: #25D366 !important;
  color: var(--white, #FFFFFF) !important;
  border-color: #25D366 !important;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3) !important;
  transform: translateY(-2px) !important;
}

.help-widget .btn-whatsapp-cta i {
  color: #25D366 !important;
  font-size: 1rem !important;
}

.help-widget .btn-whatsapp-cta:hover i {
  color: var(--white, #FFFFFF) !important;
}

.help-widget .btn-call-cta {
  background: var(--gold-main, #D4AF37) !important;
  color: var(--maroon-dark, #3B0B03) !important;
  border: 1.5px solid var(--gold-main, #D4AF37) !important;
  padding: 9px 16px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.help-widget .btn-call-cta:hover {
  background: var(--gold-light, #F0D482) !important;
  color: var(--maroon-dark, #3B0B03) !important;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35) !important;
  transform: translateY(-2px) !important;
}

/* Sun & Moon Timings Outer Gold Container */
.todays-panchang-container .sun-moon-card {
  background: linear-gradient(135deg, #E5BD44 0%, #D4AF37 100%) !important;
  border: 1.5px solid #C29A2B !important;
  border-radius: var(--radius-card, 16px) !important;
  box-shadow: 0 8px 24px rgba(74, 35, 19, 0.12) !important;
}

/* Inner Timing Sub-Cards (Crisp Off-White / Cream) */
.todays-panchang-container .timing-sub-card {
  background: #FFFDF9 !important;
  border: 1px solid #EAE0D0 !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  box-shadow: 0 2px 8px rgba(59, 11, 3, 0.04) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.todays-panchang-container .timing-sub-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(59, 11, 3, 0.14) !important;
  border-color: #3B0B03 !important;
  background: #FFFFFF !important;
}

/* Icon Container inside Inner Sub-Cards */
.todays-panchang-container .timing-sub-card .sc-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: #3B0B03 !important;
  color: #D4AF37 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.95rem !important;
  flex-shrink: 0 !important;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3) !important;
}

/* Text Styling inside Timing Sub-Cards */
.todays-panchang-container .timing-label {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: #665852 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}

.todays-panchang-container .timing-val {
  font-size: 0.96rem !important;
  font-weight: 700 !important;
  color: #2D1A12 !important;
}

/* Muhurat & Timings and Festival Outer Gold Containers */
.todays-panchang-container .muhurat-timings-card,
.todays-panchang-container .festival-section-card {
  background: linear-gradient(135deg, #E5BD44 0%, #D4AF37 100%) !important;
  border: 1.5px solid #C29A2B !important;
  border-radius: var(--radius-card, 16px) !important;
  box-shadow: 0 8px 24px rgba(74, 35, 19, 0.12) !important;
}

/* Inner Timing Sub-Cards for Muhurat & Timings */
.todays-panchang-container .muhurat-sub-card {
  background: #FFFDF9 !important;
  border: 1.5px solid #EAE0D0 !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  box-shadow: 0 2px 8px rgba(59, 11, 3, 0.04) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.todays-panchang-container .muhurat-sub-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(59, 11, 3, 0.14) !important;
  border-color: #3B0B03 !important;
  background: #FFFFFF !important;
}

/* Auspicious Accents (Abhijit, Brahma, & Amrit Kaal) */
.todays-panchang-container .sub-card-auspicious {
  background: #F0FDF4 !important;
  border: 2px solid #2F855A !important;
  box-shadow: 0 2px 8px rgba(47, 133, 90, 0.12) !important;
}

.todays-panchang-container .sub-card-auspicious:hover {
  border-color: #1A5336 !important;
  box-shadow: 0 6px 16px rgba(47, 133, 90, 0.2) !important;
}

.todays-panchang-container .sub-card-auspicious .title-text {
  color: #1A5336 !important;
}

/* Inauspicious Accents (Rahu Kaal & Yamaganda) */
.todays-panchang-container .sub-card-inauspicious {
  background: #FFF0F0 !important;
  border: 2px solid #C53030 !important;
  box-shadow: 0 2px 8px rgba(197, 48, 48, 0.12) !important;
}

.todays-panchang-container .sub-card-inauspicious:hover {
  border-color: #9B1C1C !important;
  box-shadow: 0 6px 16px rgba(197, 48, 48, 0.2) !important;
}

.todays-panchang-container .sub-card-inauspicious .title-text {
  color: #9B1C1C !important;
}

/* Inner Festival Sub-Cards */
.todays-panchang-container .festival-sub-card {
  background: #FFFDF9 !important;
  border: 1.5px solid #EAE0D0 !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  box-shadow: 0 2px 8px rgba(59, 11, 3, 0.04) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.todays-panchang-container .festival-sub-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(59, 11, 3, 0.14) !important;
  border-color: #3B0B03 !important;
  background: #FFFFFF !important;
}

.todays-panchang-container .festival-sub-card .badge.bg-maroon {
  background: #3B0B03 !important;
  color: #D4AF37 !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
}

.todays-panchang-container .festival-sub-card .badge.bg-gold {
  background: #D4AF37 !important;
  color: #3B0B03 !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
}

/* Overview Section Outer Gold Cards */
.todays-panchang-container .overview-detail-card {
  background: linear-gradient(135deg, #E5BD44 0%, #D4AF37 100%) !important;
  border: 1.5px solid #C29A2B !important;
  border-radius: var(--radius-card, 16px) !important;
  box-shadow: 0 8px 24px rgba(74, 35, 19, 0.12) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.todays-panchang-container .overview-detail-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 28px rgba(59, 11, 3, 0.22) !important;
  border-color: #3B0B03 !important;
}

/* Card Header inside Overview Detail Cards */
.todays-panchang-container .overview-detail-card .border-bottom {
  border-bottom-color: rgba(59, 11, 3, 0.15) !important;
}

.todays-panchang-container .overview-detail-card h6 {
  color: #3B0B03 !important;
  font-weight: 800 !important;
}

.todays-panchang-container .overview-detail-card .text-gold-dark {
  color: #4A2313 !important;
  font-weight: 700 !important;
}

.todays-panchang-container .overview-detail-card .sc-icon {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: #3B0B03 !important;
  color: #D4AF37 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem !important;
  flex-shrink: 0 !important;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3) !important;
}

/* Inner Key-Value Metric Pill Boxes (.am-item) */
.todays-panchang-container .overview-detail-card .am-item {
  background: #FFFDF9 !important;
  border: 1px solid #EAE0D0 !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  box-shadow: 0 2px 6px rgba(59, 11, 3, 0.04) !important;
  transition: transform 0.2s ease, border-color 0.2s ease !important;
}

.todays-panchang-container .overview-detail-card .am-item:hover {
  background: #FFFFFF !important;
  border-color: #3B0B03 !important;
  transform: translateX(3px) !important;
}

.todays-panchang-container .overview-detail-card .am-item .text-muted {
  color: #665852 !important;
  font-weight: 700 !important;
}

.todays-panchang-container .overview-detail-card .am-item strong {
  color: #2D1A12 !important;
  font-weight: 700 !important;
}

.todays-panchang-container .overview-detail-card .am-item strong.text-maroon {
  color: #9B1C1C !important;
}

/* Bottom Information / Note Boxes (.astro-desc-box) */
.todays-panchang-container .overview-detail-card .astro-desc-box {
  background: #FFFDF9 !important;
  border: 1px solid #EAE0D0 !important;
  border-left: 4px solid #3B0B03 !important;
  border-radius: 10px !important;
  color: #2D1A12 !important;
  padding: 12px 14px !important;
  box-shadow: 0 2px 8px rgba(59, 11, 3, 0.04) !important;
}

.todays-panchang-container .overview-detail-card .astro-desc-box i {
  color: #3B0B03 !important;
  font-size: 0.95rem !important;
}

/* ==========================================================================
   MONTHLY CALENDAR GRID STYLING (Google Calendar 7-Column Grid Layout)
   Scoped inside .monthly-calendar-container
   ========================================================================== */

.monthly-calendar-container {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

/* Month Navigation Bar */
.monthly-calendar-container .mcal-nav-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: linear-gradient(135deg, var(--maroon-dark, #3B0B03) 0%, var(--primary-maroon, #6E1A08) 100%) !important;
  padding: 14px 20px !important;
  border-radius: 14px 14px 0 0 !important;
  border: 1.5px solid var(--gold-main, #D4AF37) !important;
  border-bottom: none !important;
  color: var(--white, #FFFFFF) !important;
}

/* Month Name Badge (Center Pill: e.g. "August 2026") */
.monthly-calendar-container .mcal-month-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 20px !important;
  background: #FFFDF9 !important;
  border: 1.5px solid var(--gold-main, #D4AF37) !important;
  border-radius: 20px !important;
  color: #3B0B03 !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18) !important;
}

.monthly-calendar-container .mcal-month-badge i {
  color: var(--gold-main, #D4AF37) !important;
  font-size: 1.1rem !important;
}

.monthly-calendar-container .mcal-month-badge span,
.monthly-calendar-container .mcal-month-badge h3,
.monthly-calendar-container .mcal-month-badge div {
  color: #3B0B03 !important;
  font-weight: 800 !important;
}

/* Prev/Next Month Navigation Buttons */
.monthly-calendar-container .mcal-nav-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 8px 16px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.4) !important;
  border-radius: 20px !important;
  color: var(--white, #FFFFFF) !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.monthly-calendar-container .mcal-nav-btn:hover {
  background: var(--gold-main, #D4AF37) !important;
  color: #3B0B03 !important;
  border-color: var(--gold-main, #D4AF37) !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25) !important;
}

.monthly-calendar-container .mcal-nav-btn:hover i {
  color: #3B0B03 !important;
}

/* Google Calendar Grid Wrapper */
.mcal-grid-wrapper {
  width: 100% !important;
  box-sizing: border-box !important;
  border: 1.5px solid var(--gold-main, #D4AF37) !important;
  border-top: none !important;
  border-radius: 0 0 12px 12px !important;
  background: var(--white, #FFFFFF) !important;
  box-shadow: 0 8px 24px rgba(59, 11, 3, 0.12) !important;
  overflow: hidden !important;
}

/* 7-Column Days of Week Header Banner */
.mcal-grid-header {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  width: 100% !important;
  box-sizing: border-box !important;
  background: var(--maroon-dark, #3B0B03) !important;
  border-bottom: 2px solid var(--gold-main, #D4AF37) !important;
}

.mcal-day-header {
  padding: 10px 4px !important;
  text-align: center !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  color: var(--gold-light, #F0D482) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  border-right: 1px solid rgba(212, 175, 55, 0.2) !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

.mcal-day-header:last-child {
  border-right: none !important;
}

/* 7-Column Calendar Date Cells Body Grid */
.mcal-grid-body {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  width: 100% !important;
  box-sizing: border-box !important;
  background: #EAE6DF !important;
  gap: 1px !important;
}

/* Individual Day Cell */
.mcal-day-cell {
  background: var(--white, #FFFFFF) !important;
  min-height: 105px !important;
  padding: 8px 6px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  min-width: 0 !important;
  overflow: hidden !important;
  position: relative !important;
  transition: background 0.2s ease, box-shadow 0.2s ease !important;
  box-sizing: border-box !important;
}

/* Interactive Hover for Active Month Day Cells */
.mcal-day-cell.user-date-click {
  cursor: pointer !important;
}

.mcal-day-cell.user-date-click:hover {
  background: #FFF9F0 !important;
  box-shadow: inset 0 0 0 1.5px var(--gold-main, #D4AF37) !important;
}

/* Padding Cells from Other Months */
.mcal-day-cell.other-month {
  background: #F8F6F2 !important;
  opacity: 0.6 !important;
}

/* Current Day Highlight Cell */
.mcal-day-cell.is-today {
  background: #FFFDF5 !important;
  box-shadow: inset 0 0 0 2px var(--gold-main, #D4AF37) !important;
}

/* Cell Header: Date Number */
.mcal-cell-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 4px !important;
}

.mcal-date-num {
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: var(--text-dark, #2D1A12) !important;
}

.mcal-today-badge {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background: var(--gold-main, #D4AF37) !important;
  color: var(--maroon-dark, #3B0B03) !important;
  font-weight: 800 !important;
  font-size: 0.82rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Cell Content */
.mcal-cell-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
  min-width: 0 !important;
  width: 100% !important;
}

/* Tithi Pill Badge */
.mcal-tithi-pill {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: var(--maroon-dark, #3B0B03) !important;
  background: #FDF4E3 !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  padding: 2px 6px !important;
  border-radius: 6px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
  display: block !important;
}

/* Nakshatra Text */
.mcal-nakshatra-text {
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  color: #665852 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
  display: block !important;
}

/* Vrat / Festival Container & Chips */
.mcal-vrat-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  margin-top: 2px !important;
  min-width: 0 !important;
  width: 100% !important;
}

.mcal-vrat-chip {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  background: #3B0B03 !important;
  color: var(--white, #FFFFFF) !important;
  padding: 2px 5px !important;
  border-radius: 4px !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  min-width: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.mcal-vrat-title {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
  min-width: 0 !important;
  flex: 1 !important;
}

.mcal-more-tag {
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  color: var(--primary-maroon, #6E1A08) !important;
  text-align: right !important;
  display: block !important;
  margin-top: 1px !important;
}

/* Responsive adjust for smaller screens */
@media (max-width: 768px) {
  .mcal-day-cell {
    min-height: 85px !important;
    padding: 4px 3px !important;
  }

  .mcal-day-header {
    font-size: 0.75rem !important;
    padding: 8px 2px !important;
  }

  .mcal-tithi-pill {
    font-size: 0.65rem !important;
    padding: 1px 4px !important;
  }

  .mcal-nakshatra-text {
    display: none !important;
  }
}


/* =========================================================
   DAILY RASHIFAL SCOPED REDESIGN STYLES
   Scope Container: .rashifal-specific-layout
   Theme Palette: Maroon (#7B1113), Gold (#D4AF37), Cream (#FFFBF7)
   ========================================================= */

.rashifal-specific-layout {
  /* Scoped Theme Custom Properties */
  --rf-maroon: #7B1113;
  --rf-maroon-dark: #540B0C;
  --rf-maroon-light: #9B1A1D;
  --rf-maroon-soft: #FDF5F2;
  --rf-gold: #D4AF37;
  --rf-gold-dark: #AA8722;
  --rf-gold-light: #FAF1D6;
  --rf-cream-bg: #FFFBF7;
  --rf-card-bg: #FFFFFF;
  --rf-border-color: #F0E2CE;
  --rf-text-dark: #2B1D19;
  --rf-text-muted: #6B5B56;
  --rf-shadow-sm: 0 4px 14px rgba(123, 17, 19, 0.05);
  --rf-shadow-md: 0 8px 24px rgba(123, 17, 19, 0.08);
  --rf-shadow-hover: 0 12px 32px rgba(123, 17, 19, 0.14);
  --rf-radius: 14px;

  font-family: inherit;
  color: var(--rf-text-dark);
  margin-bottom: 2rem;
}

.rashifal-specific-layout * {
  box-sizing: border-box;
}

/* Headings Styling with Gold Decorative Accent Underline */
.rashifal-specific-layout .rashifal-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rf-maroon);
  margin-top: 0;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.rashifal-specific-layout .rashifal-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 75px;
  height: 3.5px;
  background: linear-gradient(90deg, var(--rf-gold) 0%, rgba(212, 175, 55, 0.15) 100%);
  border-radius: 4px;
}

.rashifal-specific-layout .rashifal-subheading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rf-maroon);
  margin-top: 1.75rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.rashifal-specific-layout .rashifal-subheading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55px;
  height: 3px;
  background: linear-gradient(90deg, var(--rf-gold) 0%, rgba(212, 175, 55, 0.15) 100%);
  border-radius: 3px;
}

.rashifal-specific-layout .rashifal-heading-icon {
  color: var(--rf-gold-dark);
  font-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Metrics 2x2 Grid (4 columns on Desktop) */
.rashifal-specific-layout .rashifal-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 992px) {
  .rashifal-specific-layout .rashifal-metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =========================================================
   GENERAL HOROSCOPE TOP 4 METRIC CARDS (STRICTLY SCOPED)
   Container Scope: .general-horoscope-metrics
   ========================================================= */

.general-horoscope-metrics {
  margin-bottom: 2rem;
}

.general-horoscope-metrics * {
  box-sizing: border-box;
}

/* Responsive Grid */
.general-horoscope-metrics .gh-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .general-horoscope-metrics .gh-metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Base Card Styling - Metallic Gold (#D4AF37) */
.general-horoscope-metrics .gh-metric-card {
  background-color: #D4AF37 !important;
  background: linear-gradient(135deg, #D4AF37 0%, #C59B27 100%) !important;
  border: 1px solid #70161E !important;
  border-left: 5px solid #5A0E14 !important;
  border-radius: 12px !important;
  padding: 1.25rem 1.1rem !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease-in-out !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* Header & Alignment */
.general-horoscope-metrics .gh-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

/* Icon Badges Base State */
.general-horoscope-metrics .gh-icon-wrapper {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background-color: #5A0E14 !important;
  color: #FFFFFF !important;
  border: 1px solid #3B0509 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease-in-out !important;
}

/* Base Typography Colors */
.general-horoscope-metrics .gh-card-label {
  font-size: 0.85rem;
  font-weight: 700 !important;
  color: #3B0509 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  transition: color 0.3s ease-in-out !important;
}

.general-horoscope-metrics .gh-card-value {
  font-size: 1.05rem;
  font-weight: 600 !important;
  color: #1A0003 !important;
  line-height: 1.35;
  padding-left: 0.25rem;
  transition: color 0.3s ease-in-out !important;
}

/* =========================================================
   HOVER STATE (:hover): DEEP MAROON (#6E1A08) & CONTRAST FLIP
   ========================================================= */

.general-horoscope-metrics .gh-metric-card:hover {
  background-color: #6E1A08 !important;
  background: linear-gradient(135deg, #6E1A08 0%, #521205 100%) !important;
  border-color: #D4AF37 !important;
  border-left-color: #F3C649 !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 20px rgba(110, 26, 8, 0.25) !important;
}

/* Label Flip -> Metallic Gold */
.general-horoscope-metrics .gh-metric-card:hover .gh-card-label {
  color: #F3C649 !important;
}

/* Value Flip -> Crisp White / Warm Cream */
.general-horoscope-metrics .gh-metric-card:hover .gh-card-value {
  color: #FFF9E6 !important;
}

/* Icon Badge Flip -> Gold Background with Deep Maroon Icon */
.general-horoscope-metrics .gh-metric-card:hover .gh-icon-wrapper {
  background-color: #D4AF37 !important;
  color: #6E1A08 !important;
  border-color: #F3C649 !important;
}

.rashifal-specific-layout .rashifal-metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* Iconography & Flexbox Alignment */
.rashifal-specific-layout .rashifal-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.rashifal-specific-layout .rashifal-icon-wrapper {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: #7B1113;
  border: 1px solid #540B0C;
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.rashifal-specific-layout .rashifal-metric-card:hover .rashifal-icon-wrapper {
  background: #540B0C !important;
  color: #FFFFFF !important;
  border-color: #540B0C !important;
  transform: scale(1.08);
}

/* Typography Rules */
.rashifal-specific-layout .rashifal-card-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: #7B1113;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.rashifal-specific-layout .rashifal-card-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2D0804;
  line-height: 1.35;
  padding-left: 0.25rem;
}

/* Overview Text Blockquote Styling */
.rashifal-specific-layout .rashifal-overview-container {
  margin-top: 1.5rem;
}

.rashifal-specific-layout .rashifal-overview-quote {
  background: linear-gradient(135deg, var(--rf-maroon-soft) 0%, #FFFFFF 100%);
  border-left: 5px solid var(--rf-maroon);
  border-top: 1px solid var(--rf-border-color);
  border-right: 1px solid var(--rf-border-color);
  border-bottom: 1px solid var(--rf-border-color);
  border-radius: 0 var(--rf-radius) var(--rf-radius) 0;
  padding: 1.35rem 1.6rem;
  box-shadow: var(--rf-shadow-sm);
  position: relative;
}

.rashifal-specific-layout .rashifal-overview-quote::before {
  content: '“';
  position: absolute;
  top: -12px;
  right: 20px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(212, 175, 55, 0.2);
  line-height: 1;
  pointer-events: none;
}

.rashifal-specific-layout .rashifal-overview-quote p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #382A26;
  position: relative;
  z-index: 1;
}

/* Reduced Spacing between Compact Header and Contents (20px) */
.rashifal-page .panchang-content-section,
.panchang-content-section {
  padding-top: 20px !important;
}


/* =========================================================
   RASHIFAL PREDICTIONS AND REMEDIES SCOPED REDESIGN
   Scope Container: .rashifal-predictions-layout
   Theme Palette: Maroon (#7B1113), Gold (#D4AF37), Cream (#FFFBF7)
   ========================================================= */

.rashifal-predictions-layout {
  --rp-maroon: #7B1113;
  --rp-maroon-dark: #540B0C;
  --rp-maroon-soft: #FDF4F2;
  --rp-gold: #D4AF37;
  --rp-gold-dark: #AA8722;
  --rp-gold-soft: #FFFDF2;
  --rp-border-color: #F0E2CE;
  --rp-text-dark: #2B1D19;
  --rp-text-muted: #4A3E3A;
  --rp-radius: 14px;

  margin-top: 1.75rem;
  color: var(--rp-text-dark);
}

.rashifal-predictions-layout * {
  box-sizing: border-box;
}

/* Headings inside Predictions Layout */
.rashifal-predictions-layout .rf-predictions-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rp-maroon);
  margin-top: 0;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.rashifal-predictions-layout .rf-predictions-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55px;
  height: 3px;
  background: linear-gradient(90deg, var(--rp-gold) 0%, rgba(212, 175, 55, 0.15) 100%);
  border-radius: 3px;
}

.rashifal-predictions-layout .rf-title-icon {
  color: var(--rp-gold-dark);
  font-size: 1.15rem;
}

/* 1. OVERALL PREDICTION HIGHLIGHT BOX */
.rashifal-predictions-layout .rf-overall-highlight-box {
  background: linear-gradient(135deg, #FFFDF8 0%, #FFF8ED 100%);
  border: 1px solid var(--rp-border-color);
  border-left: 5px solid var(--rp-maroon);
  border-radius: 0 var(--rp-radius) var(--rp-radius) 0;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 4px 14px rgba(123, 17, 19, 0.05);
  margin-bottom: 2rem;
}

.rashifal-predictions-layout .rf-overall-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #382B27;
  font-weight: 500;
}

/* 2. GENERAL PREDICTIONS BY ASPECT (GOLD BACKGROUND #D4AF37) */
.rashifal-predictions-layout .rf-aspects-container {
  margin-bottom: 2rem;
}

.rashifal-predictions-layout .rf-aspects-list,
.bala-card {
  display: flex;
  flex-direction: column;
  background: #D4AF37 !important;
  border: 1px solid #C59D27 !important;
  border-left: 5px solid #7B1113 !important;
  border-radius: var(--rp-radius);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25) !important;
  overflow: hidden;
}

.rashifal-predictions-layout .rf-aspect-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.1rem 1.3rem;
  border-bottom: 1px solid rgba(123, 17, 19, 0.15) !important;
  transition: background-color 0.25s ease;
}

.rashifal-predictions-layout .rf-aspect-item:last-child {
  border-bottom: none !important;
}

.rashifal-predictions-layout .rf-aspect-item:hover {
  background-color: #E2BD44 !important;
}

.rashifal-predictions-layout .rf-aspect-badge {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: var(--rp-maroon);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 3px 8px rgba(123, 17, 19, 0.25);
  margin-top: 2px;
}

.rashifal-predictions-layout .rf-aspect-badge.love-badge {
  background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
}

.rashifal-predictions-layout .rf-aspect-badge.career-badge {
  background: linear-gradient(135deg, #7B1113 0%, #540B0C 100%);
  color: #D4AF37;
}

.rashifal-predictions-layout .rf-aspect-badge.health-badge {
  background: linear-gradient(135deg, #27AE60 0%, #1E824C 100%);
}

.rashifal-predictions-layout .rf-aspect-badge.travel-badge {
  background: linear-gradient(135deg, #8E44AD 0%, #6C3483 100%);
}

.rashifal-predictions-layout .rf-aspect-content {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.rashifal-predictions-layout .rf-aspect-label {
  font-weight: 800 !important;
  color: #7B1113 !important;
  margin-right: 0.4rem;
  font-size: 0.98rem;
}

.rashifal-predictions-layout .rf-aspect-text {
  color: #2D0804 !important;
  font-weight: 500;
}

/* 3. CALLOUT BANNERS: REMEDY & FESTIVAL */
.rashifal-predictions-layout .rf-callout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .rashifal-predictions-layout .rf-callout-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rashifal-predictions-layout .rf-callout-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--rp-radius);
  box-shadow: 0 4px 14px rgba(123, 17, 19, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rashifal-predictions-layout .rf-callout-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(123, 17, 19, 0.09);
  border-color: #D4AF37 !important;
}

/* Remedy Banner (Pale Gold Tint) */
.rashifal-predictions-layout .rf-callout-card.remedy-callout {
  background: linear-gradient(135deg, #FFFDF4 0%, #FFF8E7 100%);
  border: 1px solid #F3E2C3;
  border-left: 4px solid var(--rp-gold-dark);
}

.rashifal-predictions-layout .remedy-badge-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--rp-gold);
  color: var(--rp-maroon-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

/* Festival Banner (Pale Maroon Tint) */
.rashifal-predictions-layout .rf-callout-card.festival-callout {
  background: linear-gradient(135deg, var(--rp-maroon-soft) 0%, #FFF7F5 100%);
  border: 1px solid #F5DCD9;
  border-left: 4px solid var(--rp-maroon);
}

.rashifal-predictions-layout .festival-badge-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--rp-maroon);
  color: var(--rp-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 3px 10px rgba(123, 17, 19, 0.25);
}

.rashifal-predictions-layout .rf-callout-body {
  flex: 1;
}

.rashifal-predictions-layout .rf-callout-title {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--rp-maroon);
}

.rashifal-predictions-layout .rf-callout-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--rp-text-muted);
}


/* =========================================================
   ZODIAC SELECTION GRID SCOPED REDESIGN
   Scope Container: .zodiac-grid-layout
   Theme Palette: Primary Maroon (#7B1113), Gold (#D4AF37), Cream (#FFFBF7)
   ========================================================= */

.zodiac-grid-layout {
  --zg-maroon: #7B1113;
  --zg-maroon-dark: #540B0C;
  --zg-maroon-soft: #FDF4F2;
  --zg-gold: #D4AF37;
  --zg-gold-dark: #AA8722;
  --zg-gold-soft: #FFFDF2;
  --zg-border-color: #F0E2CE;
  --zg-text-dark: #2B1D19;
  --zg-text-muted: #4A3E3A;
  --zg-radius: 16px;

  margin-top: 2.5rem;
  margin-bottom: 2rem;
}

.zodiac-grid-layout * {
  box-sizing: border-box;
}

/* Heading with Gold Star and Centered Underline Accent */
/* =========================================================
   ZODIAC SELECTION 12-CARD GRID (STRICTLY SCOPED)
   Container Scope: .zodiac-selection-grid
   Palette: Base Metallic Gold (#D4AF37), Hover Deep Maroon (#6E1A08)
   ========================================================= */

.zodiac-selection-grid {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.zodiac-selection-grid * {
  box-sizing: border-box;
}

/* Heading with Gold Star and Centered Underline Accent */
.zodiac-selection-grid .zs-section-title,
.zodiac-grid-layout .zg-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #70161E;
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.zodiac-selection-grid .zs-section-title::after,
.zodiac-grid-layout .zg-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85px;
  height: 3.5px;
  background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
  border-radius: 4px;
}

.zodiac-selection-grid .zs-star-icon,
.zodiac-grid-layout .zg-star-icon {
  color: #D4AF37;
  font-size: 1.35rem;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.4));
}

/* Responsive CSS Grid (4 Columns Desktop, 2-3 Columns Mobile/Tablet) */
.zodiac-selection-grid .zs-cards-grid,
.zodiac-grid-layout .zg-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {

  .zodiac-selection-grid .zs-cards-grid,
  .zodiac-grid-layout .zg-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {

  .zodiac-selection-grid .zs-cards-grid,
  .zodiac-grid-layout .zg-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Base Card Styling - Metallic Gold (#D4AF37) */
.zodiac-selection-grid .zs-card,
.zodiac-grid-layout .zg-card {
  background-color: #D4AF37 !important;
  background: linear-gradient(135deg, #D4AF37 0%, #C59B27 100%) !important;
  border: 1px solid #B89228 !important;
  border-top: 3px solid #70161E !important;
  border-radius: 16px !important;
  padding: 1.4rem 1.1rem !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease-in-out !important;
}

.zodiac-selection-grid .zs-card::before,
.zodiac-grid-layout .zg-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* Circular Icon Badge Base State - Deep Maroon (#5A0E14) Background & White Icon */
.zodiac-selection-grid .zs-icon-badge,
.zodiac-grid-layout .zg-icon-badge {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background-color: #5A0E14 !important;
  color: #FFFFFF !important;
  border: 1px solid #3B0509 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18) !important;
  transition: all 0.3s ease-in-out !important;
}

/* Card Body & Typography Base State */
.zodiac-selection-grid .zs-card-body,
.zodiac-grid-layout .zg-card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

/* Zodiac Name - Deep Dark Maroon (#3B0509) */
.zodiac-selection-grid .zs-name,
.zodiac-grid-layout .zg-name {
  font-size: 1.15rem;
  font-weight: 700 !important;
  color: #3B0509 !important;
  margin: 0 0 0.25rem;
  line-height: 1.25;
  transition: color 0.3s ease-in-out !important;
}

/* Date Subtitle - Muted Dark Red/Maroon (#5A0E14) */
.zodiac-selection-grid .zs-date,
.zodiac-grid-layout .zg-date {
  font-size: 0.8rem;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #5A0E14 !important;
  margin-bottom: 0.6rem;
  display: block;
  transition: color 0.3s ease-in-out !important;
}

/* Description Text - Dark Maroon/Black (#240205) */
.zodiac-selection-grid .zs-description,
.zodiac-grid-layout .zg-description {
  font-size: 0.9rem;
  color: #240205 !important;
  line-height: 1.45;
  margin: 0;
  font-weight: 500 !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease-in-out !important;
}

/* =========================================================
   HOVER STATE (:hover): DEEP MAROON (#6E1A08) & INVERTED TEXT
   ========================================================= */

.zodiac-selection-grid .zs-card:hover,
.zodiac-grid-layout .zg-card:hover {
  background-color: #6E1A08 !important;
  background: linear-gradient(135deg, #6E1A08 0%, #521205 100%) !important;
  border-color: #D4AF37 !important;
  border-top-color: #F3C649 !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 10px 22px rgba(110, 26, 8, 0.3) !important;
}

/* Zodiac Name Flip -> Bright Metallic Gold (#F3C649) */
.zodiac-selection-grid .zs-card:hover .zs-name,
.zodiac-grid-layout .zg-card:hover .zg-name {
  color: #F3C649 !important;
}

/* Date Subtitle Flip -> Soft Gold/Cream (#E2C068) */
.zodiac-selection-grid .zs-card:hover .zs-date,
.zodiac-grid-layout .zg-card:hover .zg-date {
  color: #E2C068 !important;
}

/* Description Text Flip -> Crisp Light Cream (#FFF9E6) */
.zodiac-selection-grid .zs-card:hover .zs-description,
.zodiac-grid-layout .zg-card:hover .zg-description {
  color: #FFF9E6 !important;
}

/* Icon Badge Flip -> Bright Gold Background (#D4AF37) & Deep Maroon Icon (#6E1A08) */
.zodiac-selection-grid .zs-card:hover .zs-icon-badge,
.zodiac-grid-layout .zg-card:hover .zg-icon-badge {
  background-color: #D4AF37 !important;
  color: #6E1A08 !important;
  border-color: #F3C649 !important;
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25) !important;
}

/* Active State Card */
.zodiac-selection-grid .zs-card.zs-active,
.zodiac-grid-layout .zg-card.zg-active {
  border-color: #D4AF37 !important;
  border-top-color: #F3C649 !important;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4) !important;
}


/* =========================================================
   GENERAL PREDICTIONS BY ASPECT 2x2 GRID REDESIGN
   Scope Container: .aspect-predictions-container
   Theme Palette: Primary Maroon (#7B1113), Gold (#D4AF37), Cream (#FFFBF7)
   ========================================================= */

.aspect-predictions-container {
  --ap-maroon: #7B1113;
  --ap-maroon-dark: #540B0C;
  --ap-maroon-soft: #FDF4F2;
  --ap-gold: #D4AF37;
  --ap-gold-dark: #AA8722;
  --ap-border-color: #F0E2CE;
  --ap-text-dark: #2B1D19;
  --ap-text-muted: #4A3E3A;
  --ap-radius: 14px;

  margin-top: 2rem;
  margin-bottom: 2rem;
}

.aspect-predictions-container * {
  box-sizing: border-box;
}

/* Section Heading */
.aspect-predictions-container .ap-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ap-maroon);
  margin-top: 0;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.aspect-predictions-container .ap-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55px;
  height: 3px;
  background: linear-gradient(90deg, var(--ap-gold) 0%, rgba(212, 175, 55, 0.15) 100%);
  border-radius: 3px;
}

.aspect-predictions-container .ap-star-icon {
  color: var(--ap-gold-dark);
  font-size: 1.15rem;
}

/* Responsive 2x2 Grid Layout */
.aspect-predictions-container .ap-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .aspect-predictions-container .ap-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Individual Aspect Card Styling - Metallic Gold #D4AF37 Background */
.aspect-predictions-container .ap-card {
  background: #D4AF37 !important;
  background: linear-gradient(135deg, #D4AF37 0%, #C59B27 100%) !important;
  border: 1px solid #70161E !important;
  border-left: 5px solid #5A0E14 !important;
  border-radius: var(--ap-radius);
  padding: 1.25rem 1.3rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.aspect-predictions-container .ap-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #E6C247 0%, #D4AF37 100%) !important;
  border-color: #5A0E14 !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2) !important;
}

.aspect-predictions-container .ap-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* Header: Icon, Title, Rating Badge Alignment */
.aspect-predictions-container .ap-card-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed rgba(90, 14, 20, 0.35) !important;
}

/* Deep Maroon Icon Badges for High Visibility */
.aspect-predictions-container .ap-icon-badge {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #5A0E14 !important;
  color: #FFFFFF !important;
  border: 1px solid #3B0509 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Title Box & Stars */
.aspect-predictions-container .ap-title-box {
  flex: 1;
}

.aspect-predictions-container .ap-aspect-title {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  font-weight: 800 !important;
  color: #4A080E !important;
  line-height: 1.25;
}

.aspect-predictions-container .ap-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.75rem;
}

.aspect-predictions-container .ap-stars i.filled,
.aspect-predictions-container .ap-stars i.fa-star,
.aspect-predictions-container .ap-stars i.fa-star-half-stroke {
  color: #4A080E !important;
}

.aspect-predictions-container .ap-stars i.empty,
.aspect-predictions-container .ap-stars i.fa-regular {
  color: rgba(74, 8, 14, 0.35) !important;
}

/* Percentage Pill Badges (Solid White Background for Pop) */
.aspect-predictions-container .ap-rating-badge {
  background-color: #FFFFFF !important;
  color: #5A0E14 !important;
  border: 1px solid #70161E !important;
  font-weight: 800 !important;
  font-size: 0.82rem;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

/* High Contrast Dark Maroon Body Description Text */
.aspect-predictions-container .ap-card-text {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.6;
  color: #2D0407 !important;
  font-weight: 600;
  flex: 1;
  transition: color 0.3s ease-in-out;
}

/* Base Transitions for Child Elements */
.aspect-predictions-container .ap-aspect-title,
.aspect-predictions-container .ap-rating-badge,
.aspect-predictions-container .ap-icon-badge,
.aspect-predictions-container .ap-card-header,
.aspect-predictions-container .ap-stars i {
  transition: all 0.3s ease-in-out !important;
}

/* =========================================================
   HOVER STATE: DEEP MAROON (#6E1A08) BACKGROUND & INVERTED TEXT
   ========================================================= */

.aspect-predictions-container .ap-card:hover {
  transform: translateY(-5px) !important;
  background: #6E1A08 !important;
  background: linear-gradient(135deg, #6E1A08 0%, #521205 100%) !important;
  border-color: #D4AF37 !important;
  border-left-color: #F3C649 !important;
  box-shadow: 0 8px 20px rgba(110, 26, 8, 0.35) !important;
}

.aspect-predictions-container .ap-card:hover .ap-card-header {
  border-bottom-color: rgba(243, 198, 73, 0.35) !important;
}

/* Aspect Titles -> Bright Metallic Gold */
.aspect-predictions-container .ap-card:hover .ap-aspect-title {
  color: #F3C649 !important;
}

/* Description Text -> Warm Cream/White */
.aspect-predictions-container .ap-card:hover .ap-card-text {
  color: #FFF9E6 !important;
  font-weight: 500 !important;
}

/* Star Ratings -> Gold Stars */
.aspect-predictions-container .ap-card:hover .ap-stars i.filled,
.aspect-predictions-container .ap-card:hover .ap-stars i.fa-star,
.aspect-predictions-container .ap-card:hover .ap-stars i.fa-star-half-stroke {
  color: #F3C649 !important;
}

.aspect-predictions-container .ap-card:hover .ap-stars i.empty,
.aspect-predictions-container .ap-card:hover .ap-stars i.fa-regular {
  color: rgba(243, 198, 73, 0.35) !important;
}

/* Percentage Pill Badges -> Solid Metallic Gold Background */
.aspect-predictions-container .ap-card:hover .ap-rating-badge {
  background-color: #D4AF37 !important;
  color: #3B0509 !important;
  border-color: #F3C649 !important;
  font-weight: 800 !important;
}

/* Circular Icon Badges -> Gold Background with Maroon Icon */
.aspect-predictions-container .ap-card:hover .ap-icon-badge {
  background-color: #D4AF37 !important;
  color: #6E1A08 !important;
  border-color: #F3C649 !important;
}


/* =========================================================
   DAILY INSIGHTS & REMEDIES HIGHLIGHT BANNERS (SCOPED)
   Scope Container: .daily-highlights-section
   Theme Palette: Primary Maroon (#7B1113), Gold (#D4AF37), Cream (#FFFBF7)
   ========================================================= */

.daily-highlights-section {
  --dh-maroon: #7B1113;
  --dh-maroon-dark: #540B0C;
  --dh-maroon-soft: #FDF4F2;
  --dh-gold: #D4AF37;
  --dh-gold-dark: #AA8722;
  --dh-border-color: #F0E2CE;
  --dh-text-dark: #2B1D19;
  --dh-text-muted: #4A3E3A;
  --dh-radius: 14px;

  margin-top: 2.5rem;
  margin-bottom: 2rem;
}

.daily-highlights-section * {
  box-sizing: border-box;
}

/* Section Title */
.daily-highlights-section .dh-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dh-maroon);
  margin-top: 0;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.daily-highlights-section .dh-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55px;
  height: 3px;
  background: linear-gradient(90deg, var(--dh-gold) 0%, rgba(212, 175, 55, 0.15) 100%);
  border-radius: 3px;
}

.daily-highlights-section .dh-star-icon {
  color: var(--dh-gold-dark);
  font-size: 1.15rem;
}

/* Banners Grid Container */
.daily-highlights-section .dh-banners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .daily-highlights-section .dh-banners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Base Banner Card */
.daily-highlights-section .dh-banner-card {
  border-radius: var(--dh-radius);
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(123, 17, 19, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.daily-highlights-section .dh-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(123, 17, 19, 0.1);
}

/* Tag Badges at Top */
.daily-highlights-section .dh-category-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: inline-block;
}

.daily-highlights-section .remedy-tag {
  color: var(--dh-maroon);
}

.daily-highlights-section .festival-tag {
  color: var(--dh-maroon-dark);
}

/* Header Alignment */
.daily-highlights-section .dh-banner-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.75rem;
}

/* Large Circular Icon Badges */
.daily-highlights-section .dh-icon-badge {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(123, 17, 19, 0.12);
}

.daily-highlights-section .remedy-badge {
  background: linear-gradient(135deg, var(--dh-gold) 0%, var(--dh-gold-dark) 100%);
  color: var(--dh-maroon-dark);
}

.daily-highlights-section .festival-badge {
  background: linear-gradient(135deg, var(--dh-maroon) 0%, var(--dh-maroon-dark) 100%);
  color: var(--dh-gold);
}

/* Banner Title & Text */
.daily-highlights-section .dh-banner-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dh-maroon);
  line-height: 1.3;
}

.daily-highlights-section .dh-banner-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dh-text-muted);
}

/* Card 1 Specific: Today's General Remedy (Warm Gold Tint) */
.daily-highlights-section .remedy-banner {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFF3D1 100%);
  border: 1.5px solid #F3E0BA;
  border-left: 5px solid var(--dh-gold-dark);
}

/* Card 2 Specific: Today's Festival / Occasion (Soft Maroon Tint) */
.daily-highlights-section .festival-banner {
  background: linear-gradient(135deg, #FFF5F5 0%, #FDEBEB 100%);
  border: 1.5px solid #F5D3CF;
  border-left: 5px solid var(--dh-maroon);
}

/* Base Transitions for Sub-elements */
.daily-highlights-section .dh-banner-card {
  transition: all 0.3s ease-in-out !important;
}

.daily-highlights-section .dh-category-tag,
.daily-highlights-section .dh-banner-title,
.daily-highlights-section .dh-banner-text,
.daily-highlights-section .dh-banner-text strong,
.daily-highlights-section .dh-icon-badge {
  transition: all 0.3s ease-in-out !important;
}

/* =========================================================
   HOVER STATE (:hover): DEEP MAROON (#6E1A08) & CONTRAST FLIP
   ========================================================= */

.daily-highlights-section .dh-banner-card:hover {
  background-color: #6E1A08 !important;
  background: linear-gradient(135deg, #6E1A08 0%, #521205 100%) !important;
  border-color: #D4AF37 !important;
  border-left-color: #F3C649 !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 20px rgba(110, 26, 8, 0.25) !important;
}

/* Category Tags -> Bright Metallic Gold (#F3C649) */
.daily-highlights-section .dh-banner-card:hover .dh-category-tag {
  color: #F3C649 !important;
  font-weight: 700 !important;
}

/* Card Titles -> Bright Gold (#F3C649) */
.daily-highlights-section .dh-banner-card:hover .dh-banner-title {
  color: #F3C649 !important;
}

/* Description Text -> Crisp Light Cream (#FFF9E6) */
.daily-highlights-section .dh-banner-card:hover .dh-banner-text {
  color: #FFF9E6 !important;
}

/* Bold Highlight Text -> Pure White (#FFFFFF) */
.daily-highlights-section .dh-banner-card:hover .dh-banner-text strong {
  color: #FFFFFF !important;
  font-weight: bold !important;
}

/* Icon Badges -> Metallic Gold Background (#D4AF37) & Deep Maroon Icon (#6E1A08) */
.daily-highlights-section .dh-banner-card:hover .dh-icon-badge {
  background-color: #D4AF37 !important;
  background: linear-gradient(135deg, #D4AF37 0%, #C59B27 100%) !important;
  color: #6E1A08 !important;
  border-color: #F3C649 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
}


/* =========================================================
   INSIGHTS & RELATED ARTICLES SECTION (SCOPED)
   Scope Container: .insights-articles-section
   Theme Palette: Primary Maroon (#70161E), Gold (#C59B27), Cream (#FFFBF7)
   ========================================================= */

.insights-articles-section {
  --ias-maroon: #70161E;
  --ias-maroon-dark: #4A0B10;
  --ias-gold: #C59B27;
  --ias-gold-light: #D4AF37;
  --ias-border-color: rgba(212, 175, 55, 0.3);
  --ias-text-muted: #777777;
  --ias-text-dark: #2B1D19;
  --ias-radius: 16px;

  margin-top: 2.5rem;
  margin-bottom: 2rem;
}

.insights-articles-section * {
  box-sizing: border-box;
}

/* Header & Eyebrow Styling */
.insights-articles-section .ias-header {
  margin-bottom: 2rem;
  text-align: left;
}

.insights-articles-section .ias-eyebrow {
  display: block;
  font-style: italic;
  color: var(--ias-gold);
  letter-spacing: 0.5px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.insights-articles-section .ias-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ias-maroon);
  margin: 0;
  position: relative;
  padding-bottom: 0.6rem;
  display: inline-block;
}

.insights-articles-section .ias-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--ias-gold) 0%, rgba(212, 175, 55, 0.15) 100%);
  border-radius: 3px;
}

/* 3-Column Grid Layout */
.insights-articles-section .ias-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .insights-articles-section .ias-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .insights-articles-section .ias-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card UI & Framed Gold Border Accent */
.insights-articles-section .ias-card {
  background: #FFFFFF;
  border: 1px solid var(--ias-border-color);
  border-radius: var(--ias-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.insights-articles-section .ias-card:hover {
  transform: translateY(-6px);
  border-color: var(--ias-gold-light) !important;
  box-shadow: 0 14px 32px rgba(112, 22, 30, 0.12), 0 6px 16px rgba(212, 175, 55, 0.2) !important;
}

/* Image Container & Smooth Zoom */
.insights-articles-section .ias-image-box {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
  position: relative;
  background: linear-gradient(135deg, #70161E 0%, #3B0B03 100%);
}

.insights-articles-section .ias-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.insights-articles-section .ias-card:hover .ias-img {
  transform: scale(1.06);
}

/* Category Badge on Image */
.insights-articles-section .ias-category-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(112, 22, 30, 0.85);
  backdrop-filter: blur(4px);
  color: var(--ias-gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  letter-spacing: 0.4px;
}

/* Card Body & Typography */
.insights-articles-section .ias-card-body {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.insights-articles-section .ias-date-bar {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ias-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.4rem;
}

.insights-articles-section .ias-date-bar i {
  color: var(--ias-gold);
  font-size: 0.85rem;
}

.insights-articles-section .ias-card-title {
  margin: 0.3rem 0 1rem;
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 700;
}

.insights-articles-section .ias-card-title a {
  color: var(--ias-maroon);
  text-decoration: none;
  transition: color 0.25s ease;
}

.insights-articles-section .ias-card-title a:hover {
  color: var(--ias-gold);
}

/* Read More Button with Sliding Arrow */
.insights-articles-section .ias-read-more {
  color: var(--ias-gold);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
}

.insights-articles-section .ias-arrow {
  transition: transform 0.3s ease;
  font-size: 0.85rem;
}

.insights-articles-section .ias-card:hover .ias-read-more,
.insights-articles-section .ias-read-more:hover {
  color: var(--ias-maroon);
}

.insights-articles-section .ias-card:hover .ias-arrow,
.insights-articles-section .ias-read-more:hover .ias-arrow {
  transform: translateX(5px);
}
/* ═══════════════════════════════════════════════════════════════════
   EXTENDED PANCHANG — NEW SECTION STYLES
   Added for: Planetary Table, Choghadiya, Hora, Additional Timings,
   Nivas/Shool, Chandra Bala, Tara Bala
   ═══════════════════════════════════════════════════════════════════ */

/* ── Timing Group Header ───────────────────────────────────────── */
.timing-group-header {
  border-bottom: 2px solid #f0e6c8;
  padding-bottom: 8px;
}
.timing-group-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
.timing-group-badge.badge-shubh {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.timing-group-badge.badge-ashubh {
  background: linear-gradient(135deg, #ffebee, #ffcdd2);
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* ── Planetary Positions Table ─────────────────────────────────── */
.panchang-planet-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.87rem;
}
.panchang-planet-table thead .planet-table-header th {
  background: linear-gradient(135deg, var(--maroon-main, #7b1113), #9a1515);
  color: #f5c842;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 12px 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  white-space: nowrap;
}
.panchang-planet-table thead .planet-table-header th:first-child {
  border-radius: 14px 0 0 0;
}
.panchang-planet-table thead .planet-table-header th:last-child {
  border-radius: 0 14px 0 0;
}
.panchang-planet-table tbody .planet-table-row td {
  padding: 11px 16px;
  border-bottom: 1px solid #f0e6c8;
  vertical-align: middle;
  color: #3a2a2a;
  font-size: 0.86rem;
}
.panchang-planet-table tbody .planet-table-row:last-child td {
  border-bottom: none;
}
.panchang-planet-table tbody .planet-table-row:hover td {
  background: #fdf7ec;
}
.planet-name {
  color: #5a1a1a;
  font-size: 0.9rem;
}
.badge-avastha {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 10px;
  background: #f5f0e8;
  color: #7b5c2e;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ── Choghadiya Grid ───────────────────────────────────────────── */
.choghadiya-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.choghadiya-item {
  position: relative;
  border-radius: 12px;
  padding: 14px 12px 12px;
  text-align: center;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.choghadiya-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.choghadiya-item.chog-current {
  border-width: 2px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}
.chog-live-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #2e7d32;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.chog-name {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}
.chog-type {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  opacity: 0.75;
}
.chog-time {
  font-size: 0.72rem;
  opacity: 0.8;
  margin-top: 2px;
}

/* Choghadiya colour themes */
.chog-amrit  { background: linear-gradient(135deg,#e8f5e9,#c8e6c9); color:#1b5e20; border-color:#a5d6a7; }
.chog-shubh  { background: linear-gradient(135deg,#e3f2fd,#bbdefb); color:#0d47a1; border-color:#90caf9; }
.chog-labh   { background: linear-gradient(135deg,#fff8e1,#fff3cd); color:#6d4c41; border-color:#ffe082; }
.chog-char   { background: linear-gradient(135deg,#f3e5f5,#e1bee7); color:#4a148c; border-color:#ce93d8; }
.chog-rog    { background: linear-gradient(135deg,#ffebee,#ffcdd2); color:#b71c1c; border-color:#ef9a9a; }
.chog-kaal   { background: linear-gradient(135deg,#212121,#3a3a3a); color:#e0e0e0; border-color:#616161; }
.chog-kaal .chog-type { color: #bdbdbd; }
.chog-udveg  { background: linear-gradient(135deg,#fff3e0,#ffe0b2); color:#e65100; border-color:#ffcc80; }
.chog-default{ background: linear-gradient(135deg,#fafafa,#f5f0e8); color:#5a4a3a; border-color:#e0d0b0; }

/* ── Hora Grid ─────────────────────────────────────────────────── */
.hora-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}
.hora-item {
  position: relative;
  border-radius: 12px;
  padding: 13px 10px 11px;
  text-align: center;
  border: 2px solid transparent;
  background: #fafaf8;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.hora-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(0,0,0,0.09);
}
.hora-item.hora-current {
  border-width: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  transform: translateY(-3px);
}
.hora-live-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #0d47a1;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.hora-planet {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--maroon-main, #7b1113);
}
.hora-time {
  font-size: 0.7rem;
  color: #6a6a6a;
  margin-top: 2px;
}
.hora-nature {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 600;
  opacity: 0.7;
  margin-top: 2px;
}
.hora-auspicious  { background: linear-gradient(135deg,#e8f5e9,#c8e6c9); border-color:#a5d6a7; }
.hora-auspicious .hora-planet { color: #1b5e20; }
.hora-inauspicious{ background: linear-gradient(135deg,#ffebee,#ffcdd2); border-color:#ef9a9a; }
.hora-inauspicious .hora-planet { color: #b71c1c; }
.hora-neutral     { background: linear-gradient(135deg,#fdf7ec,#f5ead0); border-color:#e0d0a8; }

/* ── Responsive adjustments ────────────────────────────────────── */
@media (max-width: 575px) {
  .choghadiya-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
  }
  .hora-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
  }
  .chog-name { font-size: 0.85rem; }
  .hora-planet { font-size: 0.82rem; }
  .panchang-planet-table tbody .planet-table-row td {
    padding: 8px 10px;
    font-size: 0.82rem;
  }
}


/* ═══════════════════════════════════════════════════════════
   AVASTHA BADGES & MUHURTA DETAILS STYLES
   ═══════════════════════════════════════════════════════════ */
.badge-avastha {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50rem;
    text-transform: capitalize;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.badge-avastha-bala {
    background-color: #e0f2fe;
    color: #0369a1;
    border: 1px solid #bae6fd;
}
.badge-avastha-kumara {
    background-color: #f3e8ff;
    color: #6b21a8;
    border: 1px solid #e9d5ff;
}
.badge-avastha-yuva {
    background-color: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}
.badge-avastha-vridha {
    background-color: #fef3c7;
    color: #b45309;
    border: 1px solid #fde68a;
}
.badge-avastha-mrit {
    background-color: #ffe4e6;
    color: #be123c;
    border: 1px solid #fecdd3;
}

.bg-gold-subtle {
    background-color: #fffbeb !important;
}

.muhurta-detail-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-top: 3px solid #800000 !important;
}
.muhurta-detail-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.08) !important;
}
