/* =====================================================
   puja-detail.css  –  Puja Detail Page
   Extends cab-detail.css (loaded before this file)
   visitkashi.com
===================================================== */

/* ══════════════════════════════
   SINGLE-IMAGE HERO
══════════════════════════════ */
.pd-hero-img {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #1a1a2e;
    cursor: pointer;
}
.pd-hero-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .38s ease;
}
.pd-hero-img:hover img { transform: scale(1.03); }

/* Price badge bottom-right */
.pd-hero-price {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pd-hero-price-badge {
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}
.pd-hero-price-badge strong {
    font-size: 20px;
    font-weight: 800;
    color: #f59e0b;
    display: block;
}
.pd-hero-all-btn {
    background: rgba(255,255,255,.92);
    color: #374151;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .2s;
}
.pd-hero-all-btn:hover { background: #fff; }

/* Thumbnail strip (hidden when only 1 image) */
.pd-thumbs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.pd-thumb {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .2s;
}
.pd-thumb.active { border-color: #d4850a; }
.pd-thumb img { width: 100%; height: 84px; object-fit: cover; display: block; }

/* ══════════════════════════════
   SPIRITUAL SIGNIFICANCE BOX
   (maroon gradient, like AI rec box in tour pages)
══════════════════════════════ */
.pd-spiritual-box {
    background: linear-gradient(135deg, #5c1f37 0%, #8b2f52 100%);
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 28px;
    color: #fff;
}
.pd-spiritual-hdr {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.pd-spiritual-hdr h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.pd-spiritual-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.pd-spiritual-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.65;
}
.pd-spiritual-tick {
    color: #fbbf24;
    font-size: 15px;
    flex-shrink: 0;
    font-weight: 700;
    margin-top: 1px;
}

/* ══════════════════════════════
   RITUAL PROCESS STEPS
   (mirrors itinerary blocks in tour pages)
══════════════════════════════ */
.pd-process-step {
    border-left: 3px solid #d4850a;
    padding-left: 16px;
    margin-bottom: 20px;
}
.pd-process-label {
    font-size: 13px;
    font-weight: 700;
    color: #d4850a;
    margin-bottom: 4px;
}
.pd-process-step p {
    margin: 0;
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
}

/* ══════════════════════════════
   PUJA INFO CHIPS (quick facts row)
══════════════════════════════ */
.pd-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.pd-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 50px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}
.pd-chip i { color: #d4850a; }
.pd-chip-primary {
    background: #fdf6ee;
    border-color: #fde8c5;
    color: #b8720a;
}

/* ══════════════════════════════
   BOOKING FORM – PRICE ROW
   (shown above the form in sidebar header)
══════════════════════════════ */
.pd-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 14px;
}
.pd-price-from { font-size: 13px; color: #6b7280; }
.pd-price-val {
    font-size: 28px;
    font-weight: 800;
    color: #d4850a;
    line-height: 1;
}
.pd-price-unit { font-size: 12px; color: #6b7280; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 991px) {
    .pd-hero-img img { height: 320px; }
}
@media (max-width: 600px) {
    .pd-hero-img img { height: 240px; }
    .pd-hero-price-badge { padding: 8px 14px; }
    .pd-hero-price-badge strong { font-size: 17px; }
    .pd-hero-all-btn { display: none; }
    .pd-chips { gap: 7px; }
    .pd-chip { font-size: 12px; padding: 6px 12px; }
}
