/* ══════════════════════════════════════════════════════════════════════════════
   VINDHYA MILLETS — STANDARD LUXURY PRODUCT DETAIL PAGE SYSTEM
   Production-Ready • Zero Image Fading • Standard About & Reviews Architecture
   Desktop & Mobile Precision Optimized
   ══════════════════════════════════════════════════════════════════════════════ */

:root {
    --pd-forest:        #143d28;
    --pd-forest-hover:  #0d2b1c;
    --pd-forest-light:  #1e6535;
    --pd-mint:          #c6f6d5;
    --pd-mint-bg:       #f0fdf4;
    --pd-mint-border:   #bbf7d0;
    --pd-mint-text:     #065f46;
    --pd-amber:         #f59e0b;
    --pd-amber-bg:      #fef3c7;
    --pd-amber-text:    #b45309;
    --pd-coral:         #ef4444;
    --pd-coral-bg:      #fef2f2;
    --pd-coral-text:    #dc2626;
    --pd-warm-bg:       #fcfbf9;
    --pd-card-bg:       #ffffff;
    --pd-border:        #e2e8f0;
    --pd-border-light:  #f1f5f9;
    --pd-text-main:     #0f172a;
    --pd-text-muted:    #64748b;
    --pd-text-faint:    #94a3b8;
    --pd-shadow-sm:     0 2px 8px rgba(0, 0, 0, 0.04);
    --pd-shadow-md:     0 6px 20px rgba(0, 0, 0, 0.06);
    --pd-shadow-lg:     0 14px 36px rgba(20, 61, 40, 0.08);
    --pd-radius-sm:     8px;
    --pd-radius-md:     12px;
    --pd-radius-lg:     18px;
    --pd-radius-xl:     24px;
    --pd-radius-pill:   9999px;
}

/* ── CONTAINER & GLOBAL BASE ── */
.pd-main {
    background: #ffffff !important;
    font-family: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--pd-text-main);
    padding-bottom: 5rem;
    overflow-x: hidden;
}

.pd-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

/* ── PROMO TICKER ── */
.pd-mobile-promo-ticker {
    background: #eefbf3;
    border-radius: var(--pd-radius-md);
    padding: 10px 16px;
    margin-bottom: 1.25rem;
    border: 1px solid #c6f6d5;
}

.pd-promo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.88rem;
    color: #14532d;
    font-weight: 500;
}

.pd-promo-truck {
    color: #16a34a;
    display: flex;
    align-items: center;
}

.pd-promo-truck svg {
    width: 18px;
    height: 18px;
}

.pd-promo-text {
    flex: 1;
}

.pd-promo-text strong {
    color: #0f3e26;
    font-weight: 800;
}

.pd-promo-divider {
    color: #86efac;
    margin: 0 6px;
}

.pd-promo-arrow {
    color: #16a34a;
    display: flex;
    align-items: center;
}

.pd-promo-arrow svg {
    width: 16px;
    height: 16px;
}

/* ── BREADCRUMB ── */
.pd-breadcrumb-container {
    padding: 1rem 0 1.25rem;
}

.pd-bc-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--pd-text-faint);
    padding: 0;
    margin: 0;
}

.pd-bc-list a {
    color: var(--pd-text-muted);
    text-decoration: none;
    transition: color 0.15s ease;
}

.pd-bc-list a:hover {
    color: var(--pd-forest);
}

.pd-bc-sep {
    color: #cbd5e1;
    font-size: 0.85rem;
}

.pd-bc-current {
    color: var(--pd-forest);
    font-weight: 700;
}

/* ── HERO GRID (2 Columns: Left Gallery + Right Buy Box) ── */
.pd-hero-grid {
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    gap: 3.25rem;
    align-items: start;
    margin-bottom: 3.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   LEFT GALLERY SECTION
   ═══════════════════════════════════════════════════════════════ */
.pd-gallery-section {
    position: sticky;
    top: 90px;
    z-index: 5;
}

.pd-gallery-modern-layout {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

/* Vertical Thumbnails Rail (Side of Main Image on Desktop/Laptop) */
.pd-vertical-thumbs {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 0 0 76px;
    width: 76px;
    max-height: 520px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 4px 2px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE / Edge */
    -webkit-overflow-scrolling: touch;
}

.pd-vertical-thumbs::-webkit-scrollbar {
    display: none;
}

.pd-vthumb {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    border-radius: var(--pd-radius-md);
    background: #ffffff;
    border: 1.5px solid var(--pd-border);
    padding: 4px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.pd-vthumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.pd-vthumb:hover {
    border-color: #86efac;
    transform: translateY(-2px);
    box-shadow: var(--pd-shadow-sm);
}

.pd-vthumb.active {
    border-color: var(--pd-forest) !important;
    border-width: 2px !important;
    box-shadow: 0 4px 14px rgba(20, 61, 40, 0.15) !important;
    transform: scale(1.03);
}

/* Main Image Stage Card */
.pd-main-stage-card {
    order: 2;
    flex: 1 1 auto;
    width: calc(100% - 92px);
    position: relative;
    aspect-ratio: 1 / 1;
    min-height: 460px;
    max-height: 520px;
    border-radius: var(--pd-radius-lg);
    background: radial-gradient(circle at center, #ffffff 45%, #fbfaf7 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--pd-shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    user-select: none;
}

/* Single image mode — take full width of left column cleanly (no empty thumbnail track) */
.pd-gallery-modern-layout.pd-single-image .pd-main-stage-card,
.pd-main-stage-card.pd-single-stage {
    width: 100% !important;
    max-width: 100% !important;
}

.pd-stage-img-viewport {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 24px;
}

/* Single Rock-Solid Main Image (Zero Fading Bugs, 100% Solid) */
.pd-stage-main-img {
    max-width: 88%;
    max-height: 88%;
    object-fit: contain;
    cursor: zoom-in;
    opacity: 1 !important;
    display: block;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-main-stage-card:hover .pd-stage-main-img {
    transform: scale(1.04);
}

/* Badges & Actions Overlay */
.pd-stage-badge-top {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
}

.pd-stage-action-stack {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.pd-stage-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #475569;
    transition: all 0.2s ease;
    padding: 0;
}

.pd-stage-action-btn:hover {
    transform: scale(1.08);
    color: var(--pd-forest);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.pd-stage-action-btn svg {
    width: 18px;
    height: 18px;
}

.pd-wishlist-float-btn.active {
    color: #ef4444 !important;
    background: #fef2f2 !important;
    border-color: #fca5a5 !important;
}

.pd-wishlist-float-btn.active svg,
.pd-wishlist-float-btn.active .feather-heart {
    fill: #ef4444 !important;
    stroke: #ef4444 !important;
    color: #ef4444 !important;
}

.pd-wishlist-float-btn:not(.active) svg,
.pd-wishlist-float-btn:not(.active) .feather-heart {
    fill: none !important;
    stroke: currentColor !important;
}

.pd-wishlist-float-btn.wl-loading {
    opacity: 0.6;
    pointer-events: none;
}

@keyframes pdHeartPop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.35); }
    70%  { transform: scale(0.92); }
    100% { transform: scale(1); }
}

.pd-wishlist-float-btn.heart-anim-add {
    animation: pdHeartPop 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275) both !important;
}

.pd-stage-counter {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
    z-index: 10;
    letter-spacing: 0.5px;
}

/* Nav Chevrons */
.pd-stage-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 8;
    color: var(--pd-forest);
    transition: all 0.2s ease;
}

.pd-stage-arrow:hover {
    background: #ffffff;
    color: var(--pd-forest-hover);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.pd-stage-arrow-prev { left: 14px; }
.pd-stage-arrow-next { right: 14px; }

/* Stage Trust Strip (Desktop) */
.pd-stage-trust-strip {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 480px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-radius: var(--pd-radius-pill);
    padding: 8px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(22, 101, 52, 0.12);
    z-index: 8;
}

.pd-stage-trust-item {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--pd-forest);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.pd-stage-trust-item svg {
    width: 14px;
    height: 14px;
    color: #15803d;
    flex-shrink: 0;
}

/* Thumbnail Overlays */
.pd-thumb-overlay-play {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.pd-thumb-overlay-play svg {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.pd-thumb-overlay-more {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.1;
    border-radius: 8px;
}

.pd-thumb-overlay-more small {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   RIGHT BUY BOX COLUMN
   ═══════════════════════════════════════════════════════════════ */
.pd-info-col {
    display: flex;
    flex-direction: column;
}

/* Top Header Badges & SKU Row */
.pd-top-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
}

.pd-top-pills {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* 1. Bestseller Luxury Badge */
.pd-pill-bestseller {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    color: #92400e;
    border: 1px solid #fde68a;
    font-size: 0.73rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 9999px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 1px 3px rgba(245, 158, 11, 0.12);
    line-height: 1.25;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    user-select: none;
}
.pd-pill-bestseller:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(245, 158, 11, 0.2);
}
.pd-pill-bestseller svg,
.pd-pill-bestseller i {
    width: 13px;
    height: 13px;
    color: #d97706;
    flex-shrink: 0;
}

/* 2. Assured Quality Trust Seal */
.pd-pill-assured {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
    font-size: 0.73rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    letter-spacing: 0.02em;
    box-shadow: 0 1px 3px rgba(22, 101, 52, 0.08);
    line-height: 1.25;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    user-select: none;
}
.pd-pill-assured:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(22, 101, 52, 0.14);
}
.pd-pill-assured svg,
.pd-pill-assured i {
    width: 13px;
    height: 13px;
    color: #16a34a;
    stroke-width: 2.5;
    flex-shrink: 0;
}

/* 3. SKU Tag (Monospace tech pill) */
.pd-sku-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.04em;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    line-height: 1.2;
    user-select: none;
}
.pd-sku-tag .pd-sku-label {
    color: #94a3b8;
    font-weight: 600;
}
.pd-sku-tag .pd-sku-val {
    color: #334155;
    font-weight: 700;
}

/* 4. Category Kicker (e.g. NAMKEEN) */
.pd-cat-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 800;
    color: #15803d;
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    padding: 3px 10px;
    border-radius: 6px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
    width: fit-content;
    line-height: 1.25;
}
.pd-cat-kicker svg {
    width: 13px;
    height: 13px;
    color: #16a34a;
    flex-shrink: 0;
}

.pd-title-brand {
    font-size: clamp(1.85rem, 2.6vw, 2.4rem);
    font-weight: 800;
    color: var(--pd-forest);
    line-height: 1.18;
    margin: 0 0 6px 0;
    letter-spacing: -0.02em;
}

.pd-subtitle-brand {
    font-size: 0.98rem;
    color: var(--pd-text-muted);
    font-weight: 500;
    margin: 0 0 12px 0;
    font-style: italic;
}

/* Rating & Social Proof Row */
.pd-rating-social-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    cursor: pointer;
}

.pd-stars-cluster {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--pd-amber);
}

.pd-rating-score {
    font-weight: 800;
    color: var(--pd-text-main);
    margin-left: 4px;
}

.pd-rating-count {
    color: var(--pd-text-muted);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pd-social-sep {
    color: #cbd5e1;
}

.pd-social-purchased {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #15803d;
    font-weight: 700;
    font-size: 0.86rem;
}

/* 4 Feature Highlights Grid */
.pd-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 1.5rem;
}

.pd-highlight-card {
    background: var(--pd-mint-bg);
    border: 1px solid var(--pd-mint-border);
    border-radius: var(--pd-radius-md);
    padding: 10px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.pd-highlight-card:hover {
    transform: translateY(-2px);
    border-color: #86efac;
}

.pd-highlight-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(22, 101, 52, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #15803d;
}

.pd-highlight-icon-wrap svg {
    width: 16px;
    height: 16px;
}

.pd-highlight-texts {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pd-highlight-title {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--pd-forest);
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pd-highlight-sub {
    font-size: 0.68rem;
    color: #166534;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Choose Pack Size Section */
.pd-pack-selector-wrap {
    margin-bottom: 1.25rem;
}

.pd-pack-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.pd-pack-label-title {
    font-size: 0.94rem;
    font-weight: 800;
    color: var(--pd-text-main);
}

.pd-size-guide-btn {
    background: transparent;
    border: none;
    color: #15803d;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 0;
}

.pd-size-guide-btn:hover {
    text-decoration: underline;
}

.pd-pack-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pd-pack-card {
    background: #ffffff;
    border: 1.5px solid var(--pd-border);
    border-radius: var(--pd-radius-md);
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    text-align: center;
}

.pd-pack-card:hover {
    border-color: #86efac;
    transform: translateY(-2px);
}

.pd-pack-card.active {
    border-color: var(--pd-forest) !important;
    border-width: 2px !important;
    background: #f0fdf4 !important;
    box-shadow: 0 4px 12px rgba(20, 61, 40, 0.08);
}

.pd-pack-card.active::after {
    content: '◆';
    position: absolute;
    top: 5px;
    right: 7px;
    font-size: 9px;
    color: #16a34a;
}

.pd-pack-badge {
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    background: #15803d;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: var(--pd-radius-pill);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pd-pack-weight {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--pd-forest);
    margin-bottom: 2px;
}

.pd-pack-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--pd-text-main);
    line-height: 1.1;
}

.pd-pack-unit {
    font-size: 0.72rem;
    color: var(--pd-text-faint);
    font-weight: 600;
    margin-top: 2px;
}

/* Pricing & Stock Row */
.pd-pricing-stock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1.25rem 0 1.5rem;
    padding: 6px 0;
}

.pd-price-main-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.pd-price-big {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--pd-text-main);
    line-height: 1;
    letter-spacing: -0.02em;
}

.pd-price-struck {
    font-size: 1.15rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.pd-save-chip {
    background: var(--pd-coral-bg);
    color: var(--pd-coral-text);
    font-size: 0.82rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--pd-radius-sm);
    letter-spacing: 0.2px;
}

.pd-serving-anchor-line {
    font-size: 0.92rem;
    font-weight: 700;
    color: #15803d;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pd-stock-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.pd-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.92rem;
    font-weight: 800;
    color: #0f172a;
}

.pd-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16a34a;
}

.pd-stock-arrow {
    width: 14px;
    height: 14px;
    color: #64748b;
}

.pd-stock-sub {
    font-size: 0.74rem;
    color: #64748b;
    margin-top: 2px;
}

/* Action Buttons: Desktop Side-by-Side */
.pd-actions-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.pd-qty-stepper {
    display: flex;
    align-items: center;
    height: 50px;
    background: #ffffff;
    border: 1.5px solid var(--pd-border);
    border-radius: var(--pd-radius-md);
    padding: 0 6px;
    flex-shrink: 0;
}

.pd-qty-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    color: var(--pd-forest);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.15s ease;
}

.pd-qty-btn:hover {
    background: #f1f5f9;
}

.pd-qty-val {
    width: 38px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 800;
    color: var(--pd-text-main);
}

.pd-btn-cart {
    flex: 1.2;
    height: 50px;
    background: var(--pd-forest);
    color: #ffffff;
    border: none;
    border-radius: var(--pd-radius-md);
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(20, 61, 40, 0.22);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-btn-cart:hover {
    background: var(--pd-forest-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(20, 61, 40, 0.3);
}

.pd-btn-cart svg {
    width: 18px;
    height: 18px;
}

.pd-btn-buynow {
    flex: 1;
    height: 50px;
    background: var(--pd-mint);
    color: var(--pd-mint-text);
    border: none;
    border-radius: var(--pd-radius-md);
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(6, 95, 70, 0.12);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-btn-buynow:hover {
    background: #a7f3d0;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(6, 95, 70, 0.2);
}

.pd-btn-buynow svg {
    width: 18px;
    height: 18px;
}

.pd-cart-msg {
    margin-top: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #15803d;
}

/* Trust Assurances Row */
.pd-trust-guarantees-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--pd-border-light);
}

.pd-guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pd-guarantee-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid var(--pd-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pd-forest);
    flex-shrink: 0;
}

.pd-guarantee-icon svg {
    width: 18px;
    height: 18px;
}

.pd-guarantee-texts {
    display: flex;
    flex-direction: column;
}

.pd-guarantee-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--pd-text-main);
    line-height: 1.2;
}

.pd-guarantee-sub {
    font-size: 0.72rem;
    color: var(--pd-text-muted);
    line-height: 1.2;
}

/* ═══════════════════════════════════════════════════════════════
   STANDARD PRODUCT DETAILS TABS BAR & ARCHITECTURE
   ═══════════════════════════════════════════════════════════════ */
.pd-tabs-nav-bar {
    display: flex;
    align-items: center;
    gap: 32px;
    border-bottom: 2px solid #e2e8f0;
    margin: 3rem 0 2rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.pd-tabs-nav-bar::-webkit-scrollbar {
    display: none;
}

.pd-tab-btn {
    background: transparent;
    border: none;
    padding: 14px 4px 16px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.pd-tab-btn:hover {
    color: var(--pd-forest);
}

.pd-tab-btn.active {
    color: var(--pd-forest) !important;
    font-weight: 800;
}

.pd-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: var(--pd-forest);
}

.pd-tab-panel {
    display: none;
    animation: pdTabFade 0.25s ease forwards;
}

.pd-tab-panel.active {
    display: block;
}

@keyframes pdTabFade {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   TAB 1: PRODUCT DETAILS / ABOUT (STANDARD COMPREHENSIVE VIEW)
   ═══════════════════════════════════════════════════════════════ */
.pd-about-standard-layout {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 32px;
    align-items: start;
}

.pd-about-main-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pd-about-card-panel {
    background: #ffffff;
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-lg);
    padding: 28px;
    box-shadow: var(--pd-shadow-sm);
}

.pd-section-heading {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--pd-forest);
    margin: 0 0 16px 0;
    letter-spacing: -0.01em;
}

.pd-about-prose {
    font-size: 0.96rem;
    line-height: 1.75;
    color: #334155;
    margin: 0 0 20px 0;
}

.pd-about-prose p {
    margin: 0 0 14px 0;
}

/* Key Highlights Checkmarks Grid */
.pd-about-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.pd-about-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: #f8fafc;
    border-radius: var(--pd-radius-md);
    border: 1px solid var(--pd-border-light);
}

.pd-about-hl-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #15803d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.pd-about-hl-icon svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

.pd-about-hl-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--pd-forest);
    margin-bottom: 2px;
}

.pd-about-hl-text span {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.4;
}

/* Right Column: Origin & Storage Cards */
.pd-about-side-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pd-origin-banner-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #e6f7ec 100%);
    border: 1px solid #bbf7d0;
    border-radius: var(--pd-radius-lg);
    padding: 24px;
}

.pd-origin-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--pd-forest);
    margin-bottom: 12px;
}

.pd-origin-header svg {
    width: 20px;
    height: 20px;
    color: #15803d;
}

.pd-origin-text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #14532d;
    margin: 0;
}

.pd-storage-card {
    background: #ffffff;
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-lg);
    padding: 22px;
}

.pd-storage-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--pd-forest);
    margin-bottom: 12px;
}

.pd-storage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pd-storage-tile {
    background: #f8fafc;
    border-radius: var(--pd-radius-sm);
    padding: 10px;
    font-size: 0.84rem;
}

.pd-storage-tile strong {
    display: block;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 2px;
}

.pd-storage-tile span {
    color: #64748b;
}

/* ═══════════════════════════════════════════════════════════════
   TAB 2: NUTRITION PROFILE
   ═══════════════════════════════════════════════════════════════ */
.pd-tab-nutrition-panel {
    background: #ffffff;
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-lg);
    padding: 30px;
    box-shadow: var(--pd-shadow-sm);
}

.pd-nutrition-table-card {
    max-width: 520px;
    background: #ffffff;
    border: 1px solid var(--pd-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.pd-nutrition-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.pd-macros-bars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.pd-macro-stat-box {
    background: #f8fafc;
    border-radius: var(--pd-radius-md);
    padding: 18px;
    border: 1px solid var(--pd-border);
}

.pd-macro-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pd-macro-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pd-forest);
    margin: 6px 0 10px;
}

.pd-macro-bar-track {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.pd-macro-bar-fill {
    height: 100%;
    border-radius: 3px;
}

/* ═══════════════════════════════════════════════════════════════
   TAB 3: INGREDIENTS & PURITY
   ═══════════════════════════════════════════════════════════════ */
.pd-tab-ingredients-panel {
    background: #ffffff;
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-lg);
    padding: 30px;
    box-shadow: var(--pd-shadow-sm);
}

.pd-ingredients-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0 24px;
}

.pd-ingredient-chip {
    background: var(--pd-mint-bg);
    border: 1px solid var(--pd-mint-border);
    color: var(--pd-mint-text);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 9px 18px;
    border-radius: var(--pd-radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   TAB 4: HOW TO USE / SERVING
   ═══════════════════════════════════════════════════════════════ */
.pd-tab-howto-panel {
    background: #ffffff;
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-lg);
    padding: 30px;
    box-shadow: var(--pd-shadow-sm);
}

.pd-steps-flex {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.pd-step-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: var(--pd-radius-md);
    border: 1px solid var(--pd-border);
}

.pd-step-number-bubble {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--pd-forest);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   TAB 5: CUSTOMER REVIEWS (STANDARD E-COMMERCE SYSTEM)
   ═══════════════════════════════════════════════════════════════ */
.pd-tab-reviews-panel {
    background: #ffffff;
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-lg);
    padding: 32px;
    box-shadow: var(--pd-shadow-sm);
}

.pd-reviews-header-layout {
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    gap: 32px;
    align-items: center;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--pd-border);
    margin-bottom: 32px;
}

.pd-review-big-score {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: var(--pd-radius-md);
    border: 1px solid var(--pd-border);
}

.pd-big-rating-number {
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--pd-forest);
    line-height: 1;
}

.pd-review-dist-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pd-star-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #475569;
}

.pd-star-bar-track {
    flex: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.pd-star-bar-fill {
    height: 100%;
    background: var(--pd-amber);
    border-radius: 4px;
}

.pd-write-review-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
}

.pd-btn-open-review {
    background: var(--pd-forest);
    color: #ffffff;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: var(--pd-radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(20, 61, 40, 0.15);
}

.pd-btn-open-review:hover {
    background: var(--pd-forest-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(20, 61, 40, 0.25);
}

.pd-review-cards-feed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.pd-single-review-card {
    background: #f8fafc;
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.pd-reviewer-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.pd-reviewer-author-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pd-reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pd-forest);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-reviewer-name {
    font-weight: 800;
    font-size: 0.94rem;
    color: var(--pd-text-main);
}

.pd-verified-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: #15803d;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.pd-review-stars-gold {
    color: var(--pd-amber);
    margin-bottom: 8px;
}

.pd-review-body-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #334155;
    margin: 0;
}

.pd-review-form-card {
    margin-top: 36px;
    padding: 28px;
    background: #f8fafc;
    border-radius: var(--pd-radius-md);
    border: 1.5px solid var(--pd-border);
    transition: all 0.3s ease;
}

.pd-review-inputs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   TAB 6: FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */
.pd-faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pd-faq-item-card {
    background: #ffffff;
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.pd-faq-q-btn {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 700;
    color: var(--pd-forest);
    cursor: pointer;
    text-align: left;
}

.pd-faq-a-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 22px;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.65;
}

.pd-faq-item-card.open .pd-faq-a-content {
    max-height: 400px;
    padding-bottom: 18px;
}

.pd-faq-item-card.open .pd-faq-chevron {
    transform: rotate(180deg);
}

/* ═══════════════════════════════════════════════════════════════
   "YOU MAY ALSO LIKE" RELATED PRODUCTS
   ═══════════════════════════════════════════════════════════════ */
.pd-related-section {
    margin-top: 4.5rem;
}

.pd-related-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.pd-related-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pd-forest);
    margin: 0;
}

.pd-related-arrows-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-rel-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid var(--pd-border);
    color: var(--pd-forest);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.pd-rel-arrow-btn:hover:not(:disabled) {
    background: var(--pd-forest);
    color: #ffffff;
    border-color: var(--pd-forest);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 61, 40, 0.22);
}

.pd-rel-arrow-btn:active:not(:disabled) {
    transform: scale(0.92);
}

.pd-rel-arrow-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* ════ Smooth Swipeable / Draggable Product Carousel ════ */
.pd-related-cards-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 8px 4px 20px 4px;
    margin: -8px -4px 0 -4px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.pd-related-cards-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.pd-related-cards-grid.is-dragging {
    cursor: grabbing !important;
    scroll-behavior: auto !important;
    scroll-snap-type: none !important;
}

.pd-clean-product-card {
    background: #ffffff;
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.22s ease;
    flex: 0 0 calc((100% - 60px) / 4);
    min-width: 240px;
    max-width: 320px;
    scroll-snap-align: start;
    box-sizing: border-box;
    -webkit-user-drag: none;
    user-drag: none;
}

.pd-clean-product-card * {
    -webkit-user-drag: none;
    user-drag: none;
}

.pd-clean-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pd-shadow-md);
    border-color: #cbd5e1;
}

.pd-clean-card-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
}

.pd-clean-card-img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.pd-clean-product-card:hover .pd-clean-card-img {
    transform: scale(1.05);
}

.pd-clean-card-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--pd-forest);
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pd-clean-card-subtitle {
    font-size: 0.8rem;
    color: var(--pd-text-muted);
    margin-bottom: 12px;
}

.pd-clean-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 8px;
}

.pd-clean-card-prices {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.pd-clean-curr-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pd-text-main);
}

.pd-clean-mrp {
    font-size: 0.84rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.pd-clean-add-btn {
    background: var(--pd-forest);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 7px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
}

.pd-clean-add-btn:hover {
    background: var(--pd-forest-hover);
    transform: scale(1.04);
}

/* ═══════════════════════════════════════════════════════════════
   BOTTOM BRAND TRUST STRIP
   ═══════════════════════════════════════════════════════════════ */
.pd-bottom-brand-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 4.5rem;
    padding: 24px 0 10px;
    border-top: 1px solid var(--pd-border);
    align-items: center;
}

.pd-bottom-trust-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pd-bottom-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f0fdf4;
    color: #15803d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pd-bottom-trust-icon svg {
    width: 22px;
    height: 22px;
}

.pd-bottom-trust-text strong {
    display: block;
    font-size: 0.94rem;
    font-weight: 800;
    color: var(--pd-forest);
}

.pd-bottom-trust-text span {
    font-size: 0.78rem;
    color: var(--pd-text-muted);
}

.pd-bottom-signature-motto {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #15803d;
    text-align: right;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   STICKY DOCKS DISABLED (PREVENTS OVERLAPPING FLOATING CART)
   ═══════════════════════════════════════════════════════════════ */
.pd-sticky-dock-bar,
.pd-sticky-bar {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* ═══════════════════════════════════════════════════════════════
   LIGHTBOX & SIZE GUIDE MODALS
   ═══════════════════════════════════════════════════════════════ */
.pd-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.pd-lightbox.active {
    display: flex;
}

.pd-lb-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
}

.pd-lb-close {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 2.2rem;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

.pd-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.pd-lb-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.pd-lb-prev { left: 24px; }
.pd-lb-next { right: 24px; }

/* Size Guide Modal */
.pd-sg-modal-card {
    background: #ffffff;
    border-radius: 16px;
    max-width: 460px;
    width: 90%;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    position: relative;
}

.pd-sg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 14px;
    margin-bottom: 18px;
}

.pd-sg-header h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pd-forest);
}

.pd-sg-close {
    background: transparent;
    border: none;
    font-size: 1.6rem;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
}

.pd-sg-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pd-sg-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.pd-sg-badge {
    background: var(--pd-forest);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 6px;
    flex-shrink: 0;
}

.pd-sg-info {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
}

.pd-sg-info strong {
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 2px;
}

.pd-sg-info span {
    color: #64748b;
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS (ISOLATED & CLEAN)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .pd-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .pd-about-standard-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pd-reviews-header-layout {
        grid-template-columns: 1fr 1fr;
    }

    .pd-write-review-col {
        grid-column: span 2;
    }

    .pd-bottom-brand-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .pd-desktop-only {
        display: none !important;
    }

    .pd-breadcrumb-container {
        display: none !important;
    }

    .pd-page-main {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    .pd-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding: 0 1rem max(96px, calc(76px + env(safe-area-inset-bottom, 16px))) !important;
        box-sizing: border-box !important;
    }

    .pd-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        margin-bottom: 2rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .pd-gallery-section {
        position: relative !important;
        top: 0 !important;
        width: 100% !important;
    }

    /* Clean Full-Width Image + Horizontal Thumbs on Mobile */
    .pd-gallery-modern-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        align-items: stretch !important;
        width: 100% !important;
    }

    .pd-main-stage-card {
        order: 1 !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 16px !important;
        background: radial-gradient(circle at center, #ffffff 40%, #f6f5f0 100%) !important;
        padding: 0 !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }

    .pd-stage-arrow {
        display: none !important;
    }

    .pd-stage-trust-strip {
        display: none !important;
    }

    .pd-stage-main-img {
        max-width: 86% !important;
        max-height: 86% !important;
        object-fit: contain !important;
    }

    .pd-vertical-thumbs {
        order: 2 !important;
        width: 100% !important;
        flex: 0 0 auto !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        overflow-x: auto !important;
        padding: 4px 2px 8px 2px !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .pd-vertical-thumbs::-webkit-scrollbar {
        display: none !important;
    }

    .pd-vthumb {
        width: 64px !important;
        height: 64px !important;
        flex: 0 0 64px !important;
        min-height: 64px !important;
        border-radius: 12px !important;
        border: 1.5px solid #e2e8f0 !important;
        padding: 3px !important;
        cursor: pointer !important;
    }

    .pd-vthumb.active {
        border-color: #16a34a !important;
        border-width: 2px !important;
        box-shadow: 0 2px 8px rgba(22, 163, 74, 0.25) !important;
        transform: scale(1.03) !important;
    }

    .pd-info-col {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .pd-top-header-row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        margin-bottom: 0.65rem !important;
    }

    .pd-pill-assured {
        font-size: 0.72rem !important;
        padding: 3px 9px !important;
    }

    .pd-sku-tag {
        font-size: 0.72rem !important;
        padding: 3px 8px !important;
    }

    .pd-cat-kicker {
        font-size: 0.72rem !important;
        margin-bottom: 0.45rem !important;
    }

    .pd-title-brand {
        font-size: 1.45rem !important;
        line-height: 1.22 !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        margin-bottom: 4px !important;
    }

    .pd-subtitle-brand {
        font-size: 0.88rem !important;
        margin-bottom: 10px !important;
        line-height: 1.4 !important;
    }

    .pd-rating-social-row {
        margin-bottom: 1rem !important;
        gap: 8px !important;
    }

    /* Mobile Highlights Grid: 2x2 Clean Balanced Layout */
    .pd-highlights-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        margin: 12px 0 16px !important;
    }

    .pd-highlight-card {
        padding: 10px 8px !important;
        border-radius: 10px !important;
        background: #f4fbf7 !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .pd-highlight-icon-wrap {
        width: 28px !important;
        height: 28px !important;
        flex-shrink: 0 !important;
    }

    .pd-highlight-texts {
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
        min-width: 0 !important;
    }

    .pd-highlight-title {
        font-size: 0.76rem !important;
        font-weight: 800 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .pd-highlight-sub {
        display: block !important;
        font-size: 0.65rem !important;
        color: #166534 !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        line-height: 1.2 !important;
    }

    /* Mobile Pack Cards Auto-Fit */
    .pd-pack-cards-row {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(95px, 1fr)) !important;
        gap: 8px !important;
    }

    .pd-pack-card {
        padding: 10px 4px 8px !important;
        min-height: 64px !important;
    }

    .pd-pack-weight {
        font-size: 0.88rem !important;
    }

    .pd-pack-price {
        font-size: 1rem !important;
    }

    /* Pricing & Stock Row */
    .pd-pricing-stock-row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        margin: 1rem 0 1.25rem !important;
        padding: 4px 0 !important;
    }

    .pd-price-main-row {
        gap: 8px !important;
    }

    .pd-price-big {
        font-size: 1.95rem !important;
    }

    .pd-price-struck {
        font-size: 1.05rem !important;
    }

    .pd-save-chip {
        font-size: 0.75rem !important;
        padding: 3px 8px !important;
        white-space: nowrap !important;
    }

    .pd-stock-right {
        align-items: flex-start !important;
    }

    /* Mobile Action Buttons: Row 1 Stepper + Add to Cart, Row 2 Buy Now (Full Width) */
    .pd-actions-row {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 10px !important;
        margin-bottom: 12px !important;
        width: 100% !important;
    }

    .pd-qty-stepper {
        width: 105px !important;
        height: 48px !important;
        flex-shrink: 0 !important;
        border-radius: 10px !important;
    }

    .pd-btn-cart {
        flex: 1 1 0% !important;
        min-width: 140px !important;
        height: 48px !important;
        font-size: 0.95rem !important;
        border-radius: 10px !important;
        padding: 0 14px !important;
    }

    .pd-btn-buynow.pd-btn-buynow-full {
        width: 100% !important;
        flex: 0 0 100% !important;
        height: 48px !important;
        margin-bottom: 12px !important;
        font-size: 0.98rem !important;
        border-radius: 10px !important;
    }

    /* Trust Guarantees: 2x2 Grid (2 upar aur 2 niche) */
    .pd-trust-guarantees-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px 10px !important;
        padding: 14px 0 !important;
        margin-bottom: 20px !important;
    }

    .pd-guarantee-item {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        background: #f8fafc !important;
        padding: 9px 10px !important;
        border-radius: 10px !important;
        border: 1px solid #f1f5f9 !important;
        min-width: 0 !important;
    }

    .pd-guarantee-icon {
        width: 32px !important;
        height: 32px !important;
        flex-shrink: 0 !important;
        background: #eef8f2 !important;
        color: #143d28 !important;
        border-color: #d1fae5 !important;
    }

    .pd-guarantee-icon svg {
        width: 15px !important;
        height: 15px !important;
    }

    .pd-guarantee-texts {
        display: flex !important;
        flex-direction: column !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .pd-guarantee-title {
        font-size: 0.78rem !important;
        font-weight: 800 !important;
        color: #0f172a !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .pd-guarantee-sub {
        font-size: 0.68rem !important;
        color: #64748b !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    /* Tabs Bar */
    .pd-tabs-nav-bar {
        gap: 14px !important;
        margin: 1.75rem 0 1.25rem 0 !important;
        padding-bottom: 2px !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .pd-tabs-nav-bar::-webkit-scrollbar {
        display: none !important;
    }

    .pd-tab-btn {
        font-size: 0.88rem !important;
        padding: 10px 4px 12px !important;
        min-height: 42px !important;
        display: inline-flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;
    }

    /* Tab Panels General */
    .pd-about-card-panel,
    .pd-tab-nutrition-panel,
    .pd-tab-ingredients-panel,
    .pd-tab-howto-panel,
    .pd-tab-reviews-panel {
        padding: 16px 14px !important;
        border-radius: 12px !important;
    }

    /* About Section Mobile */
    .pd-about-highlights-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .pd-origin-banner-card,
    .pd-storage-card {
        padding: 16px 14px !important;
        border-radius: 12px !important;
    }

    /* Nutrition & Ingredients Mobile */
    .pd-macros-bars-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .pd-nutrition-table-card {
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .pd-nutrition-table th,
    .pd-nutrition-table td {
        padding: 10px 12px !important;
        font-size: 0.84rem !important;
    }

    .pd-ingredients-pills-row {
        gap: 8px !important;
        margin: 14px 0 18px !important;
    }

    .pd-ingredient-chip {
        font-size: 0.8rem !important;
        padding: 6px 12px !important;
    }

    .pd-step-row {
        padding: 12px 14px !important;
        gap: 12px !important;
    }

    /* Reviews Header Mobile */
    .pd-reviews-header-layout {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .pd-write-review-col {
        grid-column: span 1 !important;
    }

    .pd-review-cards-feed {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .pd-single-review-card {
        padding: 14px !important;
    }

    /* Review Form Responsive Layout */
    .pd-review-form-card {
        padding: 16px 14px !important;
        margin-top: 24px !important;
        border-radius: 12px !important;
    }

    .pd-review-inputs-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .pd-review-submit-row {
        width: 100% !important;
    }

    .pd-btn-submit-review {
        width: 100% !important;
        justify-content: center !important;
        height: 46px !important;
    }

    /* Related Products Mobile Swipe Layout */
    .pd-related-section {
        margin-top: 3rem !important;
    }

    .pd-related-title {
        font-size: 1.25rem !important;
    }

    .pd-related-cards-grid {
        display: flex !important;
        gap: 12px !important;
        padding-bottom: 12px !important;
    }

    .pd-clean-product-card {
        flex: 0 0 74vw !important;
        max-width: 270px !important;
        min-width: 185px !important;
        padding: 12px !important;
    }

    /* Bottom Brand Trust Strip */
    .pd-bottom-brand-strip {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        margin-top: 2.5rem !important;
        padding: 20px 0 10px !important;
    }

    .pd-bottom-signature-motto {
        text-align: center !important;
        font-size: 1.1rem !important;
        margin-top: 4px !important;
    }
}

@media (max-width: 480px) {
    .pd-container {
        padding: 0 0.85rem max(96px, calc(76px + env(safe-area-inset-bottom, 16px))) !important;
    }

    .pd-price-big {
        font-size: 1.8rem !important;
    }

    .pd-trust-guarantees-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px 8px !important;
    }

    .pd-guarantee-item {
        background: #f8fafc !important;
        padding: 8px 8px !important;
        border-radius: 9px !important;
        gap: 6px !important;
    }

    .pd-guarantee-icon {
        width: 28px !important;
        height: 28px !important;
    }

    .pd-guarantee-icon svg {
        width: 14px !important;
        height: 14px !important;
    }

    .pd-guarantee-title {
        font-size: 0.74rem !important;
        line-height: 1.2 !important;
    }

    .pd-guarantee-sub {
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM PRODUCT SHARE MODAL
   ═══════════════════════════════════════════════════════════════ */
.pd-share-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    z-index: 2147483647 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s;
}

.pd-share-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.pd-share-modal-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 24px 60px -12px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 480px;
    padding: 24px 26px 28px;
    transform: scale(0.94) translateY(12px);
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.pd-share-modal-overlay.active .pd-share-modal-card {
    transform: scale(1) translateY(0);
}

.pd-share-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.pd-share-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pd-share-header-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #eef8f2;
    color: #143d28;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-share-title-wrap h3 {
    margin: 0;
    font-size: 1.18rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.pd-share-close-btn {
    background: #f1f5f9;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.pd-share-close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: rotate(90deg);
}

/* Mini Product Preview */
.pd-share-preview {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 22px;
}

.pd-share-preview-thumb {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    object-fit: cover;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.pd-share-preview-info {
    flex: 1;
    min-width: 0;
}

.pd-share-preview-name {
    margin: 0 0 3px 0;
    font-size: 0.94rem;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pd-share-preview-meta {
    margin: 0;
    font-size: 0.86rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pd-share-preview-price {
    font-weight: 800;
    color: #143d28;
}

.pd-share-preview-brand {
    font-weight: 600;
    color: #64748b;
}

/* Social Quick Share Grid */
.pd-share-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 22px;
}

.pd-share-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #334155;
    transition: transform 0.2s ease, color 0.2s ease;
    gap: 7px;
}

.pd-share-item:hover {
    transform: translateY(-3px);
}

.pd-share-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.pd-share-item:hover .pd-share-item-icon {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.pd-share-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    text-align: center;
    white-space: nowrap;
}

/* Platform specific colors */
.pd-share-wa .pd-share-item-icon {
    background: #25d366;
    color: #ffffff;
}
.pd-share-tg .pd-share-item-icon {
    background: #229ed9;
    color: #ffffff;
}
.pd-share-fb .pd-share-item-icon {
    background: #1877f2;
    color: #ffffff;
}
.pd-share-tw .pd-share-item-icon {
    background: #0f1419;
    color: #ffffff;
}
.pd-share-mail .pd-share-item-icon {
    background: #ea4335;
    color: #ffffff;
}

/* Copy Link Box */
.pd-share-copy-box {
    margin-top: 10px;
}

.pd-share-copy-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pd-share-input-group {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    padding: 4px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pd-share-input-group:focus-within {
    border-color: #143d28;
    box-shadow: 0 0 0 3px rgba(20, 61, 40, 0.12);
    background: #ffffff;
}

.pd-share-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 12px;
    font-size: 0.86rem;
    color: #334155;
    font-family: inherit;
    outline: none;
    min-width: 0;
}

.pd-share-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #143d28;
    color: #ffffff;
    border: none;
    padding: 9px 18px;
    border-radius: 9px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.pd-share-copy-btn:hover {
    background: #0f2e1e;
}

.pd-share-copy-btn.copied {
    background: #15803d;
}

/* Device Native Share Trigger */
.pd-share-native-wrap {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.pd-share-native-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 11px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pd-share-native-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* Mobile bottom sheet drawer style */
@media (max-width: 540px) {
    .pd-share-modal-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .pd-share-modal-card {
        border-radius: 24px 24px 0 0;
        max-width: 100%;
        padding: 22px 20px calc(24px + env(safe-area-inset-bottom, 14px));
        transform: translateY(100%);
    }

    .pd-share-modal-overlay.active .pd-share-modal-card {
        transform: translateY(0);
    }

    .pd-share-grid {
        gap: 6px;
    }

    .pd-share-item-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .pd-share-item span {
        font-size: 0.7rem;
    }
}

