:root {
    --pooja-saffron: #E65100;
    --pooja-cream: #FFF8E7;
    --pooja-gold: #D4AF37;
    --pooja-crimson-dark: #4A0E1F; /* Midnight Crimson -- used on the Sankalp Digital Pass stub, see below */
}

/* `.input-field` is otherwise an ADMIN-panel-only class (see admin/css/
   style.css) -- it never had a front-end definition at all, so every Pooja
   checkout/review/AI-guidance form using it (checkout steps, review coupon
   field, review-form textarea, Gift-a-Pooja fields, AI Guidance form) has
   been rendering as bare unstyled browser inputs. Defined here so it
   retroactively fixes every existing usage without touching each blade file
   -- scoped safely since pooja.css only ever loads on Pooja pages. */
.input-field {
    width: 100%;
    display: block;
    padding: 14px 18px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, .5);
    background: #fff;
    color: #4a2c00;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
textarea.input-field {
    min-height: 110px;
    resize: vertical;
}
.input-field::placeholder {
    color: rgba(74, 44, 0, .5);
}
.input-field:focus {
    outline: none;
    border-color: var(--pooja-saffron);
    box-shadow: 0 0 0 3px rgba(230, 81, 0, .12);
}
.input-field:disabled {
    background: rgba(212, 175, 55, .08);
    cursor: not-allowed;
}
.pooja-no-reviews {
    padding: 30px 10px;
    background: var(--pooja-cream);
    border-radius: 14px;
    border: 1px dashed var(--pooja-gold);
}
.pooja-no-reviews i {
    font-size: 28px;
    color: var(--pooja-gold);
    margin-bottom: 8px;
    display: block;
}
.pooja-no-reviews p {
    margin: 0;
    color: #4a2c00;
}
.pooja-form-icon {
    color: var(--pooja-saffron);
    width: 16px;
    text-align: center;
    margin-right: 4px;
}

/* Section titles */
.gs-pooja-section .section-title {
    margin: 30px 0 20px;
}
.gs-pooja-section .section-title h3 {
    color: var(--pooja-saffron);
    font-weight: 700;
}

/* Circular avatar carousels (Deity / Location) */
.gs-single-deity,
.gs-single-location {
    text-align: center;
}
.gs-single-deity .deity-avatar-img,
.gs-single-location .location-avatar-img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--pooja-gold);
    transition: box-shadow .25s ease, transform .25s ease;
}
.gs-single-deity:hover .deity-avatar-img,
.gs-single-location:hover .location-avatar-img {
    box-shadow: 0 0 0 4px var(--pooja-cream), 0 0 18px var(--pooja-gold);
    transform: scale(1.05);
}
.gs-single-deity .title,
.gs-single-location .title {
    color: var(--pooja-saffron);
    margin-top: 8px;
}
@media (max-width: 575.98px) {
    /* 4 slides now show at this width (see home-deity-slider/home-location-
       slider's slick breakpoints in script.js) -- shrink the circle + labels
       so 4 fit per row without crowding/overflowing. */
    .gs-single-deity .deity-avatar-img,
    .gs-single-location .location-avatar-img {
        width: 62px;
        height: 62px;
        border-width: 2px;
    }
    .gs-single-deity .title,
    .gs-single-location .title {
        font-size: 12px;
        margin-top: 6px;
    }
    .gs-single-deity h6,
    .gs-single-location h6 {
        font-size: 11px;
    }
}

/* The LIVE "Browse by Deity"/"Location-based Poojas" homepage sections
   actually render via .gs-single-cat (shared with the sitewide Product
   Category slider, home2.blade.php) -- scoped here to .gs-single-pooja-cate
   (added alongside .gs-single-cat only on these two Pooja sections) so
   Product Category circles elsewhere are never touched by this. Base
   .cate-img is a flat 190px circle with no mobile override at all, which is
   why only ~1 fit per row on a phone regardless of slidesToShow. */
.gs-single-pooja-cate .cate-img {
    width: 96px;
    height: 96px;
    border: 3px solid var(--pooja-gold);
}
@media (max-width: 575.98px) {
    .gs-single-pooja-cate .cate-img {
        width: 62px;
        height: 62px;
        border-width: 2px;
        margin-bottom: 6px;
    }
    .gs-single-pooja-cate h6 {
        font-size: 11px;
        margin-bottom: 2px;
    }
}

/* Dosha chips */
.pooja-dosha-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.pooja-dosha-chip {
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--pooja-cream);
    color: var(--pooja-saffron);
    border: 1px solid var(--pooja-gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}
.pooja-dosha-chip:hover {
    background: var(--pooja-saffron);
    color: #fff;
}

/* Pooja cards */
.single-pooja-card {
    background: var(--pooja-cream);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, .35);
    box-shadow: 0 6px 18px rgba(74, 14, 31, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}
.single-pooja-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(74, 14, 31, .16);
}
.single-pooja-card .img-wrapper {
    position: relative;
    overflow: hidden;
}
.single-pooja-card .img-wrapper .add-to-wishlist-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    width: 48px;
    height: 48px;
    padding: 12px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #ffffff;
    transition: all .3s ease-in;
}
.single-pooja-card .img-wrapper .add-to-wishlist-btn.active svg path {
    stroke: #e32c75;
    fill: #e32c75;
}
.single-pooja-card .img-wrapper .add-to-wishlist-btn svg path {
    transition: all .3s ease-in;
}
.single-pooja-card .img-wrapper .add-to-wishlist-btn:hover svg path {
    stroke: #e32c75;
}
.single-pooja-card .pooja-img {
    width: 100%;
    aspect-ratio: 4 / 2;
    object-fit: cover;
    transition: transform .35s ease;
}
.single-pooja-card:hover .pooja-img {
    transform: scale(1.06);
}
.single-pooja-card .img-wrapper::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(0, 0, 0, .45), transparent);
    pointer-events: none;
}
.pooja-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    padding: 1px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}
.pooja-badge-festive {
    background: var(--pooja-saffron);
    color: #fff;
    box-shadow: 0 2px 8px rgba(230, 81, 0, .5);
}
.pooja-card-countdown {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(0deg, rgba(74, 14, 31, .9), rgba(74, 14, 31, .5));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 10px;
    letter-spacing: .2px;
}
.pooja-card-countdown i {
    color: var(--pooja-gold);
    font-size: 11px;
}
.pooja-card-countdown .pcd-ended {
    color: var(--pooja-gold);
}
@media (max-width: 575px) {
    .pooja-card-countdown {
        font-size: 11px;
        padding: 6px 8px;
        gap: 4px;
    }
}
.single-pooja-card .content-wrapper {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.single-pooja-card .pooja-title {
    margin-bottom: 4px;
}
.single-pooja-card .pooja-title a {
    color: var(--pooja-crimson-dark);
    font-weight: 700;
}
.pooja-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.pooja-share-wrap {
    position: relative;
    flex-shrink: 0;
}
.pooja-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pooja-saffron);
    background: var(--pooja-cream);
    border: 1px solid var(--pooja-gold);
    border-radius: 30px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, color .2s;
}
.pooja-share-btn:hover {
    background: var(--pooja-saffron);
    color: #fff;
}
.pooja-share-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 20;
    min-width: 180px;
    background: #fff;
    border: 1px solid rgba(212,175,55,.4);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    padding: 6px;
}
.pooja-share-menu.is-open {
    display: block;
}
.pooja-share-menu a,
.pooja-share-menu button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 10px;
    font-size: 13.5px;
    color: var(--pooja-crimson-dark);
    background: none;
    border: none;
    border-radius: 6px;
    text-align: left;
    cursor: pointer;
}
.pooja-share-menu a:hover,
.pooja-share-menu button:hover {
    background: var(--pooja-cream);
}
.pooja-share-menu .fa-whatsapp { color: #25D366; }
.pooja-share-menu .fa-instagram { color: #E1306C; }
.pooja-share-menu .fa-link { color: var(--pooja-gold); }
@media (max-width: 575px) {
    .pooja-title-row { flex-wrap: wrap; }
    .pooja-share-btn span { display: none; }
}
.pooja-meta {
    display: flex;
    gap: 8px;
    margin: 8px 0;
    flex-wrap: wrap;
}
.pooja-badge-deity,
.pooja-badge-location {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 999px;
    border: 1px solid var(--pooja-gold);
    color: var(--pooja-saffron);
    background: rgba(255, 255, 255, .6);
}
.price-wrapper {
    margin-top: auto;
    padding-top: 8px;
}
.price-wrapper .price-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: rgba(74, 44, 0, .6);
}
.pooja-price {
    color: var(--pooja-saffron);
    font-weight: 700;
    font-size: 17px;
}
.pooja-book-now-btn {
    display: block;
    text-align: center;
    margin-top: 12px;
    background: var(--pooja-saffron);
    border-color: var(--pooja-saffron);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background .2s ease, transform .15s ease;
}
.pooja-book-now-btn:hover {
    background: var(--pooja-gold);
    border-color: var(--pooja-gold);
    color: #fff;
}

/* Glassmorphism package selector cards */
.pooja-package-card {
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, .4);
    border-radius: 14px;
    padding: 18px;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.pooja-package-card.is-selected {
    border-color: var(--pooja-saffron);
    box-shadow: 0 0 0 2px var(--pooja-saffron);
}
.pooja-package-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.pooja-package-img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.pooja-cross-sell-card {
    text-align: center;
    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 10px;
    padding: 10px;
    height: 100%;
}
.pooja-cross-sell-card img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 8px;
}

.pooja-social-proof-badge {
    display: inline-block;
    background: var(--pooja-gold);
    color: var(--pooja-crimson-dark);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Mandir details */
.pooja-mandir-block {
    background: var(--pooja-cream);
    border-radius: 12px;
    padding: 20px;
}
.pooja-mandir-photo {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.pooja-mandir-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pooja-mandir-gallery img {
    width: 110px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
}

/* Process timeline */
.pooja-process-timeline {
    border-left: 3px solid var(--pooja-gold);
    padding-left: 20px;
}
.pooja-process-step {
    margin-bottom: 18px;
    position: relative;
}
.pooja-process-step::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--pooja-saffron);
}

/* Benefits */
.pooja-benefit-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 4px 10px 4px 0;
    color: var(--pooja-saffron);
}

/* Includes flags */
.pooja-includes-flag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 4px 10px 4px 0;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--pooja-cream);
    border: 1px solid var(--pooja-gold);
    font-size: 13px;
}

/* Not Included flags -- same shape as Includes, muted/red-tinted so the two
   read as opposites at a glance rather than looking like more inclusions. */
.pooja-not-included-row {
    margin-top: 14px;
}
.pooja-not-included-flag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 4px 10px 4px 0;
    padding: 4px 12px;
    border-radius: 999px;
    background: #FBEAEA;
    border: 1px solid rgba(198, 40, 40, .35);
    color: #a53030;
    font-size: 13px;
}

/* Participation mode badge -- reused on review/success pages, user dashboard,
   and admin booking views wherever a booking's Online/Offline mode is shown. */
.pooja-mode-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}
.pooja-mode-badge-online {
    background: var(--pooja-cream);
    color: var(--pooja-saffron);
    border: 1px solid var(--pooja-gold);
}
.pooja-mode-badge-offline {
    background: #FBEAEA;
    color: #a53030;
    border: 1px solid rgba(198, 40, 40, .35);
}

.pooja-offline-available-note {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    color: var(--pooja-saffron);
    font-size: 12px;
    font-weight: 600;
}

/* Mobile-first checkout "sheet" -- visual treatment only (rounded top,
   drag-handle, slide-up entrance), not a real fixed-position overlay drawer.
   This app has no client-side routing/AJAX-driven navigation anywhere in the
   checkout flow (full-page POST+redirect per step, by deliberate design --
   see new_upgrades.txt Module 3), so a literal slide-in-over-the-previous-
   page drawer would need a checkout architecture rewrite. This gives the
   mobile "feels like a bottom sheet" read without that rewrite. */
@media (max-width: 767px) {
    .pooja-checkout-sheet {
        border-radius: 22px 22px 6px 6px;
        animation: pooja-sheet-slide-up .35s ease-out;
        position: relative;
    }
    .pooja-checkout-sheet::before {
        content: '';
        display: block;
        width: 42px;
        height: 4px;
        background: var(--pooja-gold);
        border-radius: 999px;
        margin: 0 auto 16px auto;
    }
}
@keyframes pooja-sheet-slide-up {
    from { transform: translateY(28px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Sankalp Digital Pass -- boarding-pass style booking summary card,
   User Dashboard > My Pooja Bookings > booking detail. */
.sankalp-pass {
    display: flex;
    background: linear-gradient(135deg, var(--pooja-cream), #fff);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(74, 14, 31, .15);
    border: 1px solid var(--pooja-gold);
    margin-bottom: 20px;
}
.sankalp-pass-main {
    flex: 1;
    padding: 20px;
    min-width: 0;
}
.sankalp-pass-om {
    font-size: 22px;
    color: var(--pooja-saffron);
    margin-right: 8px;
}
.sankalp-pass-title {
    display: inline;
    font-size: 18px;
    font-weight: 700;
    color: var(--pooja-crimson-dark);
}
.sankalp-pass-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
}
.sankalp-pass-grid > div {
    min-width: 110px;
}
.sankalp-pass-grid .label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--pooja-saffron);
    opacity: .85;
}
.sankalp-pass-grid .value {
    display: block;
    font-weight: 600;
    color: var(--pooja-crimson-dark);
    word-break: break-word;
}
.sankalp-pass-divider {
    border-left: 2px dashed var(--pooja-gold);
    margin: 16px 0;
}
.sankalp-pass-stub {
    width: 130px;
    flex-shrink: 0;
    background: var(--pooja-crimson-dark);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 10px;
    text-align: center;
}
.sankalp-pass-barcode {
    width: 100%;
    height: 40px;
    background: repeating-linear-gradient(90deg, #fff 0 2px, transparent 2px 5px);
    margin-bottom: 10px;
    opacity: .85;
}
.sankalp-pass-number {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    letter-spacing: 1px;
    word-break: break-all;
}
@media (max-width: 575px) {
    .sankalp-pass { flex-direction: column; }
    .sankalp-pass-divider { border-left: none; border-top: 2px dashed var(--pooja-gold); margin: 0; }
    .sankalp-pass-stub { width: 100%; flex-direction: row; padding: 12px 16px; gap: 12px; }
    .sankalp-pass-barcode { width: 60%; height: 30px; margin-bottom: 0; }
}

/* /poojas listing sidebar -- `.single-product-widget`/`.gs-product-sidebar-
   wrapper` are shared sitewide classes (also used by the Product category
   sidebar), but scoping these rules inside pooja.css keeps them from ever
   touching that other page, since pooja.css only loads here. */
.pooja-sidebar-wrapper .single-product-widget {
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, .35);
    box-shadow: 0 4px 14px rgba(74, 14, 31, .06);
    margin-bottom: 20px;
}
.pooja-sidebar-wrapper .widget-title {
    color: var(--pooja-crimson-dark) !important;
    border-bottom: 2px solid var(--pooja-gold) !important;
    display: flex;
    align-items: center;
}
.pooja-sidebar-wrapper .list-unstyled li {
    margin: 2px 0;
}
.pooja-sidebar-wrapper .list-unstyled li a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    color: #4a2c00;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}
.pooja-sidebar-wrapper .list-unstyled li a:hover {
    background: var(--pooja-cream);
    color: var(--pooja-saffron);
}
.pooja-sidebar-wrapper .list-unstyled li a.active {
    background: var(--pooja-saffron);
    color: #fff;
    font-weight: 600;
}
.pooja-sidebar-search {
    display: flex;
    gap: 8px;
}
.pooja-sidebar-search .input-field {
    margin-bottom: 0;
    padding: 10px 14px;
}
.pooja-sidebar-search button {
    flex-shrink: 0;
    width: 42px;
    border: none;
    border-radius: 10px;
    background: var(--pooja-saffron);
    color: #fff;
    cursor: pointer;
}
.pooja-sidebar-search button:hover {
    background: var(--pooja-gold);
}

/* Homepage Pooja search bar */
.pooja-home-search {
    max-width: 640px;
    margin: 0 auto 30px auto;
    display: flex;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--pooja-gold);
    border-radius: 999px;
    padding: 6px 6px 6px 20px;
    box-shadow: 0 6px 20px rgba(74, 14, 31, .1);
}
.pooja-home-search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
}
.pooja-home-search button {
    border: none;
    border-radius: 999px;
    background: var(--pooja-saffron);
    color: #fff;
    padding: 10px 22px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease;
}
.pooja-home-search button:hover {
    background: var(--pooja-gold);
}
@media (max-width: 575px) {
    .pooja-home-search { padding: 6px; border-radius: 16px; flex-wrap: wrap; }
    .pooja-home-search input { flex-basis: 100%; padding: 8px 10px; }
    .pooja-home-search button { flex: 1; }
}

/* ===================================================================
   Pooja Date Countdown -- sticky under the header (JS keeps its `top`
   in sync with `.header-top`'s live height so it never sits under/over
   the site's own sticky header, see the inline script in pooja.blade.php).
   =================================================================== */
.pooja-countdown-bar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: linear-gradient(135deg, var(--pooja-crimson-dark), #6b1830);
    color: #fff;
    padding: 10px 0;
    box-shadow: 0 4px 14px rgba(74, 14, 31, .25);
}
.pooja-countdown-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.pooja-countdown-label {
    font-weight: 600;
    font-size: 13px;
    color: var(--pooja-gold);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.pooja-countdown-timer {
    display: flex;
    gap: 8px;
}
.pooja-cd-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(212, 175, 55, .4);
    border-radius: 8px;
    min-width: 46px;
    padding: 4px 6px;
}
.pooja-cd-box span {
    font-weight: 800;
    font-size: 16px;
    line-height: 1.1;
}
.pooja-cd-box small {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .4px;
    opacity: .8;
}
.pooja-countdown-ended {
    font-weight: 700;
    color: var(--pooja-gold);
}
@media (max-width: 575px) {
    .pooja-countdown-label { font-size: 11.5px; }
    .pooja-cd-box { min-width: 38px; padding: 3px 4px; }
    .pooja-cd-box span { font-size: 14px; }
}

/* ===================================================================
   Package selector cards -- redesigned for mobile only (image left,
   details right, a "PARTICIPATE" CTA revealed on the selected card),
   per the reference design. Desktop keeps the existing stacked-card
   layout (.pooja-package-img etc. above), these badges/buttons stay
   hidden there.
   =================================================================== */
.pooja-package-card {
    position: relative;
}
.pooja-package-people-badge,
.pooja-package-check,
.pooja-participate-btn {
    display: none;
}
@media (max-width: 767.98px) {
    .pooja-package-card {
        padding: 14px;
    }
    .pooja-package-card-body {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
    }
    .pooja-package-media {
        position: relative;
        flex: 0 0 96px;
        width: 96px;
    }
    .pooja-package-media .pooja-package-img {
        width: 96px;
        height: 96px;
        margin-bottom: 0;
    }
    .pooja-package-people-badge {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        position: absolute;
        left: 0;
        bottom: -8px;
        background: var(--pooja-saffron);
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        padding: 3px 8px;
        border-radius: 999px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
        white-space: nowrap;
    }
    .pooja-package-info {
        flex: 1;
        min-width: 0;
    }
    .pooja-package-sub {
        margin: 2px 0 4px;
        font-size: 13px;
    }
    .pooja-package-check {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 14px;
        right: 14px;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        border: 2px solid rgba(212, 175, 55, .5);
        background: #fff;
        color: transparent;
        font-size: 11px;
        transition: all .2s ease;
    }
    .pooja-package-card.is-selected {
        background: linear-gradient(135deg, rgba(255, 248, 231, .95), rgba(230, 81, 0, .07));
    }
    .pooja-package-card.is-selected .pooja-package-check {
        background: var(--pooja-saffron);
        border-color: var(--pooja-saffron);
        color: #fff;
    }
    .pooja-participate-btn {
        width: 100%;
        margin-top: 14px;
        background: var(--pooja-saffron);
        color: #fff;
        border: none;
        padding: 13px;
        border-radius: 10px;
        font-weight: 700;
        letter-spacing: .5px;
    }
    .pooja-package-card.is-selected .pooja-participate-btn {
        display: block;
        animation: pooja-participate-in .25s ease;
    }
}
@keyframes pooja-participate-in {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.pooja-booking-closed-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--pooja-cream);
    border: 1px dashed var(--pooja-gold);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--pooja-crimson-dark);
    font-weight: 600;
}
.pooja-booking-closed-notice i {
    color: var(--pooja-saffron);
    font-size: 18px;
}

/* ===================================================================
   Online / Offline participation mode selector -- appears once a package
   with an offline_price is selected (see pooja.blade.php's JS).
   =================================================================== */
.pooja-mode-selector {
    margin-top: 24px;
    padding: 18px;
    background: var(--pooja-cream);
    border: 1px solid rgba(212, 175, 55, .4);
    border-radius: 14px;
}
.pooja-mode-selector h5 {
    margin-bottom: 12px;
    color: var(--pooja-crimson-dark);
}
.pooja-mode-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 575.98px) {
    .pooja-mode-options {
        grid-template-columns: 1fr;
    }
}
.pooja-mode-option {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
    border: 2px solid rgba(212, 175, 55, .35);
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.pooja-mode-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.pooja-mode-option.is-selected {
    border-color: var(--pooja-saffron);
    box-shadow: 0 0 0 2px var(--pooja-saffron);
}
.pooja-mode-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pooja-cream);
    color: var(--pooja-saffron);
    font-size: 15px;
}
.pooja-mode-option.is-selected .pooja-mode-icon {
    background: linear-gradient(135deg, var(--pooja-saffron), var(--pooja-gold));
    color: #fff;
}
.pooja-mode-text {
    flex: 1;
    min-width: 0;
}
.pooja-mode-label {
    display: block;
    font-weight: 700;
    color: var(--pooja-crimson-dark);
    margin-bottom: 3px;
}
.pooja-mode-desc {
    display: block;
    font-size: 12px;
    color: #8a6d3b;
    line-height: 1.5;
}
.pooja-mode-desc-hi {
    display: block;
    margin-top: 3px;
    font-style: italic;
}
.pooja-mode-price {
    flex-shrink: 0;
    font-weight: 700;
    color: var(--pooja-saffron);
    font-size: 14px;
}

.pooja-offline-instructions {
    margin-top: 16px;
    padding: 14px 16px;
    background: #fff;
    border: 1px dashed var(--pooja-gold);
    border-radius: 10px;
}
.pooja-offline-instructions h6 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--pooja-crimson-dark);
    margin-bottom: 8px;
}
.pooja-offline-instructions ul {
    margin: 0;
    padding-left: 20px;
}
.pooja-offline-instructions li {
    font-size: 13px;
    color: #4a2c00;
    margin-bottom: 4px;
    line-height: 1.5;
}

/* ===================================================================
   Sticky "Select a Package" / "Book This Package" floating CTA.
   =================================================================== */
.pooja-sticky-cta {
    position: fixed;
    left: 50%;
    bottom: 76px;
    transform: translate(-50%, 16px);
    width: min(560px, calc(100% - 32px));
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
}
.pooja-sticky-cta.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}
.pooja-scroll-to-package-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--pooja-crimson-dark);
    color: #fff;
    border: none;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 10px 26px rgba(74, 14, 31, .35);
    cursor: pointer;
}
.pooja-book-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, .5);
    border-radius: 16px;
    padding: 10px 10px 10px 18px;
    box-shadow: 0 12px 30px rgba(74, 14, 31, .2);
}
.pooja-book-bar.is-active {
    display: flex;
}
.pooja-book-bar-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.pooja-book-bar-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #8a6d3b;
}
.pooja-book-bar-price {
    font-weight: 800;
    color: var(--pooja-saffron);
    font-size: 18px;
}
.pooja-book-now-float {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--pooja-saffron), var(--pooja-gold));
    color: #fff;
    border: none;
    padding: 13px 22px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 18px rgba(230, 81, 0, .35);
    cursor: pointer;
    transition: transform .15s ease;
}
.pooja-book-now-float:hover {
    color: #fff;
    transform: translateY(-2px);
}
.pooja-book-now-float.pooja-pulse {
    animation: pooja-book-pulse .6s ease;
}
@keyframes pooja-book-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(230, 81, 0, .5); }
    40% { transform: scale(1.06); }
    100% { transform: scale(1); box-shadow: 0 0 0 14px rgba(230, 81, 0, 0); }
}
@media (min-width: 992px) {
    .pooja-sticky-cta { bottom: 24px; }
}

/* ===================================================================
   Right-side floating scrollspy section nav -- floats on every screen
   size, including mobile. Collapses to icon-dots and expands its label
   on hover (desktop) or once a section becomes active (any device, since
   .is-active is driven by the scroll IntersectionObserver, not :hover --
   touch devices always get to see the current section's label that way).
   Vertically centered (top:50%) so it stays clear of the bottom-anchored
   bottom-nav / AI FAB / sticky package CTA on normal portrait phones.
   =================================================================== */
.pooja-tabnav {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 35;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgb(255 255 255 / 10%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, .4);
    border-radius: 999px;
    padding: 10px 6px;
    box-shadow: 0 10px 26px rgba(74, 14, 31, .15);
}
.pooja-tabnav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px 7px 8px;
    border-radius: 999px;
    color: #8a6d3b;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    max-width: 34px;
    overflow: hidden;
    transition: all .25s ease;
}
.pooja-tabnav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .6);
    flex-shrink: 0;
    transition: all .25s ease;
}
.pooja-tabnav-link:hover,
.pooja-tabnav-link:focus {
    color: var(--pooja-saffron);
    text-decoration: none;
    max-width: 160px;
    background: var(--pooja-cream);
}
.pooja-tabnav-link.is-active {
    color: #fff;
    max-width: 160px;
    background: linear-gradient(135deg, var(--pooja-saffron), var(--pooja-gold));
}
.pooja-tabnav-link.is-active .pooja-tabnav-dot {
    background: #fff;
}
@media (max-width: 767.98px) {
    .pooja-tabnav {
        right: 10px;
        gap: 3px;
        padding: 8px 5px;
    }
    .pooja-tabnav-link {
        gap: 6px;
        padding: 6px 10px 6px 6px;
        font-size: 11.5px;
        max-width: 28px;
    }
    .pooja-tabnav-link:hover,
    .pooja-tabnav-link:focus,
    .pooja-tabnav-link.is-active {
        max-width: 128px;
    }
    .pooja-tabnav-dot {
        width: 7px;
        height: 7px;
    }
}

/* ===== Ratings & Reviews redesign (2026-08-17) =====
   Previously this section relied entirely on the sitewide generic
   product-review classes (.reating-area/.all-comments/.single-comment/
   .review-area etc.) with zero Pooja-specific styling -- functional but
   plain, didn't match the rest of this page's saffron/cream/gold look.
   New scoped classes below; the generic classes are no longer used by
   partials/pooja-details/reviews.blade.php. Every review shown here is
   gated on a real paid PoojaBooking (see PoojaFrontController::reviewSubmit),
   so the "Verified Booking" badge is always genuinely true. */
.pooja-reviews-summary {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--pooja-cream), #fff);
    border: 1px solid rgba(212, 175, 55, .4);
    border-radius: 16px;
}
.pooja-reviews-summary-score {
    font-size: 42px;
    font-weight: 700;
    color: var(--pooja-saffron);
    line-height: 1;
    flex-shrink: 0;
}
.pooja-reviews-summary-score small {
    font-size: 18px;
    color: #9a7a4a;
    font-weight: 500;
}
.pooja-reviews-summary-stars {
    color: var(--pooja-gold);
    font-size: 17px;
    letter-spacing: 2px;
    margin: 4px 0;
}
.pooja-reviews-summary-stars .pooja-star-empty {
    color: rgba(212, 175, 55, .3);
}
.pooja-reviews-summary-count {
    color: #6b5535;
    font-size: 14px;
    margin: 0;
}
.pooja-review-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.pooja-review-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(74, 44, 0, .04);
}
.pooja-review-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    background: linear-gradient(135deg, var(--pooja-saffron), var(--pooja-gold));
    overflow: hidden;
}
.pooja-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pooja-review-body {
    flex: 1;
    min-width: 0;
}
.pooja-review-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.pooja-review-name {
    font-weight: 600;
    color: #3a2a12;
    margin: 0;
    font-size: 15px;
}
.pooja-review-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #1e7a3a;
    background: rgba(46, 160, 90, .12);
    padding: 2px 8px;
    border-radius: 20px;
}
.pooja-review-date {
    color: #a08a66;
    font-size: 12.5px;
    margin: 0;
}
.pooja-review-stars {
    color: var(--pooja-gold);
    font-size: 13px;
    letter-spacing: 1px;
    margin: 4px 0 8px;
}
.pooja-review-stars .pooja-star-empty {
    color: rgba(212, 175, 55, .3);
}
.pooja-review-text {
    color: #4a3820;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}
.pooja-write-review-card {
    background: var(--pooja-cream);
    border: 1px solid rgba(212, 175, 55, .4);
    border-radius: 16px;
    padding: 24px;
}
.pooja-write-review-card .title {
    color: var(--pooja-saffron);
    font-size: 18px;
    margin-bottom: 14px;
}
.pooja-star-picker {
    list-style: none;
    display: flex;
    gap: 6px;
    padding: 0;
    margin: 0 0 16px;
}
.pooja-star-picker li {
    font-size: 24px;
    color: rgba(212, 175, 55, .35);
    cursor: pointer;
    transition: color .15s ease, transform .15s ease;
}
.pooja-star-picker li:hover,
.pooja-star-picker li.active {
    color: var(--pooja-gold);
    transform: scale(1.08);
}
.pooja-reviews-note {
    text-align: center;
    color: #6b5535;
    background: var(--pooja-cream);
    border: 1px dashed var(--pooja-gold);
    border-radius: 12px;
    padding: 18px;
    margin: 0;
}
.pooja-reviews-note a {
    color: var(--pooja-saffron);
    font-weight: 600;
}
@media (max-width: 575px) {
    .pooja-reviews-summary {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .pooja-review-card {
        padding: 16px;
        gap: 12px;
    }
    .pooja-review-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}
