/* ═══════════════════════════════════════════════════════════
   PRAYAG PANDITS — SINGLE PRODUCT PAGE
   Blinkit-inspired: fast, interactive, engagement-first.
   Uses variables from ppn-design-system.css
   ═══════════════════════════════════════════════════════════ */

:root {
    --pd-ease: cubic-bezier(0.2, 0, 0, 1);
    --pd-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --pd-ease-panel: cubic-bezier(0.1, 0.9, 0.2, 1);
}


/* ═══════════════════════════════════════
   1. GALLERY — Desktop Mosaic
   ═══════════════════════════════════════ */
.pd-gallery {
    max-width: var(--ppn-container);
    margin: 0 auto;
}

/* Desktop mosaic */
.pd-gallery__mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 4px;
    border-radius: var(--ppn-radius-lg);
    overflow: hidden;
    position: relative;
}
.pd-gallery__cell {
    overflow: hidden;
    cursor: pointer;
}
.pd-gallery__cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s var(--pd-ease);
}
.pd-gallery__cell:hover img {
    transform: scale(1.03);
}
.pd-gallery__cell--0 {
    grid-row: 1 / 3;
}

/* "Show all photos" button (Airbnb pattern) */
.pd-gallery__show-all {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--ppn-white);
    border: 1px solid var(--ppn-charcoal);
    padding: 8px 16px;
    border-radius: var(--ppn-radius-sm);
    font-family: var(--ppn-font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ppn-charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 150ms var(--pd-ease);
    z-index: 5;
}
.pd-gallery__show-all:hover {
    background: var(--ppn-charcoal);
    color: var(--ppn-white);
}

/* Discount badge */
.pd-gallery__discount {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--ppn-maroon);
    color: #fff;
    font-family: var(--ppn-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--ppn-radius-pill);
    z-index: 5;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(150, 0, 0, 0.3);
}

/* Mobile carousel — hidden on desktop */
.pd-gallery__carousel { display: none; }

@media (max-width: 768px) {
    .pd-gallery__mosaic { display: none; }
    .pd-gallery__carousel {
        display: block;
        position: relative;
        overflow: hidden;
    }
}


/* ═══════════════════════════════════════
   1b. GALLERY — Mobile Carousel
   ═══════════════════════════════════════ */
.pd-gallery__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.pd-gallery__track::-webkit-scrollbar { display: none; }
.pd-gallery__slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    cursor: pointer;
}
.pd-gallery__slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Mobile gallery chevrons */
.pd-gallery__chev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: var(--ppn-radius-circle);
    border: none;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 200ms var(--pd-ease);
    color: var(--ppn-charcoal);
}
.pd-gallery__chev:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.pd-gallery__chev:active { transform: translateY(-50%) scale(0.92); }
.pd-gallery__chev--prev { left: 10px; }
.pd-gallery__chev--next { right: 10px; }
.pd-gallery__chev svg { width: 16px; height: 16px; }

/* Dots */
.pd-gallery__dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}
.pd-gallery__dot {
    width: 8px;
    height: 8px;
    border-radius: var(--ppn-radius-circle);
    background: rgba(255, 255, 255, 0.4);
    transition: all 250ms var(--pd-ease);
    cursor: pointer;
}
.pd-gallery__dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* Counter */
.pd-gallery__counter {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-family: var(--ppn-font-heading);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--ppn-radius-pill);
    z-index: 5;
    pointer-events: none;
}

@media (max-width: 480px) {
    .pd-gallery__slide img { height: 260px; }
}


/* ═══════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════ */
.pd-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pd-lightbox.active { display: flex; }
.pd-lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 150ms;
}
.pd-lightbox__close:hover { opacity: 1; }
.pd-lightbox__stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: calc(100vh - 120px);
    padding: 20px;
}
.pd-lightbox__stage img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
}
.pd-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: var(--ppn-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.7;
    transition: all 150ms;
    z-index: 5;
}
.pd-lightbox__nav:hover { opacity: 1; background: rgba(255, 255, 255, 0.2); }
.pd-lightbox__nav--prev { left: 20px; }
.pd-lightbox__nav--next { right: 20px; }
.pd-lightbox__thumbs {
    display: flex;
    gap: 6px;
    padding: 12px;
    overflow-x: auto;
    max-width: 90vw;
    scrollbar-width: none;
}
.pd-lightbox__thumbs::-webkit-scrollbar { display: none; }
.pd-lightbox__thumbs img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 150ms;
    flex-shrink: 0;
}
.pd-lightbox__thumbs img.active,
.pd-lightbox__thumbs img:hover { opacity: 1; }
.pd-lightbox__count {
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--ppn-font-heading);
    font-size: 0.82rem;
}


/* ═══════════════════════════════════════
   2-COLUMN LAYOUT
   ═══════════════════════════════════════ */
.pd-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
    padding: 24px 0 60px;
}
.pd-main { min-width: 0; }
.pd-mobile-only { display: none; }

@media (max-width: 1024px) {
    .pd-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .pd-widget { display: none; }
    .pd-mobile-only { display: block; }
}


/* ═══════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════ */
.pd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ppn-font-heading);
    font-size: 0.72rem;
    color: var(--ppn-text-muted);
    margin-bottom: 16px;
    padding-top: 8px;
}
.pd-breadcrumb a {
    color: var(--ppn-text-muted);
    text-decoration: none;
    transition: color 150ms;
}
.pd-breadcrumb a:hover { color: var(--ppn-maroon); }
.pd-breadcrumb svg { opacity: 0.4; }


/* ═══════════════════════════════════════
   PRODUCT HEADER
   ═══════════════════════════════════════ */
.pd-header { margin-bottom: 20px; }
.pd-header__title {
    font-family: var(--ppn-font-heading);
    font-size: clamp(1.3rem, 3vw, 1.65rem);
    font-weight: 700;
    color: var(--ppn-charcoal);
    margin: 0 0 8px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}
.pd-header__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-family: var(--ppn-font-heading);
    font-size: 0.8rem;
    color: var(--ppn-text-muted);
}
.pd-header__rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 600;
    color: var(--ppn-charcoal);
}
.pd-header__review-ct { color: var(--ppn-text-muted); font-weight: 400; }
.pd-header__sep { color: var(--ppn-text-light); font-size: 0.6rem; }
.pd-header__location { display: flex; align-items: center; gap: 3px; }
.pd-header__families { color: var(--ppn-text-muted); }

/* Mobile price */
.pd-header__price {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--ppn-border);
}
.pd-price__current {
    font-family: var(--ppn-font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--ppn-charcoal);
    letter-spacing: -0.02em;
}
.pd-price__original {
    font-family: var(--ppn-font-heading);
    font-size: 0.95rem;
    color: var(--ppn-text-muted);
    text-decoration: line-through;
    margin-left: 8px;
}
.pd-price__save {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    background: rgba(34, 197, 94, 0.08);
    color: var(--ppn-green);
    font-family: var(--ppn-font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: var(--ppn-radius-pill);
}
.pd-price__label {
    display: block;
    font-family: var(--ppn-font-heading);
    font-size: 0.75rem;
    color: var(--ppn-text-muted);
    margin-top: 2px;
}


/* ═══════════════════════════════════════
   TRUST PILLS
   ═══════════════════════════════════════ */
.pd-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--ppn-border);
    margin-bottom: 4px;
}
.pd-pills::-webkit-scrollbar { display: none; }
.pd-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: var(--ppn-bg-cream);
    border: 1px solid var(--ppn-border);
    border-radius: var(--ppn-radius-pill);
    font-family: var(--ppn-font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ppn-charcoal);
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 150ms var(--pd-ease);
}
.pd-pill:hover {
    background: var(--ppn-white);
    border-color: var(--ppn-border-hover);
}


/* ═══════════════════════════════════════
   MOBILE CTA BLOCK
   ═══════════════════════════════════════ */
.pd-cta-block {
    padding: 20px 0;
    border-bottom: 1px solid var(--ppn-border);
    margin-bottom: 4px;
}
.pd-cta-block__trust {
    font-family: var(--ppn-font-heading);
    font-size: 0.72rem;
    color: var(--ppn-text-muted);
    text-align: center;
    margin-top: 12px;
}


/* ═══════════════════════════════════════
   SHARED BUTTON STYLES
   ═══════════════════════════════════════ */
.pd-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    border-radius: var(--ppn-radius-md);
    font-family: var(--ppn-font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 200ms var(--pd-ease-spring);
    box-sizing: border-box;
}
.pd-btn--book {
    background: var(--ppn-maroon);
    color: #fff;
}
.pd-btn--book:hover {
    background: var(--ppn-maroon-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(150, 0, 0, 0.25);
    color: #fff;
}
.pd-btn--wa {
    background: #25D366;
    color: #fff;
    margin-top: 10px;
}
.pd-btn--wa:hover {
    background: #1DA851;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
    color: #fff;
}
.pd-btn--wa-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: var(--ppn-radius-sm);
    font-family: var(--ppn-font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 200ms var(--pd-ease-spring);
}
.pd-btn--wa-widget:hover {
    background: #1DA851;
    transform: translateY(-1px);
    color: #fff;
}


/* ═══════════════════════════════════════
   WC FORM OVERRIDES + MODERN QUANTITY SELECTOR
   ═══════════════════════════════════════ */
.pd-widget__form .cart,
.pd-cta-block__form .cart {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Custom quantity wrapper (injected by JS) */
.pd-qty-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--ppn-border);
    border-radius: var(--ppn-radius-sm);
    overflow: hidden;
    background: var(--ppn-white);
    transition: border-color 200ms;
}
.pd-qty-wrap:focus-within {
    border-color: var(--ppn-maroon);
    box-shadow: 0 0 0 3px rgba(150, 0, 0, 0.06);
}
.pd-qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ppn-charcoal);
    transition: all 150ms;
    user-select: none;
    font-family: var(--ppn-font-heading);
}
.pd-qty-btn:hover { background: var(--ppn-bg-cream); color: var(--ppn-maroon); }
.pd-qty-btn:active { transform: scale(0.9); }
.pd-qty-btn--minus { border-right: 1px solid var(--ppn-border); }
.pd-qty-btn--plus { border-left: 1px solid var(--ppn-border); }

/* Hide the original WC quantity wrapper — JS replaces it */
.pd-widget__form .quantity,
.pd-cta-block__form .quantity { display: none; }

/* The native qty input inside our custom wrapper */
.pd-qty-wrap input[type="number"] {
    flex: 1;
    text-align: center;
    border: none;
    padding: 10px 4px;
    font-family: var(--ppn-font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ppn-charcoal);
    background: transparent;
    outline: none;
    -moz-appearance: textfield;
    min-width: 0;
}
.pd-qty-wrap input::-webkit-inner-spin-button,
.pd-qty-wrap input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

/* Add to Cart button */
.pd-widget__form .single_add_to_cart_button,
.pd-widget__form .single_add_to_cart_button.button,
.pd-widget__form button.single_add_to_cart_button,
.pd-cta-block__form .single_add_to_cart_button,
.pd-cta-block__form .single_add_to_cart_button.button,
.pd-cta-block__form button.single_add_to_cart_button {
    width: 100% !important;
    padding: 15px 28px !important;
    background: var(--ppn-maroon) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--ppn-radius-sm) !important;
    font-family: var(--ppn-font-heading) !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 200ms var(--pd-ease-spring) !important;
    letter-spacing: 0.02em !important;
    box-shadow: none !important;
}
.pd-widget__form .single_add_to_cart_button:hover,
.pd-cta-block__form .single_add_to_cart_button:hover {
    background: var(--ppn-maroon-hover) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 20px rgba(150, 0, 0, 0.25) !important;
}
.pd-widget__form .single_add_to_cart_button:active,
.pd-cta-block__form .single_add_to_cart_button:active {
    transform: scale(0.97) translateY(0) !important;
    box-shadow: none !important;
}

/* WC Deposits */
.pd-widget__form .wc-deposits-wrapper,
.pd-widget__form .wc-deposits-option,
.pd-cta-block__form .wc-deposits-wrapper,
.pd-cta-block__form .wc-deposits-option {
    padding: 10px 0;
    border-top: 1px solid var(--ppn-border);
    margin-top: 4px;
}
.pd-widget__form .wc-deposits-wrapper label,
.pd-cta-block__form .wc-deposits-wrapper label {
    font-family: var(--ppn-font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pd-widget__form .wc-deposits-wrapper input[type="radio"],
.pd-cta-block__form .wc-deposits-wrapper input[type="radio"] {
    accent-color: var(--ppn-maroon);
    width: 16px;
    height: 16px;
}

/* Hide duplicate WC price + WP Armour honeypot */
.pd-widget__form .price,
.pd-cta-block__form .price { display: none; }
.pd-widget__form .wpa_honeypot_wrapper,
.pd-cta-block__form .wpa_honeypot_wrapper,
.pd-widget__form [class*="wpa_"],
.pd-cta-block__form [class*="wpa_"],
.pd-widget__form .wpa_wrap,
.pd-cta-block__form .wpa_wrap { display: none !important; }


/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
.pd-section {
    padding: 24px 0;
    border-bottom: 1px solid var(--ppn-border);
}
.pd-section:last-child { border-bottom: none; }
.pd-section--cream {
    background: var(--ppn-bg-cream);
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: var(--ppn-radius-lg);
    border-bottom: none;
}
.pd-section__title {
    font-family: var(--ppn-font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ppn-charcoal);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.01em;
}
.pd-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ppn-saffron);
}
.pd-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* ═══════════════════════════════════════
   SCROLL WRAPPER + CHEVRON BUTTONS
   (shared by Benefits, Reviews, Related)
   ═══════════════════════════════════════ */
.pd-scroll-wrap {
    position: relative;
}
.pd-scroll-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}
.pd-scroll-track::-webkit-scrollbar { display: none; }
.pd-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: var(--ppn-radius-circle);
    border: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: all 200ms var(--pd-ease);
    color: var(--ppn-charcoal);
    -webkit-tap-highlight-color: transparent;
}
.pd-scroll-btn:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(150, 0, 0, 0.1);
    color: var(--ppn-maroon);
    transform: translateY(-50%) scale(1.06);
}
.pd-scroll-btn:active { transform: translateY(-50%) scale(0.95); }
.pd-scroll-btn svg { width: 18px; height: 18px; }
.pd-scroll-btn--left { left: -6px; }
.pd-scroll-btn--right { right: -6px; }

@media (min-width: 769px) {
    .pd-scroll-btn { width: 44px; height: 44px; }
    .pd-scroll-btn--left { left: -22px; }
    .pd-scroll-btn--right { right: -22px; }
}


/* ═══════════════════════════════════════
   4. QUICK BENEFITS
   ═══════════════════════════════════════ */
.pd-benefits { gap: 12px; padding-bottom: 4px; }
.pd-benefit {
    flex: 0 0 200px;
    scroll-snap-align: start;
    background: var(--ppn-white);
    border: 1px solid var(--ppn-border);
    border-radius: var(--ppn-radius-md);
    padding: 20px 16px;
    transition: all 200ms var(--pd-ease);
}
.pd-benefit:hover {
    border-color: var(--ppn-saffron);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 115, 26, 0.08);
}
.pd-benefit__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--ppn-radius-sm);
    background: var(--ppn-saffron-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.pd-benefit strong {
    display: block;
    font-family: var(--ppn-font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ppn-charcoal);
    margin-bottom: 4px;
}
.pd-benefit span {
    font-family: var(--ppn-font-heading);
    font-size: 0.72rem;
    color: var(--ppn-text-muted);
    line-height: 1.4;
}


/* ═══════════════════════════════════════
   5. HOW IT WORKS
   ═══════════════════════════════════════ */
.pd-steps { display: flex; flex-direction: column; }
.pd-step {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--ppn-border);
    transition: background 150ms var(--pd-ease);
}
.pd-step:last-child { border-bottom: none; }
.pd-step:hover {
    background: var(--ppn-bg-cream);
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: var(--ppn-radius-sm);
}
.pd-step__num {
    width: 36px;
    height: 36px;
    border-radius: var(--ppn-radius-circle);
    background: var(--ppn-maroon);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ppn-font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
}
.pd-step__body h3 {
    font-family: var(--ppn-font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ppn-charcoal);
    margin: 0 0 4px;
}
.pd-step__body p {
    font-family: var(--ppn-font-body);
    font-size: 0.82rem;
    color: var(--ppn-text-muted);
    margin: 0;
    line-height: 1.55;
}


/* ═══════════════════════════════════════
   6. WHAT'S INCLUDED
   ═══════════════════════════════════════ */
.pd-includes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.pd-includes__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: var(--ppn-font-heading);
    font-size: 0.85rem;
    color: var(--ppn-charcoal);
    line-height: 1.4;
    padding: 4px 0;
}
.pd-includes__item svg { flex-shrink: 0; margin-top: 2px; }


/* ═══════════════════════════════════════
   7. ABOUT THIS RITUAL (expandable)
   ═══════════════════════════════════════ */
.pd-about {
    position: relative;
    max-height: 180px;
    overflow: hidden;
    transition: max-height 0.5s var(--pd-ease-panel);
}
.pd-about.expanded { max-height: 3000px; }
.pd-about__content {
    font-family: var(--ppn-font-body);
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--ppn-text);
}
.pd-about__content p { margin: 0 0 14px; }
.pd-about__content h2,
.pd-about__content h3 {
    font-family: var(--ppn-font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin: 20px 0 8px;
}
.pd-about__content ul,
.pd-about__content ol { padding-left: 18px; margin: 10px 0; }
.pd-about__content li { margin-bottom: 4px; }
.pd-about__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--ppn-bg));
    pointer-events: none;
    transition: opacity 0.3s var(--pd-ease);
}
.pd-about.expanded .pd-about__fade { opacity: 0; }
.pd-about__toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    font-family: var(--ppn-font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ppn-maroon);
    cursor: pointer;
    padding: 8px 0;
    margin-top: 4px;
    transition: color 150ms;
}
.pd-about__toggle:hover { color: var(--ppn-maroon-hover); }
.pd-about__toggle svg { transition: transform 0.3s var(--pd-ease); }
.pd-about__toggle.expanded svg { transform: rotate(180deg); }


/* ═══════════════════════════════════════
   8. REVIEWS (horizontal scroll)
   ═══════════════════════════════════════ */
.pd-reviews { gap: 14px; padding-bottom: 4px; }
.pd-review {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--ppn-white);
    border: 1px solid var(--ppn-border);
    border-radius: var(--ppn-radius-md);
    padding: 20px;
    transition: all 200ms var(--pd-ease);
}
.pd-review:hover {
    border-color: var(--ppn-border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.pd-review__stars { display: flex; gap: 1px; margin-bottom: 10px; }
.pd-review__text {
    font-family: var(--ppn-font-body);
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--ppn-text);
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pd-review__footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--ppn-border);
}
.pd-review__avatar {
    width: 32px;
    height: 32px;
    border-radius: var(--ppn-radius-circle);
    background: var(--ppn-bg-cream-deep);
    color: var(--ppn-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ppn-font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    flex-shrink: 0;
}
.pd-review__name {
    font-family: var(--ppn-font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ppn-charcoal);
    display: block;
}
.pd-review__date {
    font-family: var(--ppn-font-heading);
    font-size: 0.68rem;
    color: var(--ppn-text-muted);
}


/* ═══════════════════════════════════════
   9. FAQ
   ═══════════════════════════════════════ */
.pd-faq__item {
    background: var(--ppn-white);
    border-radius: var(--ppn-radius-md);
    margin-bottom: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}
.pd-faq__q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
    font-family: var(--ppn-font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ppn-charcoal);
    line-height: 1.4;
    list-style: none;
}
.pd-faq__q::-webkit-details-marker { display: none; }
.pd-faq__q::marker { display: none; content: ''; }
.pd-faq__chev {
    flex-shrink: 0;
    color: var(--ppn-text-light);
    transition: transform 0.3s var(--pd-ease-panel), color 0.2s;
}
.pd-faq__item[open] .pd-faq__chev {
    transform: rotate(180deg);
    color: var(--ppn-maroon);
}
.pd-faq__a { padding: 0 20px 18px; }
.pd-faq__a p {
    font-family: var(--ppn-font-body);
    font-size: 0.85rem;
    color: var(--ppn-text-muted);
    margin: 0;
    line-height: 1.65;
}


/* ═══════════════════════════════════════
   10. RELATED PRODUCTS (horizontal scroll + quick add)
   ═══════════════════════════════════════ */
.pd-related { gap: 14px; padding-bottom: 4px; }
.pd-rcard {
    flex: 0 0 200px;
    scroll-snap-align: start;
    border: 1px solid var(--ppn-border);
    border-radius: var(--ppn-radius-md);
    overflow: hidden;
    background: var(--ppn-white);
    transition: all 200ms var(--pd-ease);
    position: relative;
}
.pd-rcard:hover {
    border-color: var(--ppn-border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.pd-rcard__link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.pd-rcard__img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.pd-rcard__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--pd-ease);
}
.pd-rcard:hover .pd-rcard__img img { transform: scale(1.05); }
.pd-rcard__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--ppn-maroon);
    color: #fff;
    font-family: var(--ppn-font-heading);
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--ppn-radius-pill);
}
.pd-rcard__body { padding: 12px; padding-bottom: 8px; }
.pd-rcard__cat {
    font-family: var(--ppn-font-heading);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ppn-saffron);
    display: block;
    margin-bottom: 2px;
}
.pd-rcard__name {
    font-family: var(--ppn-font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ppn-charcoal);
    margin: 0 0 6px;
    line-height: 1.3;
}
.pd-rcard__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pd-rcard__price {
    font-family: var(--ppn-font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--ppn-maroon);
}
.pd-rcard__rating {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: var(--ppn-font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--ppn-charcoal);
}

/* Quick add button */
.pd-rcard__add {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: calc(100% - 24px);
    margin: 0 12px 12px;
    padding: 8px;
    background: transparent;
    border: 1.5px solid var(--ppn-maroon);
    border-radius: var(--ppn-radius-sm);
    font-family: var(--ppn-font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ppn-maroon);
    cursor: pointer;
    transition: all 200ms var(--pd-ease-spring);
}
.pd-rcard__add:hover {
    background: var(--ppn-maroon);
    color: #fff;
}
.pd-rcard__add:active { transform: scale(0.95); }
.pd-rcard__add.adding {
    pointer-events: none;
    opacity: 0.6;
}
.pd-rcard__add.added {
    background: var(--ppn-green);
    border-color: var(--ppn-green);
    color: #fff;
}


/* ═══════════════════════════════════════
   REDESIGNED BOOKING WIDGET (desktop)
   ═══════════════════════════════════════ */
.pd-widget {
    position: sticky;
    top: 90px;
    align-self: flex-start;
}
.pd-widget__inner {
    background: var(--ppn-white);
    border: 1px solid var(--ppn-border);
    border-radius: var(--ppn-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Highlight bar at top */
.pd-widget__highlight {
    background: var(--ppn-bg-cream);
    padding: 10px 20px;
    font-family: var(--ppn-font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ppn-saffron-deep);
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--ppn-border);
}
.pd-widget__highlight svg { color: var(--ppn-saffron); flex-shrink: 0; }

/* Price section */
.pd-widget__price-section {
    padding: 20px 24px 0;
}
.pd-widget__price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 2px;
}
.pd-widget__savings {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--ppn-font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ppn-green);
    margin-top: 4px;
}

/* Form area */
.pd-widget__form {
    padding: 16px 24px;
}

/* Divider */
.pd-widget__divider {
    height: 1px;
    background: var(--ppn-border);
    margin: 0 24px;
}

/* WhatsApp in widget */
.pd-btn--wa-widget {
    margin: 12px 24px;
    width: calc(100% - 48px);
}

/* Trust */
.pd-widget__trust {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px 24px;
    border-top: 1px solid var(--ppn-border);
    margin-top: 4px;
}
.pd-widget__trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ppn-font-heading);
    font-size: 0.72rem;
    color: var(--ppn-text-muted);
}

/* Help */
.pd-widget__help {
    text-align: center;
    font-family: var(--ppn-font-heading);
    font-size: 0.75rem;
    color: var(--ppn-text-muted);
    padding: 10px 24px 16px;
    border-top: 1px solid var(--ppn-border);
}
.pd-widget__help a {
    color: var(--ppn-maroon);
    text-decoration: none;
    font-weight: 600;
}


/* ═══════════════════════════════════════
   MOBILE STICKY BOTTOM BAR
   ═══════════════════════════════════════ */
.pd-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 253, 251, 0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--ppn-border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transform: translateY(100%);
    transition: transform 0.3s var(--pd-ease-panel);
}
.pd-sticky-bar.visible { transform: translateY(0); }
.pd-sticky-bar__price { font-family: var(--ppn-font-heading); }
.pd-sticky-bar__amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ppn-maroon);
    display: block;
    letter-spacing: -0.02em;
}
.pd-sticky-bar__label { font-size: 0.62rem; color: var(--ppn-text-muted); }
.pd-sticky-bar__btn {
    padding: 13px 28px;
    background: var(--ppn-maroon);
    color: #fff;
    font-family: var(--ppn-font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: var(--ppn-radius-sm);
    text-decoration: none;
    white-space: nowrap;
    transition: all 200ms var(--pd-ease-spring);
}
.pd-sticky-bar__btn:hover { background: var(--ppn-maroon-hover); color: #fff; }
.pd-sticky-bar__btn:active { transform: scale(0.97); }


/* ═══════════════════════════════════════
   TOAST NOTIFICATIONS
   ═══════════════════════════════════════ */
.ppn-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: 400px;
    width: calc(100vw - 40px);
}
.ppn-toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: var(--ppn-radius-md);
    font-family: var(--ppn-font-heading);
    font-size: 0.85rem;
    line-height: 1.45;
    pointer-events: auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(120%) scale(0.95);
    opacity: 0;
    transition: all 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}
.ppn-toast--visible {
    transform: translateX(0) scale(1);
    opacity: 1;
}
.ppn-toast--leaving {
    transform: translateX(120%) scale(0.9);
    opacity: 0;
    transition: all 300ms cubic-bezier(0.4, 0, 1, 1);
}

/* Progress bar animation at bottom */
.ppn-toast::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: currentColor;
    opacity: 0.2;
    animation: ppnToastProgress 5s linear forwards;
    width: 100%;
    transform-origin: left;
}
@keyframes ppnToastProgress {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

/* Types */
.ppn-toast--success,
.ppn-toast--cart {
    background: #fff;
    border: 1px solid #d1fae5;
    color: #065f46;
}
.ppn-toast--error {
    background: #fff;
    border: 1px solid #fecaca;
    color: #991b1b;
}
.ppn-toast--info {
    background: #fff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

/* Icon */
.ppn-toast__icon {
    flex-shrink: 0;
    margin-top: 1px;
    width: 22px;
    height: 22px;
}
.ppn-toast--success .ppn-toast__icon,
.ppn-toast--cart .ppn-toast__icon { color: var(--ppn-green); }
.ppn-toast--error .ppn-toast__icon { color: #dc2626; }
.ppn-toast--info .ppn-toast__icon { color: #3b82f6; }

/* Body */
.ppn-toast__body {
    flex: 1;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    min-width: 0;
}
.ppn-toast__thumb {
    width: 44px;
    height: 44px;
    border-radius: var(--ppn-radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--ppn-border);
}
.ppn-toast__content {
    flex: 1;
    min-width: 0;
}
.ppn-toast__msg {
    display: block;
    font-weight: 600;
    color: var(--ppn-charcoal);
    font-size: 0.82rem;
    line-height: 1.4;
}
.ppn-toast__action {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ppn-maroon);
    text-decoration: none;
    transition: color 150ms;
}
.ppn-toast__action:hover {
    color: var(--ppn-maroon-hover);
    text-decoration: underline;
}
.ppn-toast__close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.3;
    color: var(--ppn-charcoal);
    padding: 0;
    line-height: 1;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 150ms;
}
.ppn-toast__close:hover { opacity: 0.8; }

/* Loading state for ATC button */
.single_add_to_cart_button.loading {
    opacity: 0.7 !important;
    pointer-events: none !important;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .pd-sticky-bar { display: flex; }
    .pd-main { padding-bottom: 80px; }
    .pd-section--cream {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 768px) {
    .pd-header__title { font-size: 1.25rem; }
    .pd-price__current { font-size: 1.5rem; }
    .pd-includes { grid-template-columns: 1fr; }
    .pd-benefit { flex: 0 0 170px; padding: 16px 14px; }
    .pd-review { flex: 0 0 250px; padding: 16px; }
    .pd-rcard { flex: 0 0 170px; }
    .pd-step { gap: 12px; }
    .pd-step__num { width: 32px; height: 32px; font-size: 0.78rem; }
    .pd-scroll-btn--left { left: 4px; }
    .pd-scroll-btn--right { right: 4px; }
}

@media (max-width: 480px) {
    .pd-header__title { font-size: 1.15rem; }
    .pd-benefit { flex: 0 0 160px; }
    .pd-review { flex: 0 0 230px; }
    .pd-rcard { flex: 0 0 155px; }
    .pd-sticky-bar__btn { padding: 12px 20px; font-size: 0.82rem; }
}

/* Toast mobile */
@media (max-width: 768px) {
    .ppn-toast-container {
        top: auto;
        bottom: 80px; /* Above sticky bar */
        right: 12px;
        left: 12px;
        max-width: none;
        width: auto;
    }
    .ppn-toast {
        transform: translateY(30px) scale(0.95);
    }
    .ppn-toast--visible {
        transform: translateY(0) scale(1);
    }
    .ppn-toast--leaving {
        transform: translateY(30px) scale(0.9);
    }
    .ppn-toast { font-size: 0.8rem; padding: 14px 16px; }
    .ppn-toast__thumb { width: 36px; height: 36px; }
    .ppn-toast__msg { font-size: 0.78rem; }
}
