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

/* ── from sanatanbliss_temples ── */
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; }
    .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.97); 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 .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 .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 .25s; text-decoration: none; display: flex; align-items: center; gap: 6px; }
    .nav-shop-btn:hover { background: var(--maroon-mid); transform: translateY(-1px); }

    /* HERO */
    .page-hero { min-height: 52vh; position: relative; display: grid; place-items: center; overflow: hidden; }
    .hero-bg { position: absolute; inset: 0; background: linear-gradient(160deg, #0A0A1A 0%, #1A0A2E 35%, var(--maroon) 70%, #3D0A00 100%); }
    .hero-stars { position: absolute; inset: 0; background-image: radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.4) 0%, transparent 100%), radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.3) 0%, transparent 100%), radial-gradient(1px 1px at 80% 60%, rgba(255,255,255,0.35) 0%, transparent 100%), radial-gradient(1.5px 1.5px at 40% 70%, rgba(255,255,255,0.3) 0%, transparent 100%), radial-gradient(1px 1px at 70% 80%, rgba(255,255,255,0.25) 0%, transparent 100%); }
    .hero-gopuram { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); font-size: 16rem; opacity: 0.04; pointer-events: none; font-family: var(--font-hindi); color: white; }
    .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.1); animation-direction: reverse; animation-duration: 55s; }
    @keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
    .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); } }
    .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; }
    .hero-title { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 300; color: white; line-height: 1.1; margin-bottom: 6px; }
    .hero-title em { font-style: italic; color: var(--saffron-light); }
    .hero-title-hi { font-family: var(--font-hindi); font-size: 1.3rem; color: rgba(255,255,255,0.45); display: block; margin-bottom: 16px; }
    .hero-divider { width: 48px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 auto 18px; }
    .hero-sub { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 28px; }
    .hero-search { display: flex; gap: 0; max-width: 540px; margin: 0 auto 20px; }
    .hero-search-input { flex: 1; padding: 14px 20px; border: none; border-radius: 50px 0 0 50px; font-family: var(--font-body); font-size: 0.9rem; color: var(--stone); outline: none; }
    .hero-search-btn { background: var(--saffron); color: white; border: none; padding: 14px 24px; border-radius: 0 50px 50px 0; font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: background .2s; white-space: nowrap; }
    .hero-search-btn:hover { background: var(--saffron-light); }
    .hero-stats { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
    .hs-item { text-align: center; }
    .hs-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold-light); display: block; }
    .hs-label { font-size: 0.68rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; }
    .hs-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

    /* 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; }

    /* JYOTIRLINGA STRIP */
    .jyotirlinga-strip { background: linear-gradient(90deg, var(--saffron-pale), var(--gold-light), var(--saffron-pale)); border-bottom: 1px solid rgba(212,160,23,0.3); padding: 14px 40px; overflow-x: auto; scrollbar-width: none; }
    .jyotirlinga-strip::-webkit-scrollbar { display: none; }
    .jl-inner { display: flex; align-items: center; gap: 6px; min-width: max-content; }
    .jl-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--maroon); margin-right: 6px; white-space: nowrap; }
    .jl-pill { display: flex; align-items: center; gap: 5px; padding: 5px 12px; background: white; border: 1px solid rgba(194,96,10,0.2); border-radius: 20px; font-size: 0.74rem; color: var(--stone-mid); text-decoration: none; transition: all .2s; white-space: nowrap; }
    .jl-pill:hover { border-color: var(--saffron); color: var(--saffron); background: var(--saffron-pale); }

    /* REGION FILTER */
    .region-filter { background: white; border-bottom: 1px solid var(--cream-dark); padding: 0 40px; display: flex; overflow-x: auto; scrollbar-width: none; }
    .region-filter::-webkit-scrollbar { display: none; }
    .region-btn { padding: 16px 20px; font-size: 0.8rem; font-weight: 500; color: var(--stone-mid); border: none; background: transparent; cursor: pointer; border-bottom: 2.5px solid transparent; transition: all .2s; font-family: var(--font-body); white-space: nowrap; display: flex; align-items: center; gap: 6px; }
    .region-btn:hover { color: var(--maroon); }
    .region-btn.active { color: var(--maroon); border-bottom-color: var(--saffron); font-weight: 600; }
    .region-count { font-size: 0.62rem; background: var(--cream-dark); padding: 1px 6px; border-radius: 10px; color: var(--stone-light); }
    .region-btn.active .region-count { background: var(--maroon); color: white; }

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

    
    

    /* FEATURED TEMPLE CARD */
    .featured-temple { background: var(--maroon); border-radius: 24px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 36px; }
    .ft-visual { background: rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; font-size: 8rem; min-height: 260px; position: relative; }
    .ft-badges { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 5px; }
    .ft-badge { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 10px; }
    .ftb-jyot { background: var(--gold); color: var(--stone); }
    .ftb-dham { background: rgba(255,255,255,0.15); color: white; }
    .ft-body { padding: 32px 28px; display: flex; flex-direction: column; justify-content: center; }
    .ft-deity { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 600; margin-bottom: 8px; display: block; }
    .ft-name { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: white; line-height: 1.15; margin-bottom: 4px; }
    .ft-name-hi { font-family: var(--font-hindi); font-size: 1rem; color: rgba(255,255,255,0.5); display: block; margin-bottom: 12px; }
    .ft-location { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
    .ft-desc { font-size: 0.84rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 18px; }
    .ft-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
    .ft-meta-item { font-size: 0.75rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 5px; }
    .ft-actions { display: flex; gap: 10px; }
    .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 .2s; }
    .btn-gold:hover { background: var(--saffron-light); }
    .btn-ghost-sm { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); padding: 10px 16px; border-radius: 20px; font-family: var(--font-body); font-size: 0.8rem; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: all .2s; }
    .btn-ghost-sm:hover { background: rgba(255,255,255,0.18); }

    /* TEMPLE GRID */
    .temple-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 32px; }
    .temple-card { background: white; border: 1px solid var(--cream-dark); border-radius: 20px; overflow: hidden; text-decoration: none; color: var(--stone); transition: all .3s; position: relative; }
    .temple-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(107,30,15,0.1); border-color: rgba(194,96,10,0.2); }
    .tc-img { height: 130px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; }
    .tc-badges { position: absolute; top: 8px; left: 8px; display: flex; gap: 5px; flex-wrap: wrap; }
    .tc-badge { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 2px 8px; border-radius: 10px; }
    .tcb-12 { background: var(--gold); color: var(--stone); }
    .tcb-4dham { background: var(--maroon); color: white; }
    .tcb-shakti { background: #BE185D; color: white; }
    .tcb-famous { background: var(--green); color: white; }
    .tc-body { padding: 14px 16px 16px; }
    .tc-state { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone-light); font-weight: 600; margin-bottom: 4px; display: flex; align-items: center; gap: 5px; }
    .tc-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--maroon); line-height: 1.25; margin-bottom: 2px; }
    .tc-name-hi { font-family: var(--font-hindi); font-size: 0.8rem; color: var(--stone-light); display: block; margin-bottom: 8px; }
    .tc-footer { display: flex; align-items: center; justify-content: space-between; }
    .tc-deity-tag { font-size: 0.65rem; background: var(--saffron-pale); color: var(--saffron); font-weight: 600; padding: 2px 8px; border-radius: 10px; }
    .tc-timing { font-size: 0.67rem; color: var(--stone-light); }
    .tc-arrow { color: var(--saffron); font-size: 0.9rem; }

    /* TEMPLE LIST */
    .temple-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
    .temple-list-item { background: white; border: 1px solid var(--cream-dark); border-radius: 14px; display: flex; overflow: hidden; text-decoration: none; color: var(--stone); transition: all .3s; }
    .temple-list-item:hover { transform: translateX(4px); box-shadow: 0 6px 24px rgba(107,30,15,0.09); border-color: rgba(194,96,10,0.2); }
    .tli-emoji { width: 76px; display: flex; align-items: center; justify-content: center; font-size: 2rem; background: var(--cream); border-right: 1px solid var(--cream-dark); flex-shrink: 0; }
    .tli-body { flex: 1; padding: 12px 16px; }
    .tli-state { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone-light); font-weight: 600; margin-bottom: 2px; }
    .tli-name { font-family: var(--font-display); font-size: 0.98rem; font-weight: 600; color: var(--maroon); margin-bottom: 2px; }
    .tli-name-hi { font-family: var(--font-hindi); font-size: 0.78rem; color: var(--stone-mid); display: block; margin-bottom: 5px; }
    .tli-tags { display: flex; gap: 5px; }
    .tli-tag { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; padding: 2px 7px; border-radius: 8px; background: var(--saffron-pale); color: var(--saffron); }
    .tli-right { padding: 12px 16px; display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: 5px; flex-shrink: 0; }
    .tli-timing { font-size: 0.7rem; color: var(--stone-light); white-space: nowrap; }
    .tli-arrow { color: var(--saffron); font-size: 0.9rem; }

    /* MAP PLACEHOLDER */
    .map-section { background: white; border: 1px solid var(--cream-dark); border-radius: 20px; overflow: hidden; margin-bottom: 32px; }
    .map-header { padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--cream-dark); }
    .map-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--maroon); }
    .map-toggle { display: flex; gap: 6px; }
    .map-btn { padding: 5px 14px; border-radius: 20px; border: 1.5px solid var(--cream-dark); background: white; font-family: var(--font-body); font-size: 0.74rem; color: var(--stone-mid); cursor: pointer; transition: all .2s; }
    .map-btn.active { background: var(--maroon); border-color: var(--maroon); color: white; }
    .map-area { height: 280px; background: linear-gradient(135deg, #E8F4F8, #D4EAF0); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--stone-mid); position: relative; overflow: hidden; }
    .map-india { font-size: 8rem; opacity: 0.15; position: absolute; }
    .map-pins { position: absolute; inset: 0; }
    .map-pin { position: absolute; font-size: 1.4rem; animation: pinPulse 2s ease-in-out infinite; }
    @keyframes pinPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.2)} }
    .map-label { font-size: 0.86rem; font-weight: 600; color: var(--maroon); z-index: 1; }
    .map-sublabel { font-size: 0.76rem; color: var(--stone-mid); z-index: 1; }
    .map-cta { background: var(--maroon); color: white; border: none; padding: 10px 22px; border-radius: 20px; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; cursor: pointer; z-index: 1; transition: background .2s; }
    .map-cta:hover { background: var(--maroon-mid); }

    /* PILGRIMAGE ROUTES */
    .pilgrimage-section { margin-bottom: 32px; }
    .pilg-cards { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
    .pilg-cards::-webkit-scrollbar { display: none; }
    .pilg-card { flex-shrink: 0; width: 200px; background: white; border: 1px solid var(--cream-dark); border-radius: 18px; overflow: hidden; text-decoration: none; color: var(--stone); transition: all .3s; }
    .pilg-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(107,30,15,0.1); }
    .pilg-top { height: 100px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
    .pilg-body { padding: 10px 14px 14px; }
    .pilg-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--maroon); margin-bottom: 3px; line-height: 1.3; }
    .pilg-count { font-size: 0.72rem; color: var(--stone-light); margin-bottom: 6px; }
    .pilg-tag { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; background: var(--saffron-pale); color: var(--saffron); padding: 2px 8px; border-radius: 10px; }

    /* SIDEBAR */
    .sidebar { display: flex; flex-direction: column; gap: 20px; }
    .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.05rem; font-weight: 600; color: var(--maroon); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--cream-dark); }

    /* Quick state list */
    .state-list { display: flex; flex-direction: column; gap: 8px; }
    .state-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; text-decoration: none; color: var(--stone); transition: all .2s; }
    .state-item:hover { background: var(--saffron-pale); }
    .state-icon { font-size: 1.1rem; width: 28px; text-align: center; }
    .state-name { font-size: 0.83rem; font-weight: 500; flex: 1; }
    .state-count { font-size: 0.68rem; color: var(--stone-light); background: var(--cream-dark); padding: 2px 7px; border-radius: 10px; }

    /* Today's auspicious temples */
    .auspicious-card { background: linear-gradient(135deg, var(--saffron-pale), var(--cream)); border: 1px solid rgba(194,96,10,0.2); border-radius: 20px; padding: 20px; }
    .ac-label { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--saffron); font-weight: 600; margin-bottom: 10px; display: block; }
    .ac-items { display: flex; flex-direction: column; gap: 10px; }
    .ac-item { display: flex; align-items: center; gap: 10px; }
    .ac-emoji { font-size: 1.4rem; width: 36px; text-align: center; }
    .ac-name { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; color: var(--maroon); }
    .ac-reason { font-size: 0.7rem; color: var(--stone-mid); }

    /* Newsletter widget */
    .newsletter-widget { background: var(--maroon); border-radius: 20px; padding: 22px; text-align: center; }
    .nw-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
    .nw-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: white; margin-bottom: 6px; }
    .nw-desc { font-size: 0.76rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 14px; }
    .nw-input { width: 100%; padding: 9px 14px; border-radius: 8px; border: none; font-family: var(--font-body); font-size: 0.82rem; margin-bottom: 8px; outline: none; }
    .nw-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 .2s; }
    .nw-btn:hover { background: var(--saffron-light); }

    /* FADE UP */
    
    

    /* 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 .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 .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) { .main-layout { grid-template-columns: 1fr; } .sidebar { display: grid; grid-template-columns: 1fr 1fr; } }
    @media (max-width: 768px) {
      .topbar, nav, .breadcrumb, .jyotirlinga-strip, .region-filter { padding-left: 20px; padding-right: 20px; }
      .main-layout { padding: 28px 20px 60px; }
      .nav-links { display: none; }
      .featured-temple { grid-template-columns: 1fr; }
      .ft-visual { min-height: 160px; font-size: 6rem; }
      .temple-grid { grid-template-columns: 1fr; }
      .sidebar { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
      footer { padding: 48px 20px 20px; }
      .hero-search { flex-direction: column; }
      .hero-search-input { border-radius: 50px; }
      .hero-search-btn { border-radius: 50px; }
    }
    @media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 6px; text-align: center; } }
