/* Sanatan Bliss — festivals.css */
/* Page-specific styles, loaded via @push('styles') */

/* ── from sanatanbliss_festivals ── */
html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); background: var(--cream); color: var(--stone); overflow-x: hidden; }

    /* TOPBAR */
    .topbar { background: var(--maroon); color: rgba(255,255,255,0.85); font-size: 0.72rem; letter-spacing: 0.07em; padding: 7px 40px; display: flex; justify-content: space-between; align-items: center; }
    .topbar-right { display: flex; align-items: center; gap: 20px; }
    .topbar-right a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
    .topbar-right a:hover { color: var(--gold-light); }
    .lang-toggle { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 2px 10px; font-size: 0.68rem; cursor: pointer; color: white; }

    /* NAVBAR */
    nav { position: sticky; top: 0; z-index: 100; background: rgba(250,246,238,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--cream-dark); padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 68px; box-shadow: 0 2px 20px rgba(107,30,15,0.06); }
    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .nav-logo-om { width: 38px; height: 38px; background: var(--maroon); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--gold-light); font-family: var(--font-hindi); }
    .nav-logo-text .brand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--maroon); display: block; }
    .nav-logo-text .tagline { font-size: 0.62rem; color: var(--stone-light); letter-spacing: 0.12em; text-transform: uppercase; display: block; }
    .nav-links { display: flex; align-items: center; gap: 4px; }
    .nav-links a { font-size: 0.82rem; font-weight: 500; color: var(--stone); text-decoration: none; padding: 6px 12px; border-radius: 6px; transition: all 0.2s; }
    .nav-links a:hover, .nav-links a.active { color: var(--maroon); background: var(--saffron-pale); }
    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .nav-icon-btn { width: 36px; height: 36px; border: none; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; border-radius: 8px; color: var(--stone-mid); transition: all 0.2s; font-size: 1rem; }
    .nav-icon-btn:hover { background: var(--saffron-pale); color: var(--maroon); }
    .nav-shop-btn { background: var(--maroon); color: white; border: none; border-radius: 8px; padding: 8px 18px; font-size: 0.8rem; font-family: var(--font-body); font-weight: 500; cursor: pointer; transition: all 0.25s; text-decoration: none; display: flex; align-items: center; gap: 6px; }
    .nav-shop-btn:hover { background: var(--maroon-mid); transform: translateY(-1px); }

    /* PAGE HERO */
    .page-hero { min-height: 50vh; position: relative; display: grid; place-items: center; overflow: hidden; }
    .page-hero-bg { position: absolute; inset: 0; background: linear-gradient(160deg, var(--maroon) 0%, #3D0A0A 40%, #1A0A0A 100%); }
    .hero-ring { position: absolute; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); border: 1px solid rgba(255,255,255,0.05); animation: spin 80s linear infinite; }
    .ring-1 { width: 560px; height: 560px; }
    .ring-2 { width: 400px; height: 400px; border-style: dashed; border-color: rgba(212,160,23,0.12); animation-direction: reverse; animation-duration: 55s; }
    @keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

    /* Floating festival lights */
    .diya-float { position: absolute; font-size: 1.4rem; animation: diayFloat linear infinite; opacity: 0; }
    @keyframes diayFloat {
      0% { transform: translateY(100vh) scale(0.7); opacity: 0; }
      10% { opacity: 0.8; }
      90% { opacity: 0.5; }
      100% { transform: translateY(-80px) scale(1.1); opacity: 0; }
    }

    .page-hero-content { position: relative; z-index: 2; text-align: center; padding: 56px 24px; max-width: 720px; animation: fadeUp 1s ease both; }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
    .page-hero-kicker { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; display: block; margin-bottom: 12px; }
    .page-hero-title { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 300; color: white; line-height: 1.1; }
    .page-hero-title em { font-style: italic; color: var(--saffron-light); }
    .page-hero-divider { width: 48px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 18px auto; }
    .page-hero-sub { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 28px; }
    .hero-year-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,160,23,0.2); border: 1px solid rgba(212,160,23,0.35); border-radius: 50px; padding: 8px 20px; font-size: 0.82rem; color: var(--gold-light); font-weight: 500; }

    /* BREADCRUMB */
    .breadcrumb { background: var(--cream-dark); padding: 11px 40px; display: flex; align-items: center; gap: 8px; font-size: 0.74rem; color: var(--stone-mid); }
    .breadcrumb a { color: var(--saffron); text-decoration: none; }
    .breadcrumb a:hover { text-decoration: underline; }

    /* PANCHANG TODAY STRIP */
    .panchang-strip { background: linear-gradient(135deg, var(--saffron-pale), var(--cream)); border-bottom: 1px solid rgba(194,96,10,0.15); padding: 20px 40px; }
    .panchang-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
    .panchang-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--maroon); white-space: nowrap; }
    .panchang-items { display: flex; gap: 24px; flex-wrap: wrap; flex: 1; }
    .panchang-item { display: flex; flex-direction: column; }
    .panchang-label { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone-light); font-weight: 600; }
    .panchang-value { font-size: 0.88rem; font-weight: 600; color: var(--maroon); margin-top: 2px; }
    .panchang-btn { margin-left: auto; background: var(--maroon); color: white; border: none; padding: 9px 20px; border-radius: 20px; font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: all 0.2s; text-decoration: none; display: inline-block; }
    .panchang-btn:hover { background: var(--maroon-mid); }

    /* SHARED */
    .section-kicker { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--saffron); font-weight: 600; margin-bottom: 8px; display: block; }
    
    

    /* MONTH FILTER */
    .month-filter { background: white; border-bottom: 1px solid var(--cream-dark); padding: 0 40px; overflow-x: auto; scrollbar-width: none; display: flex; }
    .month-filter::-webkit-scrollbar { display: none; }
    .month-btn { padding: 15px 18px; font-size: 0.78rem; font-weight: 500; color: var(--stone-mid); border: none; background: transparent; cursor: pointer; white-space: nowrap; border-bottom: 2.5px solid transparent; transition: all 0.2s; font-family: var(--font-body); letter-spacing: 0.02em; display: flex; flex-direction: column; align-items: center; gap: 2px; }
    .month-btn span.m-name { font-weight: 600; }
    .month-btn span.m-count { font-size: 0.62rem; color: var(--stone-light); }
    .month-btn:hover { color: var(--maroon); }
    .month-btn.active { color: var(--maroon); border-bottom-color: var(--saffron); }
    .month-btn.active span.m-count { color: var(--saffron); }

    /* MAIN LAYOUT */
    .festivals-layout { max-width: 1200px; margin: 0 auto; padding: 48px 40px 80px; display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }

    /* UPCOMING HIGHLIGHT */
    .upcoming-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--saffron); font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
    .upcoming-label::after { content: ''; flex: 1; height: 1px; background: var(--cream-dark); }

    .upcoming-card { background: var(--maroon); border-radius: 24px; overflow: hidden; margin-bottom: 40px; display: grid; grid-template-columns: 1fr 1fr; }
    .upcoming-visual { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
    .upcoming-countdown { display: flex; gap: 12px; margin-bottom: 24px; }
    .count-box { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 10px 14px; text-align: center; min-width: 58px; }
    .count-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: white; display: block; line-height: 1; }
    .count-label { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); display: block; margin-top: 3px; }
    .upcoming-name { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: white; line-height: 1.15; margin-bottom: 6px; }
    .upcoming-name-hi { font-family: var(--font-hindi); font-size: 1.1rem; color: rgba(255,255,255,0.65); display: block; margin-bottom: 14px; }
    .upcoming-date { display: flex; align-items: center; gap: 8px; color: var(--gold-light); font-size: 0.85rem; font-weight: 500; margin-bottom: 20px; }
    .upcoming-desc { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 20px; }
    .upcoming-actions { display: flex; gap: 10px; flex-wrap: wrap; }
    .btn-gold { background: var(--gold); color: var(--stone); border: none; padding: 10px 20px; border-radius: 20px; font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: all 0.2s; }
    .btn-gold:hover { background: var(--saffron-light); }
    .btn-ghost { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); padding: 10px 20px; border-radius: 20px; font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: all 0.2s; }
    .btn-ghost:hover { background: rgba(255,255,255,0.18); }
    .upcoming-img { display: flex; align-items: center; justify-content: center; font-size: 8rem; background: rgba(0,0,0,0.15); position: relative; overflow: hidden; }
    .upcoming-img-tag { position: absolute; top: 16px; right: 16px; background: var(--gold); color: var(--stone); font-size: 0.62rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; letter-spacing: 0.08em; text-transform: uppercase; }

    /* FESTIVAL TYPE FILTER */
    .type-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
    .type-btn { padding: 6px 16px; border-radius: 20px; border: 1.5px solid var(--cream-dark); background: white; font-family: var(--font-body); font-size: 0.77rem; color: var(--stone-mid); cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 5px; }
    .type-btn:hover { border-color: var(--saffron); color: var(--saffron); }
    .type-btn.active { background: var(--maroon); border-color: var(--maroon); color: white; }

    /* FESTIVAL LIST */
    .festivals-list { display: flex; flex-direction: column; gap: 0; }
    .month-group { margin-bottom: 36px; }
    .month-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
    .month-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--maroon); }
    .month-name-hi { font-family: var(--font-hindi); font-size: 0.9rem; color: var(--stone-mid); }
    .month-line { flex: 1; height: 1px; background: var(--cream-dark); }
    .month-count { font-size: 0.7rem; color: var(--stone-light); background: var(--cream-dark); padding: 2px 10px; border-radius: 20px; }

    .festival-item { display: flex; gap: 0; background: white; border: 1px solid var(--cream-dark); border-radius: 16px; overflow: hidden; margin-bottom: 10px; text-decoration: none; color: var(--stone); transition: all 0.3s; position: relative; }
    .festival-item:hover { transform: translateX(4px); box-shadow: 0 8px 28px rgba(107,30,15,0.1); border-color: rgba(194,96,10,0.25); }
    .festival-item.major { border-left: 4px solid var(--saffron); }
    .festival-item.vrat { border-left: 4px solid var(--green); }
    .festival-item.ekadashi { border-left: 4px solid #7C3AED; }
    .festival-item.pradosh { border-left: 4px solid var(--gold); }

    .fest-date-col { width: 90px; flex-shrink: 0; padding: 16px 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--cream); border-right: 1px solid var(--cream-dark); }
    .fest-day-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--maroon); line-height: 1; }
    .fest-day-name { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone-light); margin-top: 3px; }
    .fest-month-short { font-size: 0.7rem; color: var(--stone-mid); font-weight: 600; margin-top: 2px; }

    .fest-body { flex: 1; padding: 14px 18px; display: flex; align-items: center; gap: 14px; }
    .fest-emoji { font-size: 1.8rem; flex-shrink: 0; }
    .fest-info { flex: 1; }
    .fest-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--maroon); line-height: 1.2; margin-bottom: 2px; }
    .fest-name-hi { font-family: var(--font-hindi); font-size: 0.82rem; color: var(--stone-mid); display: block; margin-bottom: 5px; }
    .fest-tags { display: flex; gap: 6px; flex-wrap: wrap; }
    .fest-tag { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 2px 8px; border-radius: 20px; }
    .ft-major { background: var(--saffron-pale); color: var(--saffron); }
    .ft-vrat { background: var(--green-light); color: var(--green); }
    .ft-ekadashi { background: #EDE9FE; color: #5B21B6; }
    .ft-pradosh { background: var(--gold-light); color: #8B5E00; }
    .ft-amavasya { background: #F1F5F9; color: #475569; }
    .ft-purnima { background: #E0F2FE; color: #0369A1; }

    .fest-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; padding: 14px 16px 14px 0; flex-shrink: 0; }
    .fest-tithi { font-size: 0.72rem; color: var(--stone-light); text-align: right; }
    .fest-arrow { color: var(--saffron); font-size: 1rem; }
    .fest-today-badge { background: var(--saffron); color: white; font-size: 0.6rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.06em; }

    /* VRAT FASTING GUIDE */
    .vrat-guide { background: linear-gradient(135deg, var(--green), #0F3D24); border-radius: 20px; padding: 28px; margin-top: 32px; }
    .vrat-guide-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: white; margin-bottom: 6px; }
    .vrat-guide-desc { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 18px; }
    .vrat-types { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .vrat-type { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 12px 14px; text-decoration: none; color: white; transition: all 0.2s; }
    .vrat-type:hover { background: rgba(255,255,255,0.15); }
    .vrat-type-icon { font-size: 1.3rem; display: block; margin-bottom: 5px; }
    .vrat-type-name { font-size: 0.84rem; font-weight: 600; display: block; }
    .vrat-type-count { font-size: 0.7rem; color: rgba(255,255,255,0.55); }

    /* SIDEBAR */
    .sidebar { display: flex; flex-direction: column; gap: 22px; }
    .sidebar-card { background: white; border-radius: 20px; border: 1px solid var(--cream-dark); padding: 22px; }
    .sidebar-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--maroon); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--cream-dark); }

    /* MINI CALENDAR */
    .mini-cal { }
    .mini-cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
    .mini-cal-month { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--maroon); }
    .cal-nav-btn { width: 28px; height: 28px; border: none; background: var(--cream-dark); border-radius: 8px; cursor: pointer; font-size: 0.9rem; transition: all 0.2s; }
    .cal-nav-btn:hover { background: var(--saffron-pale); }
    .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
    .cal-day-header { font-size: 0.62rem; letter-spacing: 0.06em; text-align: center; color: var(--stone-light); font-weight: 600; padding: 4px 0; text-transform: uppercase; }
    .cal-day { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; border-radius: 8px; cursor: pointer; transition: all 0.2s; color: var(--stone-mid); position: relative; }
    .cal-day:hover { background: var(--saffron-pale); color: var(--maroon); }
    .cal-day.today { background: var(--maroon); color: white; font-weight: 700; }
    .cal-day.festival { color: var(--saffron); font-weight: 700; }
    .cal-day.festival::after { content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; background: var(--saffron); border-radius: 50%; }
    .cal-day.vrat-day { color: var(--green); font-weight: 600; }
    .cal-day.vrat-day::after { content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; background: var(--green); border-radius: 50%; }
    .cal-day.empty { cursor: default; }
    .cal-legend { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
    .cal-legend-item { display: flex; align-items: center; gap: 5px; font-size: 0.68rem; color: var(--stone-mid); }
    .cal-legend-dot { width: 7px; height: 7px; border-radius: 50%; }

    /* UPCOMING LIST SIDEBAR */
    .upcoming-list { display: flex; flex-direction: column; gap: 12px; }
    .upcoming-item { display: flex; gap: 12px; align-items: center; text-decoration: none; color: var(--stone); padding: 10px 12px; border-radius: 12px; transition: all 0.2s; border: 1px solid transparent; }
    .upcoming-item:hover { background: var(--saffron-pale); border-color: rgba(194,96,10,0.15); }
    .upcoming-item-date { width: 44px; height: 44px; border-radius: 12px; background: var(--saffron-pale); display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
    .uid-num { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--maroon); line-height: 1; }
    .uid-mon { font-size: 0.6rem; color: var(--stone-mid); font-weight: 600; text-transform: uppercase; }
    .upcoming-item-name { font-size: 0.85rem; font-weight: 600; color: var(--maroon); line-height: 1.3; }
    .upcoming-item-tag { font-size: 0.68rem; color: var(--stone-light); margin-top: 2px; }

    /* REMINDER CARD */
    .reminder-card { background: var(--maroon); border-radius: 20px; padding: 22px; text-align: center; }
    .reminder-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
    .reminder-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: white; margin-bottom: 8px; }
    .reminder-desc { font-size: 0.78rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 16px; }
    .reminder-input { width: 100%; padding: 10px 14px; border-radius: 8px; border: none; font-family: var(--font-body); font-size: 0.84rem; margin-bottom: 8px; outline: none; }
    .reminder-btn { width: 100%; padding: 10px; background: var(--gold); color: var(--stone); border: none; border-radius: 8px; font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; cursor: pointer; transition: background 0.2s; }
    .reminder-btn:hover { background: var(--saffron-light); }

    /* QUICK LINKS */
    .quick-links { display: flex; flex-direction: column; gap: 8px; }
    .quick-link { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; text-decoration: none; color: var(--stone); transition: all 0.2s; font-size: 0.84rem; font-weight: 500; }
    .quick-link:hover { background: var(--saffron-pale); color: var(--maroon); }
    .quick-link-icon { font-size: 1.1rem; }
    .quick-link-arrow { margin-left: auto; color: var(--saffron); font-size: 0.9rem; }

    /* DOWNLOAD STRIP */
    .download-strip { background: linear-gradient(135deg, var(--saffron-pale), var(--cream)); border: 1px solid rgba(194,96,10,0.2); border-radius: 20px; padding: 24px; display: flex; align-items: center; gap: 20px; margin-top: 32px; }
    .download-icon { font-size: 2.5rem; flex-shrink: 0; }
    .download-text { flex: 1; }
    .download-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--maroon); margin-bottom: 4px; }
    .download-desc { font-size: 0.8rem; color: var(--stone-mid); }
    .btn-download { background: var(--maroon); color: white; border: none; padding: 10px 20px; border-radius: 20px; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: all 0.2s; text-decoration: none; }
    .btn-download:hover { background: var(--maroon-mid); }

    /* FOOTER */
    footer { background: var(--stone); color: rgba(255,255,255,0.65); padding: 64px 40px 24px; }
    .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .footer-brand-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: white; display: block; margin-bottom: 4px; }
    .footer-brand-tagline { font-size: 0.76rem; color: rgba(255,255,255,0.4); font-style: italic; display: block; margin-bottom: 14px; }
    .footer-brand-desc { font-size: 0.81rem; line-height: 1.7; margin-bottom: 18px; }
    .socials { display: flex; gap: 8px; }
    .social-btn { width: 34px; height: 34px; background: rgba(255,255,255,0.08); border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 0.85rem; text-decoration: none; transition: all 0.2s; }
    .social-btn:hover { background: var(--maroon); color: white; border-color: var(--maroon); }
    .footer-col h4 { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.58); text-decoration: none; transition: color 0.2s; }
    .footer-col ul li a:hover { color: white; }
    .footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding-top: 24px; font-size: 0.73rem; color: rgba(255,255,255,0.3); }
    .footer-om { color: var(--saffron-light); font-family: var(--font-hindi); font-size: 1rem; }

    /* RESPONSIVE */
    @media (max-width: 1024px) { .festivals-layout { grid-template-columns: 1fr; } .sidebar { display: grid; grid-template-columns: 1fr 1fr; } }
    @media (max-width: 768px) {
      .topbar, nav, .breadcrumb, .panchang-strip, .month-filter { padding-left: 20px; padding-right: 20px; }
      .festivals-layout { padding: 32px 20px 60px; }
      .nav-links { display: none; }
      .upcoming-card { grid-template-columns: 1fr; }
      .upcoming-img { min-height: 180px; font-size: 5rem; }
      .sidebar { grid-template-columns: 1fr; }
      .vrat-types { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
      footer { padding: 48px 20px 20px; }
      .download-strip { flex-direction: column; text-align: center; }
    }
    @media (max-width: 500px) {
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
      .panchang-items { gap: 14px; }
      .upcoming-countdown { gap: 8px; }
    }
