
/* ===== variables.css ===== */
/*
 * Component : CSS Variables / Design Tokens (Mobile)
 * File      : css/mobile/components/variables.css
 * Loaded by : headermobile.php — FIRST, before all other CSS
 *
 * Minimal set — add tokens only when a component actually needs them.
 * Desktop copies this file and overrides only --np-base-font-size: 16px
 */

:root {


  --np-saffron:        #F37420;
  --np-green:          #059669;
  --np-green-mid:      #10B981;
  --np-saffron-dark:   #e05515;
  --np-saffron-light:  #F3AF42;
  --np-saffron-bg:     rgba(243, 116, 32, 0.08);
  --np-green-bg:       rgba(16, 185, 129, 0.08);


  --np-gold:           #DAA520;


  --np-text-dark:      #3E2723;
  --np-text-mid:       #6B5B4F;
  --np-text-light:     #9e8f87; 
  --np-text-black:     #000000; 
  --np-black-mid:     #333333;
  --np-text-white:     #FFFFFF;  


  
  --np-white:       #FFFFFF;
  --np-cream:       #FFF8F0;
  --np-light:       #FFFBF5;
  
  --np-border-saffron:  rgba(243, 116, 32, 0.2);
  --np-border-green:    rgba(16, 185, 129, 0.2);

 
  --np-grad-green:       linear-gradient(135deg, #059669, #10B981) !important;
  --np-grad-saffron:   linear-gradient(135deg, #e05515, #f7971e);

 
  --np-font:           'Noto Sans', sans-serif;
  --np-base-font-size: 14px;


  --np-radius-sm:      6px;
  --np-radius:         10px;
  --np-radius-pill:    999px;

 
  --np-shadow:         0 2px 10px rgba(0, 0, 0, 0.08);
  --np-shadow-green:   -8px 10px 30px rgba(16, 185, 129, 0.35);
  --np-shadow-saffron: -8px 10px 30px rgba(243, 116, 32, 0.35);

  
  --np-bg-peach:       linear-gradient(135deg, #fff3e0, #ffe0b2);
  --np-bg-green:       linear-gradient(135deg, #e8f5e9, #c8e6c9);
  --np-bg-pink:        linear-gradient(135deg, #fce4ec, #f8bbd0);
  --np-bg-blue:        linear-gradient(135deg, #e3f2fd, #bbdefb);
  --np-bg-purple:      linear-gradient(135deg, #ede7f6, #d1c4e9);
  --np-bg-light-peach: linear-gradient(135deg, #ffffff, #f1f0ee);
}


/* ══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   Usage:
     data-np-reveal   → element fades up when 10% visible (fires once)
     data-np-stagger  → direct children fade up one-by-one (70ms apart)
   Both are no-ops when prefers-reduced-motion: reduce is set.
   ══════════════════════════════════════════════ */

@media (prefers-reduced-motion: no-preference) {
    [data-np-reveal] {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.45s ease, transform 0.45s ease;
    }

    [data-np-reveal].np-in {
        opacity: 1;
        transform: translateY(0);
    }

    [data-np-stagger] > * {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.45s ease, transform 0.45s ease;
    }

    [data-np-stagger].np-in > *:nth-child(1)  { transition-delay: 0.00s; }
    [data-np-stagger].np-in > *:nth-child(2)  { transition-delay: 0.07s; }
    [data-np-stagger].np-in > *:nth-child(3)  { transition-delay: 0.14s; }
    [data-np-stagger].np-in > *:nth-child(4)  { transition-delay: 0.21s; }
    [data-np-stagger].np-in > *:nth-child(5)  { transition-delay: 0.28s; }
    [data-np-stagger].np-in > *:nth-child(6)  { transition-delay: 0.35s; }
    [data-np-stagger].np-in > *:nth-child(7)  { transition-delay: 0.42s; }
    [data-np-stagger].np-in > *:nth-child(8)  { transition-delay: 0.49s; }
    [data-np-stagger].np-in > *:nth-child(9)  { transition-delay: 0.56s; }
    [data-np-stagger].np-in > *:nth-child(10) { transition-delay: 0.63s; }
    [data-np-stagger].np-in > *:nth-child(11) { transition-delay: 0.70s; }
    [data-np-stagger].np-in > *:nth-child(12) { transition-delay: 0.77s; }

    [data-np-stagger].np-in > * {
        opacity: 1;
        transform: translateY(0);
    }
}


.np-bg-peach  { background: var(--np-bg-peach); }
.np-bg-green  { background: var(--np-bg-green); }
.np-bg-pink   { background: var(--np-bg-pink); }
.np-bg-blue   { background: var(--np-bg-blue); }
.np-bg-purple { background: var(--np-bg-purple); }
.np-bg-light-peach { background: var(--np-bg-light-peach); }


/* =============================================================
   FESTIVAL THEME SYSTEM
   =============================================================
   Body class is set by PHP (functions.php) based on today's date.
   Each festival block overrides only the festival variables.
   Hero, header, and CTA buttons read these vars with a fallback:
     background: var(--np-festival-hero-bg, var(--np-grad-saffron));
     background: var(--np-festival-btn,     var(--np-grad-btn));
   So normal pages are 100% unaffected — festival vars are unset by default.
   GIF overlay: --np-festival-gif = none by default; set to url() for festivals.
   ============================================================= */

/* ── Default (no festival) — all festival vars unset ── */
:root {
  --np-festival-hero-bg:    none;   /* fallback used: --np-grad-saffron    */
  --np-festival-btn:        none;   /* fallback used: --np-grad-btn         */
  --np-festival-header-bg:  none;   /* fallback used: header's own bg       */
  --np-festival-accent:     none;   /* fallback used: --np-saffron          */
  --np-festival-gif:        none;   /* url('/assets/festival.gif') for fests*/
}

/* ── Republic Day / Independence Day (Jan 26 / Aug 15) ──
   Indian tricolor: saffron top, white mid, green base + navy Ashoka Chakra */
body.f-republic {
  --np-festival-hero-bg:   linear-gradient(180deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
  --np-festival-btn:       linear-gradient(135deg, #FF9933, #FF7700);
  --np-festival-header-bg: #FF9933;
  --np-festival-accent:    #FF9933;
  --np-festival-accent-2:  #138808;   /* tricolor second accent (green) */
  --np-festival-chakra:    #000080;   /* Ashoka Chakra navy — for icon/border only */
}

/* ── Diwali (Oct–Nov, date varies) ──
   Deep jewel tones: purple night sky + gold diyas + warm orange glow */
body.f-diwali {
  --np-festival-hero-bg:   linear-gradient(135deg, #1a0533 0%, #4a1060 40%, #c0392b 70%, #FFD700 100%);
  --np-festival-btn:       linear-gradient(135deg, #FFD700, #FF8C00);
  --np-festival-header-bg: #2d0a4e;
  --np-festival-accent:    #FFD700;
  --np-festival-accent-2:  #FF8C00;
}

/* ── Ganesh Chaturthi (Aug–Sep) ──
   Marigold orange + vermillion red + cream */
body.f-ganesh {
  --np-festival-hero-bg:   linear-gradient(135deg, #FF6B00 0%, #FFB300 50%, #FFF3C4 100%);
  --np-festival-btn:       linear-gradient(135deg, #e65c00, #FFB300);
  --np-festival-header-bg: #e65c00;
  --np-festival-accent:    #FFB300;
  --np-festival-accent-2:  #DC143C;
}

/* ── Dussehra (Oct) ──
   Victory saffron + deep red + gold */
body.f-dussehra {
  --np-festival-hero-bg:   linear-gradient(135deg, #8B0000 0%, #CC3300 40%, #FF6600 70%, #FFD700 100%);
  --np-festival-btn:       linear-gradient(135deg, #CC3300, #FF6600);
  --np-festival-header-bg: #8B0000;
  --np-festival-accent:    #FF6600;
  --np-festival-accent-2:  #FFD700;
}

/* ── GIF overlay helper — use on hero wrapper ──
   Usage: <div class="np-festival-bg-gif"> wraps hero content
   The GIF url is set via --np-festival-gif from PHP inline style or body class */
.np-festival-bg-gif {
  position: relative;
}
.np-festival-bg-gif::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--np-festival-gif);
  background-size: cover;
  background-position: center;
  opacity: 0.18;           /* subtle — not overpowering the content */
  pointer-events: none;
  z-index: 0;
}
.np-festival-bg-gif > * {
  position: relative;
  z-index: 1;
}


/*
 * Component : CSS Variables / Design Tokens (Desktop override)
 * File      : css/desktop/components/variables.css
 * Loaded by : header.php — after mobile/components/variables.css
 *
 * Only overrides what differs on ≥992 px viewports.
 * All other tokens are defined in css/mobile/components/variables.css.
 */

:root {
  --np-base-font-size: 16px;
  --np-cream: #FFF8F0;
}


/* ══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS  (desktop overrides mobile values if needed)
   Identical rules — both files loaded, desktop file wins on ≥992px.
   ══════════════════════════════════════════════ */

@media (prefers-reduced-motion: no-preference) {
    [data-np-reveal] {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.45s ease, transform 0.45s ease;
    }

    [data-np-reveal].np-in {
        opacity: 1;
        transform: translateY(0);
    }

    [data-np-stagger] > * {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.45s ease, transform 0.45s ease;
    }

    [data-np-stagger].np-in > *:nth-child(1)  { transition-delay: 0.00s; }
    [data-np-stagger].np-in > *:nth-child(2)  { transition-delay: 0.07s; }
    [data-np-stagger].np-in > *:nth-child(3)  { transition-delay: 0.14s; }
    [data-np-stagger].np-in > *:nth-child(4)  { transition-delay: 0.21s; }
    [data-np-stagger].np-in > *:nth-child(5)  { transition-delay: 0.28s; }
    [data-np-stagger].np-in > *:nth-child(6)  { transition-delay: 0.35s; }
    [data-np-stagger].np-in > *:nth-child(7)  { transition-delay: 0.42s; }
    [data-np-stagger].np-in > *:nth-child(8)  { transition-delay: 0.49s; }
    [data-np-stagger].np-in > *:nth-child(9)  { transition-delay: 0.56s; }
    [data-np-stagger].np-in > *:nth-child(10) { transition-delay: 0.63s; }
    [data-np-stagger].np-in > *:nth-child(11) { transition-delay: 0.70s; }
    [data-np-stagger].np-in > *:nth-child(12) { transition-delay: 0.77s; }

    [data-np-stagger].np-in > * {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===== skeleton.css ===== */
/*
 * Component : Skeleton Loading (np-skeleton) — Desktop overrides
 * File      : css/desktop/components/skeleton.css
 * Loaded by : header.php (global)
 *
 * Builds on mobile/components/skeleton.css.
 * Only overrides what differs on ≥992 px viewports.
 */

.np-skeleton__line   { height: 16px; margin-bottom: 12px; }
.np-skeleton__title  { height: 24px; margin-bottom: 16px; }
.np-skeleton__circle { width: 56px; height: 56px; }
.np-skeleton__box    { height: 160px; }

.np-skeleton-swiper .np-skeleton-card { flex: 0 0 calc(33.33% - 8px); }

@media (min-width: 992px) {
    .np-skeleton-swiper .np-skeleton-card { flex: 0 0 calc(25% - 9px); }
}


/* ===== modals.css ===== */
/*
 * Component : Modals
 * File      : css/desktop/components/modals.css
 * Loaded by : header.php + headermobile.php (all pages)
 *
 * Contains CSS for all Bootstrap modals and offcanvas dialogs used in the theme:
 *  - Modal z-index overrides
 *  - Puja details modal
 *  - Navratri / event modal
 *  - Card Style booking modal
 *  - OTP / Minimal verification modal
 *  - Home booking modal (city modal header, radio, footer)
 *  - Canvas modal radio
 *  - City chooser modal (cities-ui)
 *  - Modal body scrollbar
 */

/* ══════════════════════════════════════════
   MODAL / OFFCANVAS / MENU Z-INDEX OVERRIDES
   Header (.header_allPujas) — z-index: 999 (mobile), 9999 (desktop).
   Stacking order above the header:
     10000000 — backdrops / overlays  (dim the page, always below panels)
     10000001 — #offcanvasBottom      (all-pujas grid, bottommost panel)
     10000002 — #citiesOffcanvas      (city chooser)
     10000003 — #EventdetailsModal    (puja details)
     10000004 — #staticBackdropBook   (booking form)
     10000005 — #mobile-menu          (slide-in nav)
     10000006 — #globalMobileLoginModal (login, always topmost)
   ══════════════════════════════════════════ */

/* Backdrops/overlays — above header, ALWAYS behind all panels */
.modal-backdrop,
.offcanvas-backdrop,
.np-menu-backdrop {
  z-index: 10000000 !important;
}

/* Generic fallback — any unspecified modal/offcanvas */
.modal {
  z-index: 10000003 !important;
}
.offcanvas,
.offcanvas-bottom,
.offcanvas-top,
.offcanvas-start,
.offcanvas-end {
  z-index: 10000001 !important;
}

/* ── Stacking hierarchy (lowest → highest) ── */
#offcanvasBottom                         { z-index: 10000001 !important; }
#citiesOffcanvas                         { z-index: 10000002 !important; }
#EventdetailsModal                       { z-index: 10000003 !important; }
#staticBackdropBook,
#staticBackdropBookInternational         { z-index: 10000004 !important; }
#mobile-menu                             { z-index: 10000005 !important; }
#globalMobileLoginModal                  { z-index: 10000006 !important; }

/* Legacy overrides kept for specificity */
.modal.fade.show,
.modal.bottom-slide-up .modal-dialog,
.modal-dialog.modal-dialog-centered {
  z-index: 10000003 !important;
}

/* ══════════════════════════════════════════
   BACKDROP — np-menu-backdrop
   Also loaded sync so it works before async CSS arrives.
   ══════════════════════════════════════════ */
.np-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.np-menu-backdrop.is-open {
  display: block;
}

/* ══════════════════════════════════════════
   SLIDE-IN NAV MENU (#mobile-menu)
   Critical styles loaded synchronously here so the menu
   is always ready regardless of async CSS load order.
   desktop-header-new.css (async) may add overrides.
   ══════════════════════════════════════════ */
#mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}

#mobile-menu.is-open {
  transform: translateX(0);
}

/* Mobile: narrow drawer */
@media (max-width: 992px) {
  #mobile-menu {
    width: 80%;
    max-width: 320px;
  }
}

/* Desktop: wider side panel */
@media (min-width: 993px) {
  #mobile-menu {
    width: 360px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  }
}

/* ══════════════════════════════════════════
   DESKTOP PROFILE BUTTON + SLIDE-IN MENU CONTENTS
   Moved here (sync) so styles are ready when np-header-desktop.js
   injects the HTML at DOMContentLoaded.
   ══════════════════════════════════════════ */

.np-d-profile-wrap { position: relative; }

.np-d-profile-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--np-text-dark);
  font-size: 13px;
}

.np-d-avatar {
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--np-saffron);
  flex-shrink: 0;
}

.np-d-avatar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--np-saffron);
  color: var(--np-saffron);
  font-size: 20px;
  flex-shrink: 0;
}

.np-d-profile-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--np-white);
  border-radius: var(--np-radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-width: 190px;
  z-index: 999999;
  overflow: hidden;
}
.np-d-profile-dropdown.is-open { display: block; }

.np-d-dd-item {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--np-text-dark);
  text-decoration: none;
  transition: background 0.15s ease;
  white-space: nowrap;
}
.np-d-dd-item + .np-d-dd-item { border-top: 1px solid #f0f0f0; }
.np-d-dd-item:hover { background: var(--np-cream); color: var(--np-saffron); }
.np-d-dd-logout { color: var(--np-saffron-dark); }
.np-d-dd-logout:hover { background: var(--np-saffron-bg); color: var(--np-saffron-dark); }

.mobile_menu_heading {
  background: var(--np-cream);
  padding: 20px 24px 24px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--np-border-saffron);
}

.mobile_menu_close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--np-white);
  border: 1px solid #e8e0d8;
  cursor: pointer;
  color: var(--np-text-dark);
  font-size: 15px;
  transition: background 0.2s ease;
  text-decoration: none;
}
.mobile_menu_close:hover {
  background: var(--np-saffron-bg);
  color: var(--np-saffron);
  border-color: var(--np-saffron);
}

.user_name_profile {
  background: var(--np-white);
  border-radius: var(--np-radius);
  padding: 12px 14px;
  margin-top: 12px;
  box-shadow: var(--np-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}

.user_name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--np-text-dark);
}
.user_name img { border-radius: 50%; border: 2px solid var(--np-saffron); object-fit: cover; }
.user_profile_icon { color: var(--np-text-mid); font-size: 14px; }

.mobile_menu_items_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid #f5f0eb;
  text-decoration: none;
  color: var(--np-text-dark);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s ease;
}
.mobile_menu_items_content:hover { background: var(--np-cream); color: var(--np-saffron); }
.mobile_menu_items_content:hover .right_items_content { color: var(--np-saffron); }

.left_items_content { display: flex; align-items: center; gap: 10px; font-size: 14px; color: inherit; }
.right_items_content { color: var(--np-text-mid); font-size: 13px; }

.android_ios_app { padding: 16px 24px; border-top: 1px solid #f0f0f0; flex-shrink: 0; }
.android_ios_app p { font-size: 13px; font-weight: 600; color: var(--np-text-mid); margin-bottom: 8px; }

/* ══════════════════════════════════════════
   PUJA DETAILS MODAL
   ══════════════════════════════════════════ */
.puja-details-modal-body ul.puja_service_list {
  display: flex;
}

/* ══════════════════════════════════════════
   NAVRATRI / EVENT MODAL
   ══════════════════════════════════════════ */
/*add new css for Navratri modal 18_9_25*/
.navratri_modal_title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.modal-body-span {
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  display: block;
  font-weight: 600;
  text-align: left;
}

.modal-body-p {
  font-weight: 500;
  text-align: left;
}
@media only screen and (max-width:767px) {

  .navratri_modal_title,
  .modal-body-span {
    font-size: 18px;
    text-align: left;
  }

  .modal-body-p {
    font-size: 14px !important;
    text-align: left;
  }
}
@media only screen and (max-width:430px) {

  .navratri_modal_title,
  .modal-body-span {
    font-size: 18px !important;
  }

  .modal-body-p {
    font-size: 12px !important;
  }
}

/* ══════════════════════════════════════════
   CARD STYLE MODAL (booking channel chooser)
   ══════════════════════════════════════════ */
/* Card Style Modal Design */
.card-style-modal {
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 10px 20px rgba(0, 0, 0, 0.1);
  border: none;
  overflow: hidden;
}

/* Header Styling */
.card-style-header {
  background: linear-gradient(135deg, var(--np-saffron) 0%, var(--np-saffron) 100%);
  color: white;
  padding: 12px;
  text-align: center;
  border-bottom: none;
  position: relative;
}

.card-style-title {
  font-size: 22px;
  font-weight: 500;
  color: white;
  margin: 0;
  width: 100%;
}

.card-style-header .btn-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Body Styling */
.card-style-body {
  padding: 15px 24px;
  background: white;
  padding-bottom: 20px;
  border-radius: 5px;
}

/* Option Cards Container */
.option-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

/* Individual Option Card */
.option-card {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
}

.option-card:hover {
  border-color: #9ca3af;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.option-card:active {
  transform: translateX(2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Option Icon Styling */
.option-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-icon {
  background: #dcfce7;
  color: #16a34a;
}

.sms-icon {
  background: #dbeafe;
  color: #2563eb;
}

/* Option Content */
.option-content {
  flex: 1;
  text-align: left;
}

.option-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
  line-height: 1.3;
}

.option-subtitle {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}

/* Note Box Styling */
.note-box {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  color: #92400e;
  line-height: 1.5;
}

.note-box strong {
  font-weight: 600;
  color: #78350f;
}

/* Error Message Styling */
.error_show {
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
  margin: 0px;
}

.error_show.active {
  display: block;
  background: #fee2e2;
  border-left: 4px solid #ef4444;
  color: #991b1b;
}

.option-icon.whatsapp-icon svg {
  fill: #16a34a;
}

.option-icon.sms-icon svg {
  fill: #2563eb;
}

/* Responsive Design */
@media (max-width: 576px) {
  .card-style-header {
    padding: 20px;
  }

  .card-style-title {
    font-size: 18px;
  }

  .card-style-body {
    padding: 15px 20px;
  }

  .option-card {
    padding: 8px;
  }

  .option-icon {
    width: 40px;
    height: 40px;
  }

  .option-icon svg {
    width: 20px;
    height: 20px;
  }

  .option-title {
    font-size: 15px;
  }

  .option-subtitle {
    font-size: 12px;
  }
}

.alert.alert-danger.alert-dismissible.fade.show {
  padding: 3px 8px;
  background-color: red;
  color: #fff;
  margin-bottom: 0;
  padding-top: 0px;
}


.alert.alert-danger.alert-dismissible.fade.show .close {
  border: 0;
  background-color: transparent;
  color: #fff;
  font-size: 20px;
  position: relative;
  top: 0px;
  margin-right: 10px;
}

.error_show {
  padding-bottom: 0;
  padding-top: 0;
}

.error_show.show {
  display: block;
}


/* ══════════════════════════════════════════
   OTP / MINIMAL VERIFICATION MODAL
   ══════════════════════════════════════════ */
/*OTP Verification modal css*/
.verificationH2 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 2rem;
}

.verificationNumberTxt {
  color: #b0b0b0;
  font-weight: 300;
}

input#enquiry_verification_code {
  max-width: 300px;
  margin: 0 auto;
}

.VerificationOtpBtn {
  background-color: var(--sacred-saffron);
  color: #fff;
  padding: 6px 35px;
  font-size: 1rem;
  border: 2px solid var(--sacred-saffron);
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}


/* Minimal Clean Modal Styles */
.minimal-clean-modal {
  border-radius: 16px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  max-width: 480px;
}

/* Header Styles */
.minimal-header {
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 12px 20px;
  border-radius: 16px 16px 0 0;
}

.minimal-header .modal-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  font-family: 'Noto Sans', sans-serif;
  letter-spacing: -0.01em;
}

.minimal-close {
  background: transparent;
  border: none;
  opacity: 0.5;
  transition: opacity 0.2s ease;
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.minimal-close:hover {
  opacity: 1;
  background: #f5f5f5;
}

/* Body Styles */
.minimal-body {
  padding: 40px 32px;
  background: #ffffff;
}

/* Heading */
.minimal-heading {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

/* Subtitle */
.minimal-subtitle {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 400;
}

/* Success Message */
.minimal-success {
  background: #ecfdf5;
  color: #065f46;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 24px;
  border: 1px solid #a7f3d0;
  font-weight: 500;
}

.minimal-success:empty {
  display: none;
}

/* Error Message */
.minimal-error {
  /* background: #fef2f2; */
  /* color: #991b1b; */
  /* padding: 14px 18px; */
  /* border-radius: 10px; */
  /* font-size: 14px; */
  margin-bottom: 0px;
  /* border: 1px solid #fecaca; */
  font-weight: 500;
  margin-top: 9px;
}

.minimal-error .alert-success {
  padding: 7px;
}

.minimal-error:empty {
  display: none;
}

/* Input Field */
.minimal-input {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 15px;
  color: #1a1a1a;
  transition: all 0.2s ease;
  background: #ffffff;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.minimal-input:focus {
  outline: none;
  border-color: var(--sacred-saffron);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
  background: #ffffff;
}

.minimal-input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

/* Verify Button */
.minimal-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--sacred-saffron);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.minimal-btn:hover {
  background: var(--sacred-saffron);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.minimal-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Resend Link */
.minimal-resend {
  font-size: 14px;
  color: #6b7280;
  display: inline-block;
  font-weight: 400;
}

.minimal-resend-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.minimal-resend-link:hover {
  color: #2563eb;
  text-decoration: underline;
}

/* Attempts Left */
.minimal-attempts {
  font-size: 13px;
  color: #6b7280;
  margin-top: 16px;
  margin-bottom: 0;
  font-weight: 500;
}

.minimal-attempts:empty {
  display: none;
}

/* Modal Backdrop Override */
.modal-backdrop.show {
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 576px) {
  .minimal-header {
    padding: 20px 24px;
  }

  .minimal-body {
    padding: 32px 24px;
  }

  .minimal-heading {
    font-size: 22px;
  }

  .minimal-subtitle {
    font-size: 14px;
  }
}

/* ══════════════════════════════════════════
   HOME BOOKING MODAL
   ══════════════════════════════════════════ */
/*home booking modal css madan 29/12/25*/
.home-modal-header {
  display: flex;
  background: linear-gradient(135deg, var(--np-saffron) 0%, #a83232 100%);
  justify-content: center;
}

.home-modal-header button.btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
}

.home-modal-radio.active {
  background: white;
  color: var(--sacred-saffron) !important;
  border-color: white;
  padding: 5px 10px;
  border-radius: 12px;
  cursor: pointer;
}

.home-modal-radio {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff !important;
  padding: 5px 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
}

.form-check-input .home-modal-radio {
  margin-top: 0;
}

.home-modal-radio .form-check-input {
  margin-left: 0px;
  margin-right: 10px;
}

.home-modal-radio .form-check-label {
  font-size: 13px;
  font-weight: 600;
}

.home-modal-radio .form-check-input:checked {
  background-color: var(--np-saffron) !important;
  border-color: var(--np-saffron) !important;
}

.home-modal-radio.active .form-check-input:check {
  background-color: transparent !important;
  border: 2px solid var(--sacred-saffron) !important;
}

.home-modal-radio.active .form-check-input {
  border: 4px solid var(--sacred-saffron) !important;
  background-color: transparent !important;
}

.home-modal-radio.active .form-check-input:focus {
  box-shadow: none !important;
}
@media (max-width: 1280px) {
  .home-modal-radio .form-check-label {
    font-size: 12px;
  }

  .home-modal-radio {
    background-color: transparent;
    padding: 5px 3px;
  }

  .home-modal-radio.active {
    padding: 5px 3px;
  }

  .home-modal-radio .form-check-input {
    margin-right: 4px;
  }
}

@media (max-width: 600px) {
  .home-modal-radio .form-check-label {
    font-size: 12px;
  }

  .home-modal-radio {
    padding: 5px 5px;
  }

  .home-modal-radio.active {
    padding: 5px 5px;
  }
}



.custome-input_group {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  padding: 8px 16px;
  transition: all 0.3s ease;
  outline: none;
}

.custome-input_group:focus {
  border-color: var(--sacred-saffron);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.home-modal-footer {
  padding: 0px 10px;
  border: 0;
  width: 100%;
  display: block;
}

.home-modal-footer button {
  width: 100%;
  padding: 8px 32px;
  border: none;
  border-radius: 10px;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--np-saffron) 0%, #a83232 100%);
}

.offcanvas-footer.text-end.p-3.home-modal-footer {
  padding-top: 0 !important;
}

/* ══════════════════════════════════════════
   CANVAS MODAL RADIO
   ══════════════════════════════════════════ */
.canvas-modal-radio .form-check-label {
  font-size: 13px;
  font-weight: 600;
}

.canvas-modal-radio.active {
  padding: 5px 5px;
}

.canvas-modal-radio {
  padding: 5px 5px;
}

/*.canvas-modal-radio.active .form-check-input {*/
/*    border: 4px solid #fff !important;*/
/*    background-color: var(--np-saffron) !important;*/
/*}*/

/*.canvas-modal-radio .form-check-input:checked {*/
/*    background-color: var(--np-saffron) !important;*/
/*    border-color: #fff !important;*/
/*}*/

/* ══════════════════════════════════════════
   HOME MODAL FOOTER HOVER + FEEDBACK CARD
   ══════════════════════════════════════════ */
.home-modal-footer button:hover {
  color: #fff !important;
}

.feedback-card-minimal {
  height: max-content;
}

/* ══════════════════════════════════════════
   CITY CHOOSER MODAL (cities-ui)
   ══════════════════════════════════════════ */
:root {
  --vp-r-xl: 28px;
  --vp-r-md: 16px;
  --vp-r-pill: 100px;
}

/* ─── Section Label (Popular Cities heading) ─── */
.cities-ui .vp-section-label {
  font-size: 16px;
  font-weight: 600;
  /* color: var(--vp-ink-soft); */
  /* text-transform: uppercase; */
  letter-spacing: .12em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cities-ui .vp-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, .07);
}

/* ─── Cities List Grid ─── */
.cities-ui ul.cities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 15px;
}

.cities-ui ul.cities-list li a {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(0, 0, 0, .05);
  border-radius: var(--vp-r-md);
  padding: 14px 6px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all .28s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  overflow: hidden;
  user-select: none;
  text-decoration: none;
}

.cities-ui ul.cities-list li a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0), rgba(255, 107, 0, 0));
  transition: background .3s;
  border-radius: inherit;
  pointer-events: none;
}

.cities-ui ul.cities-list li a:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 14px 30px rgba(255, 107, 0, .16);
  border-color: rgba(255, 107, 0, .28);
}

.cities-ui ul.cities-list li a:hover::before {
  background: linear-gradient(135deg, rgba(255, 107, 0, .06), rgba(255, 154, 60, .06));
}

/* Icon wrapper (replaces img with SVG icon style) */
.cities-ui ul.cities-list li a .city-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 0, .08), rgba(255, 154, 60, .13));
  border-radius: 13px;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.cities-ui ul.cities-list li a:hover .city-icon {
  transform: scale(1.14) rotate(-5deg);
}

.cities-ui ul.cities-list li a .city-icon svg {
  width: 28px;
  height: 28px;
}

/* City name span */
.cities-ui ul.cities-list li a span {
  font-size: 13px;
  font-weight: 500;
  color: var(--vp-ink);
  text-align: center;
  letter-spacing: -.01em;
  transition: color .2s;
  position: relative;
  z-index: 1;
  margin-top: 0 !important;
  display: block !important;
}

.cities-ui ul.cities-list li a:hover span {
  color: var(--sacred-saffron);
}

/* ─── Ripple ─── */
.vp-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 107, 0, .18);
  width: 80px;
  height: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  transform: scale(0);
  animation: vp-ripple-pop .55s ease-out forwards;
  pointer-events: none;
}

@keyframes vp-ripple-pop {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ─── Divider ─── */
.vp-rule {
  height: 1px;
  background: rgba(0, 0, 0, .07);
  margin: 20px 0;
}

/* ─── Other Cities Toggle (show_other) ─── */
.cities-ui .show_other {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  background: rgba(255, 107, 0, .05);
  border: 1.5px dashed rgba(255, 107, 0, .3);
  border-radius: var(--vp-r-pill);
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--sacred-saffron);
  cursor: pointer;
  transition: all .25s;
  letter-spacing: .01em;
  user-select: none;
}

.cities-ui .show_other:hover {
  background: rgba(255, 107, 0, .1);
  border-style: solid;
}

.vp-toggle-arrow {
  width: 20px;
  height: 20px;
  background: var(--sacred-saffron) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
  flex-shrink: 0;
}

.vp-toggle-arrow svg {
  width: 10px;
  height: 10px;
  stroke: #fff;
  stroke-width: 2.5;
}

.vp-cities-open .vp-toggle-arrow {
  transform: rotate(180deg);
}

/* ─── Expand Panel ─── */
#mre-cities {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.4, 0, .2, 1);
}

#mre-cities.vp-open {
  max-height: 700px;
}

/* #mre-cities .vp-inner { padding-top: 20px; } */

/* ─── Search Field ─── */
.vp-search-wrap {
  position: sticky;
  top: -24px;
  z-index: 10;
  background: #fff;
  padding-bottom: 14px;
}

.vp-search-field {
  position: relative;
}

.vp-search-field input {
  width: 100%;
  padding: 11px 16px 11px 42px;
  background: rgba(255, 107, 0, .04);
  border: 1.5px solid rgba(255, 107, 0, .15);
  border-radius: var(--vp-r-pill);
  /* font-family: 'Noto Sans', sans-serif;  */
  font-size: 13px;
  color: var(--spiritual-text-dark);
  outline: none;
  transition: border-color .2s, background .2s;
  letter-spacing: -.01em;
}

.vp-search-field input:focus {
  border-color: var(--vp-orange);
  background: rgba(255, 107, 0, .06);
}

.vp-search-field input::placeholder {
  color: var(--vp-ink-soft);
}

.vp-search-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--vp-ink-soft);
  pointer-events: none;
}

/* ─── Pills Wrap ─── */
.vp-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 240px;
  overflow-y: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 107, 0, .2) transparent;
}

.vp-pills-wrap::-webkit-scrollbar {
  width: 4px;
}

.vp-pills-wrap::-webkit-scrollbar-thumb {
  background: rgba(255, 107, 0, .25);
  border-radius: 10px;
}

.vp-city-pill {
  padding: 8px 16px;
  background: rgba(255, 107, 0, .05);
  border: 1.5px solid rgba(255, 107, 0, .1);
  border-radius: var(--vp-r-pill);
  font-size: 12.5px;
  font-weight: 500;
  color: #6b5e4e !important;
  cursor: pointer;
  transition: all .22s;
  letter-spacing: -.01em;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  /* font-family: 'Noto Sans', sans-serif; */
}

.vp-city-pill:hover {
  background: rgba(255, 107, 0, .12);
  border-color: rgba(255, 107, 0, .3);
  color: var(--sacred-saffron) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 0, .12);
}

/* ─── Responsive ─── */
@media (max-width: 540px) {
  .cities-ui ul.cities-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .cities-ui .modal-dialog {
    margin: 0;
  }

  .cities-ui .modal-content {
    border-radius: 24px 24px 0 0;
  }

  .cities-ui.modal {
    align-items: flex-end;
  }
}

@media (max-width: 360px) {
  .cities-ui ul.cities-list {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

}

@media (max-width: 767px) {
  #mre-cities {
    overflow: visible;
  }

  div#vpPillsWrap {
    margin-top: 20px;
  }

  span#showCitys {
    font-size: 15px;
  }

  .cities-ui .show_other {
    padding: 8px 16px;

  }

  .cities-ui ul.cities-list {
    gap: 0px;
    row-gap: 15px;
  }
}

.cities-ui .modal-title::before {
  content: 'Vedic Services';
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-family: 'Noto Sans', sans-serif;
}

.cities-ui .modal-title::after {
  content: 'Choose Your City';
  display: block;
  font-family: 'Noto Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.02em;
}

.cities-ui .home-modal-header {
  display: block;
  background: linear-gradient(135deg, #FF6B00 0%, #FF9A3C 60%, #FFB547 100%) !important;
}

/* ══════════════════════════════════════════
   MODAL BODY SCROLLBAR
   ══════════════════════════════════════════ */
/* For Chrome, Edge, Safari */
.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background: var(--sacred-saffron) !important;
  /* scrollbar track color */
}

.modal-body::-webkit-scrollbar-thumb {
  background-color: #ff6b000d !important;
  /* thumb color */
  border-radius: 10px;
}

/* ══════════════════════════════════════════
   PUJA DETAILS MODAL (EventdetailsModals)
   Moved from home-desktop.css — must load on all pages
   ══════════════════════════════════════════ */
/* Desktop Override for EventdetailsModal */
@media (min-width: 769px) {
    .EventdetailsModals.bottom-slide-up .modal-dialog {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        margin: 1.75rem auto !important;
        width: auto !important;
        max-width: 800px !important;
        animation: none !important;
        transform: none !important;
        height: auto !important;
    }

    .EventdetailsModals.bottom-slide-up .modal-content {
        height: auto !important;
        max-height: 85vh;
        border-radius: 20px !important;
    }

    .EventdetailsModals.bottom-slide-up.fade .modal-dialog {
        transition: transform .3s ease-out;
        transform: translate(0, -50px) !important;
    }

    .EventdetailsModals.bottom-slide-up.show .modal-dialog {
        transform: none !important;
    }
}

.EventdetailsModals .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.EventdetailsModals .modal-header {
    border-bottom: none;
    background: var(--spiritual-bg-light);
    padding: 15px 20px;
    display: flex;
    justify-content: flex-end;
}

.EventdetailsModals .btn-close {
    background: transparent;
    background-image: none;
    opacity: 1;
    transition: transform 0.3s ease;
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark) !important;
    font-size: 24px;
}

.EventdetailsModals .btn-close:hover {
    transform: rotate(90deg);
}

.puja-details-modal-body {
    padding: 0 30px 40px;
}

.puja-name-img img {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.whatsappShares {
    background: #25D366;
    color: white;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsappShares:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.Eventtitles {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 15px;
    font-size: 28px;
}

#Eventcontent {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 10px;
}

.see_more_detiles {
    color: var(--spiritual-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.see_more_detiles:hover {
    color: var(--spiritual-primary-dark);
}

.include-tags {
    background: var(--spiritual-bg-light);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid var(--spiritual-primary);
}

.include-tags p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.our-promise {
    margin-top: 25px;
}

.our-promise span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.our-promise p {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--text-muted);
}

.details-book-btn {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.details-btn,
.book-pandits-btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    flex: 1;
}

.details-btn {
    background: white;
    color: var(--spiritual-primary);
    border: 2px solid var(--spiritual-primary);
}

.details-btn:hover {
    background: var(--spiritual-bg-light);
}

.book-pandits-btn {
    background: var(--sacred-saffron);
    color: white;
    box-shadow: 0 4px 15px rgba(243, 116, 32, 0.3);
}

.book-pandits-btn:hover {
    background: var(--sacred-saffron-light);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .puja-details-modal-body {
        padding: 0 20px 30px;
    }

    .Eventtitles {
        font-size: 24px;
        margin-top: 15px;
    }
}

/* ========================================
   Review Block (Replaces WhatsApp Share)
   ======================================== */

.puja-short-review {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: linear-gradient(to right bottom, #fff, #fdfbf7);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--spiritual-primary);
    padding: 2px;
    background: white;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
}

.review-stars {
    font-size: 12px;
    color: var(--sacred-gold);
    display: flex;
    gap: 2px;
    margin-top: 2px;
}

.review-text {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
    line-height: 1.5;
    position: relative;
    padding-left: 10px;
    border-left: 2px solid var(--spiritual-primary-dark);
}

/* ========================================
   Puja Rituals List Formatting
   ======================================== */

#Eventservice ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

#Eventservice ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.4;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
    word-break: break-word;

}

#Eventservice ul li img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

@media (max-width: 768px) {
    #Eventservice ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   EventdetailsModal Styling
   ======================================== */

/* ===== Modal Container ===== */
.puja-details-modal-content {
    border-radius: 18px;
    overflow: hidden;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ===== Header ===== */
.detiles_modals_header {
    border-bottom: none;
    padding: 15px 20px;
}

.detiles_modals img {
    width: 18px;
    height: 18px;
}

/* ===== Body Spacing ===== */
.puja-details-modal-body {
    padding: 30px;
    max-height: 80vh;
    overflow: hidden;
    /* Changed from auto to hidden */
}

/* Make left column sticky */
.puja-details-modal-body .row>.col-lg-4 {
    position: sticky;
    top: 0;
    align-self: flex-start;
    max-height: 80vh;
    overflow-y: auto;
}

/* Make right column scrollable */
.puja-details-modal-body .row>.col-lg-8 {
    max-height: 75vh;
    overflow-y: auto;
    padding-right: 10px;
    padding-bottom: 30px;
}

/* Custom scrollbar for right column */
.puja-details-modal-body .row>.col-lg-8::-webkit-scrollbar {
    width: 6px;
}

.puja-details-modal-body .row>.col-lg-8::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.puja-details-modal-body .row>.col-lg-8::-webkit-scrollbar-thumb {
    background: #ff6b00;
    border-radius: 10px;
}

.puja-details-modal-body .row>.col-lg-8::-webkit-scrollbar-thumb:hover {
    background: #e55a00;
}

/* ===== Left Product Section ===== */
.puja-name-img {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.puja-name-img img {
    border-radius: 14px;
    object-fit: cover;
}

/* Puja Title */
.Eventtitles {
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

/* Rating */
.puja-name-img span {
    font-size: 14px;
    color: #777;
}

/* Share Button */
.whatsappShares {
    width: 100%;
    padding: 10px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.whatsappShares:hover {
    background: #1ebc59;
}

/* Visit Page Link */
.see_more_detiles {
    font-size: 14px;
    font-weight: 500;
    color: #ff6b00;
    text-decoration: none;
    cursor: pointer;
}

.see_more_detiles:hover {
    text-decoration: underline;
}

/* ===== Buttons ===== */
.details-book-btn {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.details-btn {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ff6b00;
    background: transparent;
    color: #ff6b00;
    font-weight: 500;
    transition: 0.3s ease;
}

.details-btn:hover {
    background: #ff6b00;
    color: #fff;
}

.book-pandits-btn {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #ff6b00, #ff8c42);
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
}

.book-pandits-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ===== Reviews Section ===== */
.puja-name-img+.mt-5 {
    background: #fafafa;
    padding: 20px;
    border-radius: 16px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.puja-name-img+.mt-5 h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.puja-name-img+.mt-5 p {
    font-size: 14px;
    color: #555;
}

.puja-name-img+.mt-5 small {
    color: #999;
}

/* ===== Right Section ===== */
.puja-name-details {
    padding: 10px 20px;
}

.puja-name-details p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Ritual Section */
.include-tags {
    background: #fffaf5;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #ffe3cf;
}

.include-tags span {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 20px;
    display: block;
}

/* Ritual Badges - Display as inline badges */
.ritual-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 20px;
    width: 100%;
}

.ritual-badges span,
.ritual-badges .ritual-badge {
    display: inline-block;
    background: #fff;
    border: 1px solid #ff6b00;
    color: #ff6b00;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: 0.2s ease;
}

.ritual-badges span:hover,
.ritual-badges .ritual-badge:hover {
    background: #ff6b00;
    color: #fff;
}

/* Handle UL/LI from JavaScript */
.ritual-badges ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ritual-badges ul li {
    display: inline-block;
    background: #fff;
    border: 1px solid #ff6b00;
    color: #ff6b00;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: 0.2s ease;
}

.ritual-badges ul li:hover {
    background: #ff6b00;
    color: #fff;
}

/* Devotee Reviews on Right Side */
.devotee-reviews-right {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 14px;
}

.devotee-reviews-right span {
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
    font-size: 20px;
}

/* Modal Review Container for Auto-Rotation */
.modal-review-container {
    position: relative;
    min-height: 120px;
}

.modal-review-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.modal-review-card.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

/* ===== Our Promise as Badges ===== */
.our-promise-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.promise-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #28a745;
    color: #28a745;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.promise-badge img {
    width: 18px;
    height: 18px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .puja-details-modal-body {
        padding: 20px;
    }

    .puja-name-details {
        padding: 0;
        margin-top: 25px;
    }

    .puja-name-img {
        margin-bottom: 20px;
    }

    .details-book-btn {
        flex-direction: column;
    }
}

/* ══════════════════════════════════════════
   ALL-PUJAS OFFCANVAS (#offcanvasBottom)
   Formerly allpujas-modal.css — moved here so it loads
   on ALL pages (mobile + desktop) via this single file.
   ══════════════════════════════════════════ */

/* ── Offcanvas shell ── */
.all-puja-offcanvas-bottom,
#staticBackdropBook,
#citiesOffcanvas {
    border-radius: 20px 20px 0 0 !important;
    min-height: 90dvh !important;
    height: 100dvh !important;
    height: -webkit-fill-available !important;
    max-height: 100dvh !important;
    max-height: -webkit-fill-available !important;
}

.offcanvas-header.all-puja-offcanvas {
    padding-right: 60px;
    padding-top: 0;
}

/* ── Flex layout — fills the full offcanvas height ── */
.modal-puja-categories {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: 100dvh !important;
    max-height: -webkit-fill-available !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #fff !important;
}

.modal-flex-header {
    flex: 0 0 auto !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.modal-flex-body {
    flex: 1 !important;
    display: flex !important;
    flex-direction: row !important;
    min-height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    margin-top: 4px !important;
}

/* ── Sidebar (category list) ── */
.allpujas_modal-sidebar {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    min-height: 90dvh !important;
    max-height: 100dvh !important;
    overflow-y: auto !important;
    background-color: #f8f8f8 !important;
    border-right: 1px solid #eee !important;
}

/* ── Main puja grid area ── */
.allpujas_modal-main {
    flex: 1 !important;
    height: 100% !important;
    overflow-y: auto !important;
    min-width: 0 !important;
}

.allpujas_modal-body {
    padding: 0 10px !important;
    margin: 0 !important;
}

/* ── Hide scrollbars ── */
.allpujas_modal-sidebar,
.allpujas_modal-main,
.allpujas_modal-body {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.allpujas_modal-sidebar::-webkit-scrollbar,
.allpujas_modal-main::-webkit-scrollbar,
.allpujas_modal-body::-webkit-scrollbar,
.all-pujass-row::-webkit-scrollbar { display: none !important; }

/* ── Modal header row ── */
.allpujas_modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-pujas-heading {
    font-family: var(--np-font, 'Noto Sans', sans-serif);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
}

/* ── Shared close button used across all offcanvas modals ── */
.glm-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(62, 39, 35, .08);
    border: none;
    color: var(--np-text-dark, #3E2723);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    padding: 0;
    line-height: 1;
    z-index: 10;
}

.glm-close:hover { background: rgba(62, 39, 35, .15); }

/* ── In-modal search bar ── */
.modalSearchbar {
    position: relative;
    display: flex !important;
    width: 100% !important;
    border: 1.5px solid #e0d6cc;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.modalsearchbarInput {
    border: 0 !important;
    color: #3E2723 !important;
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

.modalsearchbarInput::placeholder {
    color: #aaa !important;
}

.modalsearchbarInput:focus,
.modalsearchbarInput:focus-visible,
.modalsearchbarInput:active {
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    background-color: transparent !important;
}

.modalSearchbar:focus-within {
    border-color: #F37420;
    box-shadow: 0 0 0 3px rgba(243, 116, 32, 0.12);
}

/* ── Category icon column ── */
.col-12.cataegotytabss {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ── Cities offcanvas — flex layout ── */
#citiesOffcanvas {
    display: flex !important;
    flex-direction: column !important;
}

#citiesOffcanvas .offcanvas-body {
    flex: 1 !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    scrollbar-width: none !important;
}

#citiesOffcanvas .offcanvas-body::-webkit-scrollbar { display: none !important; }

#citiesOffcanvas .vp-pills-wrap {
    max-height: none !important;
    flex-wrap: wrap !important;
}

#citiesOffcanvas ul.cities-list li a {
    color: var(--np-text-dark, #3E2723) !important;
    text-decoration: none !important;
}

#citiesOffcanvas ul.cities-list li a span {
    color: var(--np-text-dark, #3E2723) !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .all-puja-offcanvas-bottom,
    #staticBackdropBook,
    #citiesOffcanvas {
        border-radius: 0;
    }

    .offcanvas-header.all-puja-offcanvas {
        padding-right: 30px;
        padding-bottom: 0;
    }

    .modal-puja-categories {
        padding: 5px !important;
    }
}

/* ── Desktop offcanvas layout (≥769px) ───────────────────────────────────────
   Bootstrap offcanvas uses display:flex flex-direction:column but only
   .offcanvas-body gets overflow-y:auto. The desktop #offcanvasBottom uses
   .modalallPuja-categories (not .offcanvas-body), so we must provide the
   scroll handling manually.
   ────────────────────────────────────────────────────────────────────────── */
@media (min-width: 769px) {
    /* Moderate height on wide screens — full-screen is excessive on desktop */
    .all-puja-offcanvas-bottom {
        height: 85vh !important;
        min-height: 60vh !important;
        max-height: 90vh !important;
    }

    /* Content wrapper: fill the offcanvas height and scroll */
    .modalallPuja-categories {
        height: 100%;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: #ddd transparent;
    }

    .modalallPuja-categories::-webkit-scrollbar { width: 4px; }
    .modalallPuja-categories::-webkit-scrollbar-track { background: transparent; }
    .modalallPuja-categories::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }
}

/* ── City search row (cities modal + offcanvas) ── */
.np-city-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px 6px;
    background: var(--np-bg-cream, #FFF8F0);
}
.np-city-search-wrap .np-city-search-icon {
    font-size: 20px;
    color: var(--np-text-mid, #6B5B4F);
    flex-shrink: 0;
}
.np-city-search-input {
    flex: 1;
    border: 1px solid #e0d6ce;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 15px;
    font-family: var(--np-font, 'Noto Sans', sans-serif);
    color: var(--np-text-dark, #3E2723);
    background: #fff;
    outline: none;
    min-width: 0;
}
.np-city-search-input:focus {
    border-color: var(--np-saffron, #F37420);
    box-shadow: 0 0 0 2px rgba(243,116,32,.15);
}
.np-city-gps-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--np-saffron, #F37420);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}
.np-city-gps-btn:disabled { opacity: .5; }
.np-city-gps-btn .material-symbols-outlined { font-size: 20px; }

/* Google Places Autocomplete dropdown — must sit above Bootstrap modal.
   JS moves it to document.body so it escapes the modal stacking context;
   Google's native position:absolute + absolute page coords work correctly from there. */
.pac-container {
    z-index: 10000010 !important;
}

/* ══════════════════════════════════════════
   CITY VISIT ACTION BOX
   ══════════════════════════════════════════ */
.np-city-visit-box {
    padding: 20px 0 8px;
}
.np-city-visit-inner {
    background: #fff;
    border: 1.5px solid #F37420;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
}
.np-city-visit-label {
    margin: 0 0 6px;
    font-size: 14px;
    color: #6B5B4F;
    font-weight: 500;
}
.np-city-visit-name {
    display: inline;
    font-size: 18px;
    font-weight: 700;
    color: #F37420;
}
.np-city-visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #b5310a 0%, #e05515 50%, #f7971e 100%);
    color: #fff;
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    margin: 14px 0 12px;
    transition: filter .2s;
}
.np-city-visit-btn:hover {
    filter: brightness(1.08);
    color: #fff;
    text-decoration: none;
}
.np-city-visit-btn .material-symbols-outlined {
    font-size: 18px;
}
.np-city-visit-reset {
    background: none;
    border: none;
    color: #6B5B4F;
    font-size: 13px;
    cursor: pointer;
    padding: 4px 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-radius: 6px;
    transition: background .15s, color .15s;
}
.np-city-visit-reset:hover {
    background: rgba(243,116,32,.08);
    color: #F37420;
}
.np-city-visit-reset .material-symbols-outlined {
    font-size: 16px;
}

/* ══════════════════════════════════════════
   CITIES OFFCANVAS / MODAL — MINIMALISTIC REDESIGN
   Inspired by .globalMobileLoginModal (GLM) pattern.
   Applies to: #citiesOffcanvas (mobile) + #citiesmodal (desktop)
   ══════════════════════════════════════════ */

/* ─── Shared header ─── */
.np-cities-header {
    background: #fff;
    padding: 22px 20px 14px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #F0E8E0;
    flex-shrink: 0;
}
.np-cities-header__icon {
    font-size: 26px;
    color: var(--np-saffron, #F37420);
    display: block;
    margin: 0 auto 8px;
}
.np-cities-header__title {
    font-size: 17px;
    font-weight: 800;
    color: var(--np-text-dark, #3E2723);
    margin: 0 0 3px;
    font-family: var(--np-font, 'Noto Sans', sans-serif);
}
.np-cities-header__sub {
    font-size: 12px;
    color: var(--np-text-mid, #6B5B4F);
    margin: 0;
    font-family: var(--np-font, 'Noto Sans', sans-serif);
}

/* ─── Search bar: white bg + border-bottom separator ─── */
#citiesOffcanvas .np-city-search-wrap,
#citiesmodal .np-city-search-wrap {
    background: #fff;
    padding: 12px 16px;
    border-bottom: 1px solid #F0E8E0;
    flex-shrink: 0;
}

/* ─── Body padding ─── */
#citiesOffcanvas .offcanvas-body {
    padding: 14px 16px 24px !important;
}
#citiesmodal .modal-body {
    padding: 14px 20px 24px;
}

/* ─── Desktop modal: clean card ─── */
#citiesmodal .modal-content {
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 8px 40px rgba(62,39,35,.14);
}
/* Hide the old gradient header */
#citiesmodal .home-modal-header { display: none !important; }

/* ─── Location strip ─── */
.np-city-loc-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--np-bg-cream, #FFF8F0);
    border-radius: 10px;
    padding: 8px 14px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--np-text-mid, #6B5B4F);
    font-family: var(--np-font, 'Noto Sans', sans-serif);
}
.np-city-loc-strip__icon {
    font-size: 15px;
    color: var(--np-saffron, #F37420);
}
.np-city-loc-strip__name {
    color: var(--np-text-dark, #3E2723);
    font-weight: 700;
}

/* ─── City chips container ─── */
.np-city-chips-wrap { margin-top: 2px; }
.np-city-chips__label {
    font-size: 11px;
    font-weight: 700;
    color: #9E8B80;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0 0 10px;
    font-family: var(--np-font, 'Noto Sans', sans-serif);
}
.np-city-chips__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ─── Visit box success message ─── */
.np-city-visit-success {
    font-size: 13px;
    font-weight: 600;
    color: #059669;
    margin: 0 0 8px;
}


/* ===== desktop-header-new.css ===== */
/* ========================================
   Header CSS - Extracted from main-style.css and header.php
   ======================================== */

/* Header Container */
.header_allPujas {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999999;
    background-color: #fff;
}

body {
    padding-top: 89px;
}

/* Main Header */
.main_header {
    width: 100%;
    align-items: center;
    background-color: #fff;
    padding: 12px;
    justify-content: space-between;
    display: flex;
    gap: 12px;
}

/* Nav takes all available space and centers its items */
.header-menu-items {
    flex: 1;
    justify-content: center;
    min-width: 0;
}

/* Right section (location + language + button) never shrinks */
.language_loction {
    flex-shrink: 0;
}

.main_header_ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Header Logo */
.headerLogo img {
    max-height: 45px !important;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}

.logo span {
    font-size: 24px;
    color: #e63946;
    font-weight: 700;
    margin-left: 10px;
}

/* Header Search Bar */
.headerSearchbar {
    align-items: center;

    border-radius: 25px;
    padding: 5px 10px;
    width: 30%;
    position: relative;
    height: max-content;
    display: flex;
}

.headerSearchbar i {
    font-size: 16px;
}

.searchbarInput {
    font-size: 14px;
    border: 0;
    color: #7f7b7a;
    transition: padding .4s;
    padding: 4px 0;
}

.searchbarInput:focus,
.modalsearchbarInput:focus {
    outline: 0;
    box-shadow: none;
}

.searchbarInput::placeholder {
    transition: transform .4s, opacity .4s;
    transform: translateY(0);
    opacity: 1;
}

.searchbarInput:focus::placeholder {
    transform: translateY(-20px);
    opacity: 0;
}

.search_span_input {
    display: flex;
    margin-left: 30px;
    align-items: center;
}

span#searchLabel {
    width: 100%;
    color: #7f7b7a;
    max-width: max-content;
}

.magnifying-glass-xmark {
    position: absolute;
    top: 13px;
}

/* Header Navigation Link */
.header-nav-link {
    font-size: 16px;
    font-weight: 500;
}

a.nav-link.nav-color {
    padding: .5rem 1rem;
    font-weight: 500;
}

/* Language and Location */
.language,
.location {
    font-size: 14px;
    color: #333;
}

/* Dropdown Menu */
.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    z-index: 1000;
}

.dropdown-menu span {
    font-weight: 700;
    display: block;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu ul li {
    padding: 10px;
    cursor: pointer;
    font-size: 14px !important;
    color: #6c6c6c;
}

.dropdown-menu ul li:hover {
    background-color: #f0f0f0;
}

.dropdown-menu li a:hover {
    background-color: #F37420;
    color: #fff !important;
    padding-left: 5px;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    width: max-content;
}

/* Trending Pujas Dropdown */
div#trendingPujas {
    padding: 15px;
    border: 0;
    border-radius: 20px;
    box-shadow: 1px 7px 12px 4px rgba(0, 0, 0, .1);
    margin-top: 15px;
    overflow: auto;
    height: 400px;
}

.trending-Pujas span {
    font-weight: 700;
    font-size: 18px;
}

.all-trending-Pujas {
    display: flex;
    flex-wrap: wrap;
}

.all-trending-Pujas p {
    margin: 10px;
    border: 1px solid #d4d3d3;
    padding: 6px 8px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px !important;
}

.all-trending-Pujas p a {
    color: #000;
}

/* Mobile Menu Icon */
.menu-icon {
    flex-direction: column;
    cursor: pointer;
}

.menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
}

/* Mobile Menu — base styles in css/desktop/components/modals.css (sync) */

.mobile_menu_items {
    overflow-y: auto;
}

#mobile-menu ul {
    list-style: none;
    padding: 20px;
}

#mobile-menu ul li {
    margin-bottom: 20px;
}

#mobile-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

/* mobile_menu_heading, mobile_menu_items_content, mobile_menu_close,
   left/right_items_content, user_name, android_ios_app — moved to modals.css (sync) */

.login_icon_text {
    border-radius: 5px;
    border: 1px dashed #7f7b7a;
    padding: 10px;
    justify-content: space-between;
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    background-color: #fff;
    display: flex;
}

.login_icon {
    border: 1px solid #2f0808;
    border-radius: 50%;
    display: flex;
    align-items: center;
    height: 30px;
    width: 30px;
    justify-content: center;
    color: #F37420;
    font-size: 18px;
}

.mobile_loction { display: none; }
.android_ios_app_img { display: flex; }

/* All Pujas Section */
.all-pujass-section {
    position: sticky;
    top: 0;
    z-index: 9;
    width: 100%;
    padding: 0;
    background-color: #fff;
}

section.all-pujass-section.mt-0.mt-lg-2.all-pujass-section_1 {
    top: 80px !important;
}

.all-pujass-row {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 15px 0;
    overflow-x: auto;
    white-space: nowrap;
}

.all-pujass-row::-webkit-scrollbar {
    width: 10px;
    height: 5px;
    display: none;
}

.all-pujass-row::-webkit-scrollbar-track {
    background: #d9d9d9;
    border-radius: 5px;
    display: none;
}

.all-pujass-row::-webkit-scrollbar-thumb {
    background: #F37420;
    border-radius: 5px;
    display: none;
}

.all_puja_modal,
.all_puja_modal_2 {
    display: inline-block;
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
}

.puja-name {
    font-family: Noto Sans;
    font-size: 14.64px;
    font-weight: 500;
    line-height: 20.5px;
    color: #F37420;
    margin-top: 10px;
}

.aall-puja-item .all_puja_modal .puja-name {
    color: #F37420;
    margin-top: 8px;
}

/* Modern Offcanvas Design */
.all-puja-offcanvas-bottom {
    border-radius: 0;
    height: 100vh !important;
    max-height: 100vh !important;
    background-color: #ffffff;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    border: none;
}

.offcanvas-header.all-puja-offcanvas {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    /* Resetting the 0 padding */
}

.offcanvas-header.all-puja-offcanvas .btn-close {
    opacity: 0.8;
    transition: opacity 0.3s ease;
    padding: 0.5rem;
}

.offcanvas-header.all-puja-offcanvas .btn-close:hover {
    opacity: 1;
}

/* Category Filters Styling */
.filters-categories-header p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    border-left: 4px solid var(--sacred-saffron);
    padding-left: 10px;
}

.filters-categories-body {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filters-categories-item {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filters-categories-item:hover {
    background-color: #fff1f1;
    border-color: var(--sacred-saffron);
    color: var(--sacred-saffron);
    transform: translateY(-2px);
}

.filters-categories-item.active {
    background-color: var(--sacred-saffron);
    color: #fff;
    border-color: var(--sacred-saffron);
    box-shadow: 0 4px 10px rgba(243, 116, 32, 0.2);
}

/* Modal Search Bar Enhancements */
.headerSearchbar.modalSearchbar {
    width: 100%;
    max-width: 400px;

    padding: 8px 15px;
    border-radius: 50px;
    margin-left: auto;
    /* Push to right on large screens */
}

.headerSearchbar.modalSearchbar:focus-within {
    background-color: #fff;
    border-color: var(--sacred-saffron);

}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .all-puja-offcanvas-bottom {
        height: 100vh !important;
        max-height: 100vh !important;
    }

    /* Make the services grid scrollable inside the modal */
    .all-puja-offcanvas-bottom #serviceModalBody {
        max-height: calc(100vh - 220px);
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 5px;
        margin-bottom: 20px;
    }

    .offcanvas-header.all-puja-offcanvas {
        padding: 15px;
    }

    .filters-categories-item {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* Desktop Scrolling Logic */
@media (min-width: 769px) {
    .all-puja-offcanvas-bottom #serviceModalBody {
        max-height: calc(100vh - 250px);
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}

/* Scrollbar Styling for a better look */
.all-puja-offcanvas-bottom #serviceModalBody::-webkit-scrollbar {
    width: 6px;
}

.all-puja-offcanvas-bottom #serviceModalBody::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.all-puja-offcanvas-bottom #serviceModalBody::-webkit-scrollbar-thumb {
    background: var(--sacred-saffron);
    border-radius: 10px;
}

.all-puja-offcanvas-bottom #serviceModalBody::-webkit-scrollbar-thumb:hover {
    background: var(--brand-red);
}

/* Pandit Container */
.panditContainer {
    padding-right: 5rem;
    padding-left: 5rem;
    width: auto;
    box-shadow: 4px 4px 4px 0 #00000021;
}

.panditContainer-2,
.panditContainer-3 {
    margin-left: 5rem;
    margin-right: 5rem;
    width: auto;
}

/* Navbar */
.navbar {
    padding: 10px 0;
    box-shadow: 0 4px 4px 0 #00000021;
    background-color: #ffff;
}

.navbar-collapse {
    flex-grow: unset;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-icon img {
    max-width: 100%;
    height: auto;
}

/* User Profile Header */
.user_name_profile_header {
    justify-content: space-between;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user_name_profile {
    background: #fff;
    padding: 10px 30px 10px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.userName span,
.userLoction span,
.user_address_header span {
    font-family: Noto Sans;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    text-align: left;
    color: #292321;
}

.userLoction {
    padding: 20px;
}

.location-name {
    list-style: none;
}

/* Topbar (from header.php inline styles) */
.topbar {
    padding: 5px 0;
    color: #fff;
    background: #F37420;
    position: relative;
    text-align: center;
    z-index: 100000;
}

.topbar p {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #fff;
    margin: 5px 0px !important;
    display: inline-block;
}

.topbar-border-span {
    border: 2px dotted #fff;
    padding: 6px;
    border-radius: 50px;
    font-weight: 600;
}

.topbar-border-span1 {
    font-size: 14px;
}

.btn-subscribe {
    font-weight: 600 !important;
    line-height: 1.5;
    text-align: center;
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 3.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border: 1px solid #fff !important;
    background: none !important;
    box-shadow: -1px 1px 9px 1px #fff;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.btn-subscribe:focus {
    outline: 0 !important;
    box-shadow: -1px 1px 9px 1px #fff !important;
}

.shopify-close {
    position: absolute;
    right: 15px;
    top: 45%;
    font-size: 14px;
    padding: 5px;
    line-height: 14px;
    transform: translateY(-50%);
    cursor: pointer;
}

svg {
    fill: #fff;
    height: 20px;
}

.puja-text {
    font-size: 15px;
}

/* Nav Items */
.nav-item {
    text-align: left;
}

li#menu-item-87,
li#menu-item-6108 {
    position: relative;
}

li#menu-item-87 .nav-color::after,
#menu-item-6108 .nav-color::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.dropdown-menu .nav-color::after {
    border-top: none !important;
    border-right: none !important;
    content: "";
}

/* Countdown Box (from header.php inline styles) */
.countdown-box {
    background-color: #f9f9f9;
    padding: 4px 20px;
    border-radius: 10px;
    min-width: 80px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.countdown-time {
    font-size: 1.5rem;
    color: rgb(240 50 46) !important;
    display: block;
}

.countdown-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    margin-top: 4px;
}

.shani-header {
    border-bottom: none !important;
    padding: 12px 16px 0px;
}

/* Responsive Styles */
@media (max-width: 767px) {

    header .language,
    header .location,
    header .search {
        display: none;
    }

    .search input {
        width: 120px;
    }

    .menu-icon {
        display: flex;
    }
}

@media (max-width: 576px) {
    .countdown-box {
        padding: 10px 14px;
        min-width: 65px;
    }

    .countdown-time {
        font-size: 1.5rem;
    }
}

@media (max-width: 360px) {
    .countdown-box {
        padding: 0px 10px;
        min-width: 50px;
    }

    .countdown-time {
        font-size: 1rem;
    }
}

/* New Header Menu Styles */
.header-menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-menu-item a {
    font-size: 15px;
    font-weight: 600;
    color: #292321;
    text-transform: uppercase;
    font-family: 'Noto Sans', sans-serif;
    transition: color 0.3s ease;
}

.header-menu-item a:hover {
    color: #F37420;
}

/* Header Buttons */
.btn-login {
    border: 1px solid #F37420;
    color: #F37420;
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 600;
    font-size: 14px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #F37420;
    color: #fff;
}

.btn-book-pandit {
    background: #F37420;
    color: #fff;
    border: 1px solid #F37420;
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-book-pandit:hover {
    background: #fff;
    color: #F37420;
}


/* ========================================
   Saffron Theme Updates
   ======================================== */



/* Scoped under .header_allPujas to beat Bootstrap's .nav-link specificity */
.header_allPujas .header-theme-link,
.header_allPujas .header-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0;
    line-height: 1;
    margin-top: 0;
}

.header_allPujas .header-theme-link {
    color: var(--text-dark) !important;
    font-size: 14.64px;
    font-weight: 500;
}

.header_allPujas .puja-name {
    color: var(--text-dark) !important;
    font-size: 14.64px;
    font-weight: 500;
    margin-top: 0;
    line-height: 1;
}

.header_allPujas .header-theme-link:hover {
    color: #d65a0c !important;
}

.header-theme-link .material-symbols-outlined {
    font-size: 18px;
    line-height: 1;
    vertical-align: 0;
}

/* Astrology Dropdown */
.header-dropdown-wrap {
    position: relative;

}

.header-dropdown-menu {
    display: none;
    position: absolute;
    /* top: 100% means it starts right at the bottom of the padded wrap — no gap */
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 160px;
    z-index: 9999;
    overflow: hidden;
    border: 1px solid #f0e8df;
}

.header-dropdown-wrap:hover .header-dropdown-menu {
    display: block;
}

.header-dropdown-item {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #292321 !important;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.header-dropdown-item:hover {
    background: #fff5ee;
    color: #F37420 !important;
}

.header-dropdown-item+.header-dropdown-item {
    border-top: 1px solid #f5ede6;
}

/* Filled Button - Matches .view-all-cities-btn */
.btn-theme-filled {
    display: inline-flex;
    align-items: center;
    background: var(--sacred-saffron);
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    /*box-shadow: 0 4px 15px rgba(243, 116, 32, 0.3);*/
    border: none;
}

.btn-theme-filled:hover {
    background: var(--sacred-saffron-light);
    transform: translateY(-2px);
    color: #fff;
    /*box-shadow: 0 6px 20px rgba(243, 116, 32, 0.4);*/
}

.btn-theme-filled::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-theme-filled:hover::after {
    transform: translateX(5px);
}

/* Outline Button - Matches .seeAllBtn */
.btn-theme-outline {
    color: #000;
    border: 1px solid #000;
    font-weight: 700;
    padding: 3px 5px 3px 15px;
    /* Matches exact "See All Reviews" padding */
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    background: transparent;
}

.btn-theme-outline:hover {
    background: #f0f0f0;
    color: #000;
}

@media (max-width: 1200px) {
    .panditContainer {
        padding-right: 0;
        padding-left: 0;
    }
    .main_header {
        padding: 10px 8px;
        gap: 8px;
    }
    .menu-item.me-3 {
        margin-right: 0.5rem !important;
    }
    .header_allPujas .header-theme-link,
    .header_allPujas .puja-name {
        font-size: 13px !important;
    }
    .main_header_ul {
        gap: 10px;
    }
    .headerLogo img {
        max-height: 40px !important;
    }
    .header-nav-link.me-5 {
        margin-right: 1rem !important;
    }
}

@media (max-width: 1024px) {
    .main_header {
        padding: 8px 6px;
        gap: 6px;
    }
    .menu-item.me-3 {
        margin-right: 0.3rem !important;
    }
    .header_allPujas .header-theme-link,
    .header_allPujas .puja-name {
        font-size: 12px !important;
    }
    .main_header_ul {
        gap: 8px;
    }
    /* "Book a Pandit" — keep it visible but compact */
    .np-btn {
        padding: 8px 14px !important;
        font-size: 12px !important;
        white-space: nowrap;
    }
    .real-location-fetch {
        max-width: 60px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
        vertical-align: middle;
    }
    .headerLogo img {
        max-height: 36px !important;
    }
}

.display-5.pujas-heading {
    font-family: Noto Sans;
    font-size: 2rem;
    font-weight: 700;
    line-height: 52.8px;
    color: var(--text-dark);
}

/* ========================================
   Puja Service Card Styles (Moved from home-desktop.css)
   ======================================== */

.puja-service-card {
    background: var(--sacred-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: auto;
    position: relative;
}

.puja-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.puja-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.puja-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.puja-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.puja-service-card:hover .puja-card-image img {
    transform: scale(1.08);
}

.puja-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--sacred-saffron);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--sacred-white);
    z-index: 1;
}

.puja-card-content {
    padding: 20px;
}

.puja-card-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.puja-card-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.puja-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.puja-rating i {
    color: var(--sacred-gold);
    font-size: 14px;
}

.rating-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-left: 5px;
}

.puja-conducted {
    font-size: 13px;
    color: var(--text-muted);
}

.puja-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.view-details-btn {
    background: transparent;
    color: var(--spiritual-primary);
    border: 1px solid var(--spiritual-primary);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-details-btn:hover {
    background: var(--spiritual-bg-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.15);
    border-color: var(--spiritual-primary);
}

.book-puja-btn {
    background: var(--sacred-saffron);
    color: var(--sacred-white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-puja-btn:hover {
    background: var(--sacred-saffron-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 116, 32, 0.3);
}

/* Profile button + slide-in menu styles — moved to css/desktop/components/modals.css (sync) */

/* Backdrop — base styles + is-open in css/desktop/components/modals.css (sync) */

/* ── Logo image ──────────────────────────────────────────────────────────── */
.main_logo {
    display: inline-block !important;
    object-fit: cover;
    height: 100%;
    width: auto !important;
}

/* ── Sticky header state ─────────────────────────────────────────────────── */
.fixed-top.is-sticky {
    position: fixed !important;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    backdrop-filter: blur(10px);
    animation: 0.35s ease-out slideDown;
}

@media only screen and (max-width: 1024px) {
    .main_logo.img-fluid { width: 150px !important; }
    .main_logo { max-height: fit-content !important; }
}

@media only screen and (max-width: 767px) {
    .main_header { box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.13); }
    .main_logo { aspect-ratio: 200/65; object-fit: contain; }
}

@media (min-width: 768px) and (max-width: 991px) {
    .main_header { box-shadow: none; }
    .panditContainer { padding-right: 2rem; padding-left: 2rem; }
    .header-nav-link { font-size: 13px; }
}

/* ===== new-header.css ===== */
/* ── Mobile slide-in menu ─────────────────────── */
#mobile-menu{transform:translateX(100%);transition:transform 0.3s ease;}
#mobile-menu.is-open{transform:translateX(0);}

/* Spiritual Theme normal*/
:root {
   
     --sacred-saffron: #F37420;
    --sacred-saffron-light: #F3AF42;
     --spiritual-primary: #DAA520;
    --spiritual-primary-dark: #B8860B;
    --spiritual-bg-light: #FFFBF5;
    --spiritual-bg-cream: #FFF8F0;
    --spiritual-text-dark: #3E2723;
    --spiritual-text-muted: #6B5B4F;
     --sacred-white: #FFFFFF;
     --spiritual-green-gradient: linear-gradient(135deg, #059669, #10B981);
     /*citis and puja services page green btn*/
     --green-gradient: linear-gradient(135deg, #4d9423, #6dbf3a);
     
      --primary-green: #519926;
}

/* Spiritual Theme Variables */
:root {
    --spiritual-primary: #DAA520;
    --spiritual-primary-dark: #B8860B;
    --spiritual-secondary: #7C3AED;
    --spiritual-secondary-dark: #6B46C1;
    --spiritual-accent: #14B8A6;
}

/* Hinduism-Themed Color Variables */
:root {
    --brand-red: var(--np-saffron);
    --brand-red-light: #a01d1d;
  
    --sacred-gold: #FFD700;
    --sacred-yellow: #EED062;
    --sacred-cream: #FFF8F0;
    --sacred-green: #4B9B5A;
    --text-dark: #3E2723;
    --text-muted: #6B5B4F;
}

/* ===== new-footer.css ===== */
﻿/* Spiritual Theme Variables */
:root {
    --spiritual-primary: #DAA520;
    --spiritual-primary-dark: #B8860B;
    --spiritual-secondary: #7C3AED;
    --spiritual-secondary-dark: #6B46C1;
    --spiritual-accent: #14B8A6;
    --spiritual-bg-light: #FFFBF5;
    --spiritual-bg-cream: #FFF8F0;
    --spiritual-text-dark: #3E2723;
    --spiritual-text-muted: #6B5B4F;
}

/* Hinduism-Themed Color Variables */
:root {
    --brand-red: var(--np-saffron);
    --brand-red-light: #a01d1d;
    --sacred-saffron: #F37420;
    --sacred-saffron-light: #F3AF42;
    --sacred-gold: #FFD700;
    --sacred-yellow: #EED062;
    --sacred-white: #FFFFFF;
    --sacred-cream: #FFF8F0;
    --sacred-green: #4B9B5A;
    --text-dark: #3E2723;
    --text-muted: #6B5B4F;
}




/* ==========================================================================
   NEW FOOTER STYLES
   ========================================================================== */

/* From root style.css */
.quick_links_footer a,
.quick_links_footer a:hover {
    color: #fff;
}

.footer-logo {
    max-width: 50vh !important;
}

.footer-heading {
    font-size: 24px;
    display: inline-block;
    margin-bottom: 10px;
    border-bottom: 1px solid;
}

.quick_links li {
    font-size: 14px !important;
    margin-bottom: 1px !important;
    list-style: none;
}

.quick_links li a {
    color: #ffffff !important;
}

.quick_links_footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.quick_links_footer li {
    list-style: none;
}

.pandit_copy_right {
    background-color: #f39b59 !important;
}

.footer-container {
    margin-top: 2rem;
    background-image: url(https://99pandit.com//wp-content/themes/ninetyninepandit/img/footerbg1.png) !important;
    background-size: cover !important;
    padding-top: 25%;
}

@media only screen and (max-width: 767px) {
    .quick_links_footer {
        display: block;
        padding: 0;
    }
}

/* Mobile Footer CTA */
.mobile-footer-cta {
    position: fixed;
    height: 45px;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 90;
}

.mobile-footer-cta__btn {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0;
    text-decoration: none;
    width: 50%;
    border-right: 1px solid;
    background: #e51251;
}

.mobile-footer-cta__btn i {
    margin-right: 5px;
}

.mobile-footer-cta__btn:last-child {
    margin-right: 0;
    background: #189d0e;
}

/* Privacy Policy */
.privacy-policy-mobile {
    display: block;
}

@media (max-width: 767px) {
    .privacy-policy-mobile {
        /* Mobile specific adjustments if any */
    }
}

.privacy-policy-decktop {
    /* Desktop specific adjustments if any */
}

/* From css/style.css */
.footer {
    position: relative;
}

.frame_1 {
    position: absolute;
    right: 0;
    top: 0;
    height: 290px;
}

.frame_2 {
    position: absolute;
    left: 0;
    top: 0;
    height: 290px;
    transform: scaleX(-1);
}

.footer-uper {
    height: 0 !important;
}

/* From css/home-desktop.css */
.puja-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.recentPost-cards-footer a {
    font-size: 18px;
    font-weight: 700;
    line-height: 26.4px;
    text-decoration: none;
    color: #000;
    font-family: Noto Sans;
    text-align: left;
}

/* New Footer Links Section (Verified Pandits, etc.) */
/* .links-footer-urls {
    display: block !important;
} */

.links-footer {
    text-align: right;
    color: #fff;
}

.blog-category-url {
    display: flex;
    align-items: center;
    gap: 9px;
    text-align: left;
    flex-wrap: wrap;
}

.links-footer-blog {
    text-align: left;
}

.links-footer-blog p {
    color: var(--text-dark) !important;
    font-size: 10px !important;
}

/* ── SEO text block (replaces old .links-footer-blog first div) ─────────── */
.np-footer-seo {
    margin-top: 0.75rem;
    padding: 0.875rem 1rem;
    background: #FFFBF5;
    border-radius: 8px;
    border-left: 3px solid #F37420;
}

.np-footer-seo__block {
    padding-bottom: 0.625rem;
    margin-bottom: 0.625rem;
    border-bottom: 1px solid rgba(243, 116, 32, 0.15);
}

.np-footer-seo__block:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.np-footer-seo__heading {
    display: block;
    font-size: 0.8125rem;   /* 13px */
    font-weight: 600;
    color: #3E2723 !important;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.np-footer-seo__text {
    font-size: 0.75rem;     /* 12px */
    line-height: 1.65;
    color: #6B5B4F !important;
    margin: 0;
}

.links-footer-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: end;
}

.links-footer-icon span {
    cursor: pointer;
    width: 35px;
    height: 35px;
    background-color: var(--np-saffron);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.links-footer-urls a {
    color: var(--text-dark) !important;
    font-size: 10px;
    text-decoration: underline !important;
}

.links-footer-icon-txt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.links-footer-icon-txt h3 {
    color: var(--text-dark) !important;
    font-size: 20px;
    font-family: 'Noto Sans', sans-serif;
}

.links-footer-blog h4 {
    font-size: 14px;
    font-family: 'Noto Sans', sans-serif;
}

.footer-category-group .footer-category-title {
    color: var(--text-dark) !important;
    font-size: 16px;
    margin-top: 15px;
}

.blog-category-collapsible {
    line-height: 1.6;
    max-height: calc(1.6em * 3);
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.blog-category-collapsible.expanded {
    max-height: 5000px;
}

.see-more-toggle {
    background: none;
    border: none;
    color: var(--text-dark) !important;
    font-size: 13px;
    cursor: pointer;
    margin-top: 6px;
    padding: 0;
    text-decoration: underline;
}

.footer-ll {
    color: var(--text-dark) !important;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .links-footer-icon-txt h3 {
        font-size: 15px;
    }

    .links-footer-blog h4 {
        font-size: 12px !important;
    }

    .links-footer-blog p {
        color: var(--np-saffron);
        font-size: 9px !important;
    }

    .links-footer-urls a {
        font-size: 9px !important;
    }

    .blog-category-url {
        gap: 6px;
    }

    .footer-category-group .footer-category-title {
        font-size: 14px;
    }

    .links-footer-icon span {
        cursor: pointer;
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
}

.footer-quick-links .quick_links_footer {
    margin-bottom: 0;
}

.footer-quick-links .quick_links_footer li {
    font-size: 13px !important;
}

.puja_cards_btns {
    background: linear-gradient(135deg, var(--np-saffron) 0%, var(--np-saffron) 100%);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.mobilecardbody {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.footer-text {
    margin-top: 50px;
    color: #666;
    font-size: 14px;
}

.footer-tagline {
    font-size: 13px;
    margin-top: 6px;
}

.footer-links-show,
.footer-links-show-1,
.footer-links-show-2,
.footer-links-show-3 {
    position: relative;
    top: 5px;
    display: flex;
    justify-content: space-between;
    font-size: clamp(0.75rem, 2.5vw, 0.875rem) !important;
}

.mobile-border {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.mobile-border:nth-child(4) {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.pandit-for-reg-mobile {
    display: none;
}

@media (max-width: 767px) {
    .pandit-for-reg-mobile {
        display: block;
    }
}

.book_pandit.btnIndia {
    position: fixed !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9999 !important;

    padding: 16px 28px !important;
    border-radius: 50px 0 0 50px !important;
    cursor: pointer !important;
    overflow: hidden !important;

    background: linear-gradient(135deg, #059669, #10B981) !important;
    box-shadow: -8px 10px 30px rgba(16, 185, 129, 0.35) !important;
    transition: all 0.4s ease !important;

    animation: autoAttention 10s infinite !important;
    width: auto;
    writing-mode: tb;

}

/* Remove red background */
.book_pandit.btnIndia .pandit_icon {
    background: transparent !important;
    background-color: transparent !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* Real hover still works */
.book_pandit.btnIndia:hover {
    padding-right: 40px !important;
    box-shadow: -12px 15px 35px rgba(16, 185, 129, 0.45) !important;
}


/* 🔥 Smart Attention Animation */
@keyframes autoAttention {

    /* ===== START BURST (0s–4s) ===== */
    0% {
        padding-right: 28px;
    }

    5% {
        padding-right: 40px;
    }

    10% {
        padding-right: 28px;
    }

    15% {
        padding-right: 40px;
    }

    20% {
        padding-right: 28px;
    }

    25% {
        padding-right: 40px;
    }

    30% {
        padding-right: 28px;
    }

    /* ===== Calm Period ===== */
    31% {
        padding-right: 28px;
    }

    /* ===== Auto Hover at 9s ===== */
    90% {
        padding-right: 40px;
    }

    95% {
        padding-right: 28px;
    }

    100% {
        padding-right: 28px;
    }
}

.bg-saffron {
    background: var(--sacred-saffron) !important;
}

.btn-saffron {
    background: var(--sacred-saffron) !important;
}

/* ── Social links ─────────────────────────────────────────────────────────── */
.social_links li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.social_links li a {
    height: 40px;
    width: 40px;
    padding: 10px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ── Pandit registration links ───────────────────────────────────────────── */
.pandit_registration li a {
    display: inline;
    width: 100%;
}

.pandit_registration li {
    margin-right: 0;
}

/* ── Quick links list ────────────────────────────────────────────────────── */
.quick_links {
    padding-left: 0;
}

/* ── Footer quick-links bar ──────────────────────────────────────────────── */
.footer-quick-links .quick_links_footer {
    margin-bottom: 0;
}

.footer-quick-links .quick_links_footer li {
    font-size: 13px !important;
}

.desktop-footer-links li {
    color: #fff !important;
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
    .footer-heading { font-size: 20px; }
}

/* ===== footer.css ===== */
/*
 * Desktop Footer CSS
 * File     : css/desktop/footer.css
 * Loaded by: template-parts/responsive/header.php
 * Replaces : css/homepage/new-footer.css (footer-specific rules)
 *
 * BEM-adjacent classes (legacy, no np- prefix):
 *   footer-container     — main footer dark bg section
 *   pandit_copy_right    — orange copyright bar
 *   footer-heading       — column headings (white)
 *   footer-logos-mobile  — logo image (desktop footer)
 *   social_links         — social icon list
 *   quick_links_footer   — copyright bar nav ul
 *   desktop-footer-links — same ul (alias)
 *   links-footer-*       — SEO link section (3rd footer)
 *   footer-ll            — link group headings
 */

/* ============================================================
   BASE — HIDE MOBILE-ONLY FOOTER SECTIONS ON DESKTOP
   Source: style.backup.css lines 1640–1665 (base level)
   ============================================================ */
.contact-info-mobile,
.quick_links_mobile,
.social_links_mobile,
.pandit-for-reg-mobile {
    display: none !important;
}

/* Hide WhatsApp enquire button on desktop — keep "Book A Pandit" */
.enquire_now {
    display: none !important;
}

/* ============================================================
   FOOTER CONTAINER — main dark section
   ============================================================ */
.footer-container {
    margin-top: 2rem;
    background: linear-gradient(135deg, #7e1515 0%, #b5310a 60%, #d4621c 100%);
}

/* Decorative top strip — restore visibility (was set to height:0 in new-footer.css) */
.footer-uper {
    height: auto;
}

/* ============================================================
   FOOTER HEADING — column titles
   ============================================================ */
.footer-heading {
    font-size: 24px;
    display: inline-block;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* ============================================================
   LOGO & SOCIAL SECTION
   ============================================================ */
.footer-logos-mobile {
    height: auto;
    max-width: 170px;
}

.social_links {
    list-style: none;
    padding-left: 0;
}

.social_links li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.social_links li a {
    height: 40px;
    width: 40px;
    padding: 10px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================================================
   QUICK LINKS LIST
   ============================================================ */
.quick_links {
    padding-left: 0;
}

.quick_links li {
    font-size: 14px !important;
    margin-bottom: 1px !important;
    list-style: none;
}

.quick_links li a {
    color: #ffffff !important;
    text-decoration: none;
}

/* ============================================================
   PANDIT REGISTRATION LINKS
   ============================================================ */
.pandit_registration li a {
    display: inline;
    width: 100%;
}

.pandit_registration li {
    margin-right: 0;
}

/* ============================================================
   COPYRIGHT BAR (pandit_copy_right)
   ============================================================ */
.pandit_copy_right {
    background-color: #f39b59 !important;
}

/* ── Copyright bar nav (footer-quick-links) ──────────────────────────────── */
.footer-quick-links .quick_links_footer {
    display: flex;
    /* justify-content: flex-end; */
    flex-wrap: wrap;
    margin-bottom: 0;
}

.footer-quick-links .quick_links_footer li {
    list-style: none;
    font-size: 13px !important;
}

.quick_links_footer a,
.quick_links_footer a:hover {
    color: #fff;
}

.desktop-footer-links li {
    color: #fff !important;
}

/* ============================================================
   NEW FOOTER — SEO links section (3rd footer block)
   ============================================================ */
.links-footer {
    text-align: right;
    color: #fff;
}

.links-footer-icon-txt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.links-footer-icon-txt h3 {
    color: var(--text-dark, #3E2723) !important;
    font-size: 20px;
    font-family: 'Noto Sans', sans-serif;
}

.links-footer-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.links-footer-icon span {
    cursor: pointer;
    width: 35px;
    height: 35px;
    background-color: var(--np-saffron, #F37420);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.links-footer-blog {
    text-align: left;
}

.links-footer-blog p {
    color: var(--text-dark, #3E2723) !important;
    font-size: 10px !important;
}

.links-footer-blog h4 {
    font-size: 14px;
    font-family: 'Noto Sans', sans-serif;
}

.blog-category-url {
    display: flex;
    align-items: center;
    gap: 9px;
    text-align: left;
    flex-wrap: wrap;
}

.links-footer-urls a {
    color: var(--text-dark, #3E2723) !important;
    font-size: 10px;
    text-decoration: underline !important;
}

.footer-ll {
    color: var(--text-dark, #3E2723) !important;
    font-size: 16px;
    font-weight: 500;
}

.footer-category-group .footer-category-title {
    color: var(--text-dark, #3E2723) !important;
    font-size: 16px;
    margin-top: 15px;
}

/* ── Collapsible link list ──────────────────────────────────────────────── */
.blog-category-collapsible {
    line-height: 1.6;
    max-height: calc(1.6em * 3);
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.blog-category-collapsible.expanded {
    max-height: 5000px;
}

.see-more-toggle {
    background: none;
    border: none;
    color: var(--text-dark, #3E2723) !important;
    font-size: 13px;
    cursor: pointer;
    margin-top: 6px;
    padding: 0;
    text-decoration: underline;
}

/* ── SEO text block ─────────────────────────────────────────────────────── */
.np-footer-seo {
    margin-top: 0.75rem;
    padding: 0.875rem 1rem;
    background: #FFFBF5;
    border-radius: 8px;
    border-left: 3px solid #F37420;
}

.np-footer-seo__block {
    padding-bottom: 0.625rem;
    margin-bottom: 0.625rem;
    border-bottom: 1px solid rgba(243, 116, 32, 0.15);
}

.np-footer-seo__block:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.np-footer-seo__heading {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #3E2723 !important;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.np-footer-seo__text {
    font-size: 0.75rem;
    line-height: 1.65;
    color: #6B5B4F !important;
    margin: 0;
}

/* ── Footer misc links (footer.php lines 398-417 from new-footer.css) ──── */
.footer-links-show,
.footer-links-show-1,
.footer-links-show-2,
.footer-links-show-3 {
    position: relative;
    top: 5px;
    display: flex;
    justify-content: space-between;
    font-size: clamp(0.75rem, 2.5vw, 0.875rem) !important;
}

.mobile-border {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.mobile-border:nth-child(4) {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

/* ============================================================
   MOBILE FOOTER CTA — fixed phone/WhatsApp bar (author pages)
   ============================================================ */
.mobile-footer-cta {
    position: fixed;
    height: 45px;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 90;
}

.mobile-footer-cta__btn {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0;
    text-decoration: none;
    width: 50%;
    border-right: 1px solid;
    background: #e51251;
}

.mobile-footer-cta__btn i {
    margin-right: 5px;
}

.mobile-footer-cta__btn:last-child {
    margin-right: 0;
    background: #189d0e;
}

.mobile-footer-cta__btn:hover {
    color: #fff;
}

/* ============================================================
   TABLET / NARROW VIEWPORT ADJUSTMENTS (≤ 767px)
   Source: style.backup.css @media (max-width:767px)
   Note:  footer.php loads on desktop UA only. These rules
          apply when a desktop browser is at narrow viewport.
   ============================================================ */
@media only screen and (max-width: 767px) {

    /* Hide desktop-only columns, show mobile columns */
    .footer-uper,
    .quick_links_decktop,
    .social_links_decktop,
    .contact-info-decktop {
        display: none !important;
    }

    .quick_links_mobile,
    .social_links_mobile,
    .contact-info-mobile {
        display: block !important;
    }

    /* Logo & social */
    .logo_social_links_mobile {
        display: flex;
    }

    .footer-logos-mobile {
        height: 130px;
        width: 130px;
        margin: 0 auto;
        display: flex;
    }

    /* Heading size */
    .footer-heading {
        font-size: 16px;
        border-bottom: 0;
    }

    /* App store badges */
    .footer-app-img img {
        height: 40px;
        width: 120px;
    }

    /* Social links spacing */
    .social_links,
    .social_links li {
        margin-bottom: 0;
    }

    .social_links li a {
        padding: 0;
    }

    /* Quick links stacked */
    .quick_links_footer {
        display: block;
        padding: 0;
    }

    /* Links-footer section */
    .links-footer-icon-txt h3 {
        font-size: 15px;
    }

    .links-footer-blog h4 {
        font-size: 12px !important;
    }

    .links-footer-blog p {
        font-size: 9px !important;
    }

    .links-footer-urls a {
        font-size: 9px !important;
    }

    .blog-category-url {
        gap: 6px;
    }

    .footer-category-group .footer-category-title {
        font-size: 14px;
    }

    .links-footer-icon span {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
}

/* ── 992–1024px breakpoint ──────────────────────────────────────────────── */
@media only screen and (min-width: 992px) and (max-width: 1024px) {
    .footer-heading {
        font-size: 20px;
    }
}

