/* ═══════════════════════════════════════════════════════════════════
   PRODUCT DETAIL — ADVANCED · Jost only · No italic
   ═══════════════════════════════════════════════════════════════════ */

.product-body {
    background: #fbf8f2;
    font-family: 'Jost', sans-serif;
    margin: 0;
}

.pd-main { min-height: 60vh; padding-bottom: 80px; }

/* ─── BREADCRUMB ─── */
.pd-breadcrumb {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 40px 8px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #666;
}
.pd-breadcrumb a { color: #9a7b4f; text-decoration: none; transition: color 0.2s; }
.pd-breadcrumb a:hover { color: #0d0d0d; }
.pd-breadcrumb .sep { color: #d4af7a; margin: 0 6px; }

/* ═══════════════════════════════════════════════════════════════════
   HERO — Gallery + Info
   ═══════════════════════════════════════════════════════════════════ */
.pd-hero {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 40px 40px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

/* ─── GALLERY ─── */
.pd-gallery {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 12px;
    align-items: flex-start;
    position: sticky;
    top: 20px;
}

.pd-thumbs-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 680px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: #d4af7a transparent;
}
.pd-thumbs-vertical::-webkit-scrollbar { width: 3px; }
.pd-thumbs-vertical::-webkit-scrollbar-thumb { background: #d4af7a; border-radius: 2px; }

.pd-thumb {
    width: 88px;
    aspect-ratio: 3/4;
    border: 2px solid transparent;
    border-radius: 4px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    background: #f5ede0;
    transition: all 0.2s;
    flex-shrink: 0;
}
.pd-thumb:hover { border-color: #d4af7a; transform: translateY(-1px); }
.pd-thumb.active { border-color: #9a7b4f; }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pd-main-image {
    position: relative;
    aspect-ratio: 3/4;
    background: #f5ede0;
    border-radius: 6px;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.pd-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.pd-main-image:hover img { transform: scale(1.04); }

/* Badges on image */
.pd-badges-wrap {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}
.pd-badge {
    padding: 5px 12px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    border-radius: 3px;
    backdrop-filter: blur(6px);
}
.pd-badge-new { background: rgba(13, 13, 13, 0.92); }
.pd-badge-best { background: rgba(154, 123, 79, 0.92); }
.pd-badge-sale { background: rgba(192, 57, 43, 0.92); }

/* Floating wishlist */
.pd-wish {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #2a2a2a;
    font-size: 18px;
    z-index: 3;
    transition: all 0.2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.pd-wish:hover { background: #fff; color: #c0392b; transform: scale(1.08); }
.pd-wish.in-wishlist { color: #c0392b; }

.pd-zoom-hint {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 6px 12px;
    background: rgba(13, 13, 13, 0.7);
    color: #fff;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.pd-main-image:hover .pd-zoom-hint { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════════
   INFO PANEL
   ═══════════════════════════════════════════════════════════════════ */
.pd-info { padding-top: 6px; }

.pd-category-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9a7b4f;
    font-weight: 500;
    margin-bottom: 10px;
    text-decoration: none;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.pd-category-tag:hover { border-color: #9a7b4f; }

.pd-name {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 1.2;
    color: #0d0d0d;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.pd-meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0e4cc;
}
.pd-sku {
    font-size: 11px;
    color: #888;
    letter-spacing: 1px;
}
.pd-rating-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
}
.pd-rating-link .stars { color: #d4af7a; font-size: 13px; }
.pd-rating-link .rating-num { font-size: 13px; color: #0d0d0d; font-weight: 600; }
.pd-rating-link .rating-count { font-size: 12px; color: #666; }
.pd-rating-link:hover .rating-count { color: #9a7b4f; text-decoration: underline; }

/* Price */
.pd-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}
.pd-price {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #0d0d0d;
    line-height: 1;
    letter-spacing: -0.5px;
}
.pd-mrp {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}
.pd-save-tag {
    background: #c0392b;
    color: #fff;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
}
.pd-tax-note {
    font-size: 11px;
    color: #888;
    margin: 0 0 20px;
}

.pd-short-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Social proof nudges */
.pd-social-proof {
    display: flex;
    gap: 16px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #e8d5b0;
    border-radius: 6px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #2a2a2a;
}
.proof-item i { color: #9a7b4f; font-size: 14px; }
.proof-item strong { color: #0d0d0d; font-weight: 600; }

/* Stock indicators */
.pd-stock {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 6px;
    margin-bottom: 12px;
}
.pd-stock i { font-size: 22px; flex-shrink: 0; }
.pd-stock strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}
.pd-stock span {
    font-size: 12px;
    opacity: 0.85;
    font-weight: 300;
}

.pd-stock-ready { background: #d4edda; color: #155724; }
.pd-stock-ready i { color: #2e7d32; }
.pd-stock-mto { background: #fff3cd; color: #856404; }
.pd-stock-mto i { color: #9a7b4f; }
.pd-stock-low {
    background: linear-gradient(to right, #fce4ec, #fff3cd);
    color: #bf4b0f;
    animation: pulse-low 2.5s infinite;
}
.pd-stock-low i { color: #bf4b0f; }
@keyframes pulse-low {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}
.pd-stock-out { background: #f8d7da; color: #721c24; }
.pd-stock-out i { color: #c0392b; }

/* Delivery estimate */
.pd-delivery {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fbf8f2;
    border: 1px dashed #d4af7a;
    border-radius: 6px;
    margin-bottom: 24px;
}
.pd-delivery i { color: #9a7b4f; font-size: 22px; flex-shrink: 0; }
.pd-delivery strong {
    display: block;
    font-size: 13px;
    color: #0d0d0d;
    font-weight: 600;
    margin-bottom: 2px;
}
.pd-delivery span {
    font-size: 12px;
    color: #666;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════════
   VARIANT SECTIONS
   ═══════════════════════════════════════════════════════════════════ */
.pd-variant-section { margin-bottom: 22px; }
.pd-variant-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 8px;
}
.pd-variant-label .label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0d0d0d;
    font-weight: 600;
}
.pd-variant-label .required { color: #c0392b; }
.pd-variant-label .selected {
    font-size: 13px;
    color: #9a7b4f;
    font-weight: 500;
    text-transform: capitalize;
}
.pd-size-chart-link {
    font-size: 11px;
    color: #9a7b4f;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 500;
    background: none;
    border: none;
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid #d4af7a;
}
.pd-size-chart-link:hover { color: #0d0d0d; border-color: #0d0d0d; }
.pd-variant-help {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    color: #888;
}

.pd-size-options { display: flex; flex-wrap: wrap; gap: 8px; }
.pd-size-option {
    min-width: 54px;
    padding: 12px 16px;
    border: 1.5px solid #d4af7a;
    background: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #0d0d0d;
    cursor: pointer;
    text-align: center;
    border-radius: 4px;
    transition: all 0.2s;
}
.pd-size-option:hover { border-color: #9a7b4f; background: #fbf8f2; }
.pd-size-option.selected {
    background: #0d0d0d;
    color: #fff;
    border-color: #0d0d0d;
    transform: scale(1.02);
}
.pd-size-option.out-of-stock {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
}

.pd-color-options { display: flex; flex-wrap: wrap; gap: 12px; }
.pd-color-option {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1.5px #d4af7a;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.pd-color-option:hover { transform: scale(1.12); }
.pd-color-option.selected { box-shadow: 0 0 0 2.5px #0d0d0d; transform: scale(1.1); }

/* ═══════════════════════════════════════════════════════════════════
   PURCHASE ACTIONS
   ═══════════════════════════════════════════════════════════════════ */
.pd-purchase-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.pd-qty-selector {
    display: flex;
    align-items: center;
    border: 1.5px solid #d4af7a;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}
.pd-qty-btn {
    width: 44px;
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #9a7b4f;
    transition: background 0.2s;
    font-weight: 500;
}
.pd-qty-btn:hover { background: #fbf8f2; }
.pd-qty-input {
    width: 50px;
    height: 50px;
    border: none;
    border-left: 1px solid #e8d5b0;
    border-right: 1px solid #e8d5b0;
    text-align: center;
    font-size: 15px;
    font-family: 'Jost', sans-serif;
    background: transparent;
    font-weight: 500;
    color: #0d0d0d;
}
.pd-qty-input:focus { outline: none; }

.pd-add-to-bag {
    flex: 1;
    padding: 15px 24px;
    background: #0d0d0d;
    color: #fff;
    border: 1.5px solid #0d0d0d;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.pd-add-to-bag:hover:not(:disabled) { background: #9a7b4f; border-color: #9a7b4f; }
.pd-add-to-bag:disabled { opacity: 0.5; cursor: not-allowed; }
.pd-add-to-bag.is-adding { pointer-events: none; }
.pd-add-to-bag.is-added { background: #2e7d32; border-color: #2e7d32; }

.pd-buy-now {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #d4af7a, #9a7b4f);
    color: #fff;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}
.pd-buy-now:hover { background: linear-gradient(135deg, #c89f6b, #87693c); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(154, 123, 79, 0.3); }

.pd-secondary-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.pd-secondary-btn {
    flex: 1;
    min-width: 120px;
    padding: 11px 16px;
    background: transparent;
    border: 1px solid #d4af7a;
    color: #0d0d0d;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.pd-secondary-btn:hover { background: #9a7b4f; color: #fff; border-color: #9a7b4f; }
.pd-secondary-btn.pd-secondary-mto {
    background: linear-gradient(135deg, #fffdf8, #faf2e4);
    border-color: #9a7b4f;
    color: #0d0d0d;
}
.pd-secondary-btn.pd-secondary-mto:hover { background: #9a7b4f; color: #fff; }

/* ═══════════════════════════════════════════════════════════════════
   TRUST GRID
   ═══════════════════════════════════════════════════════════════════ */
.pd-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 18px;
    background: #fbf8f2;
    border: 1px solid #e8d5b0;
    border-radius: 6px;
    margin-bottom: 28px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.trust-item i { color: #9a7b4f; font-size: 18px; flex-shrink: 0; }
.trust-item strong {
    display: block;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #0d0d0d;
    font-weight: 600;
    margin-bottom: 1px;
}
.trust-item span {
    font-size: 10px;
    color: #666;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════════
   ACCORDION SECTIONS
   ═══════════════════════════════════════════════════════════════════ */
.pd-accordion {
    border-top: 1px solid #d4af7a;
}
.acc-item {
    border-bottom: 1px solid #f0e4cc;
}
.acc-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    list-style: none;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: #0d0d0d;
    user-select: none;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary i {
    color: #9a7b4f;
    font-size: 14px;
    transition: transform 0.3s;
}
.acc-item[open] summary i { transform: rotate(45deg); }
.acc-content {
    padding: 4px 0 20px;
    font-size: 14px;
    line-height: 1.75;
    color: #2a2a2a;
    font-weight: 300;
}
.acc-content ul { padding-left: 20px; margin: 8px 0; }
.acc-content li { margin-bottom: 6px; }
.acc-content p { margin: 0 0 10px; }
.acc-content strong { color: #0d0d0d; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════════
   SECTION HEADINGS (reviews, FAQ, recommendations)
   ═══════════════════════════════════════════════════════════════════ */
.pd-section {
    max-width: 1440px;
    margin: 60px auto 0;
    padding: 0 40px;
}
.pd-section-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 30px;
    position: relative;
}
.pd-section-head .eyebrow {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #9a7b4f;
    font-weight: 500;
}
.pd-section-head h2 {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: #0d0d0d;
    margin: 0;
    letter-spacing: -0.3px;
}
.pd-section-head .view-all {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9a7b4f;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}
.pd-section-head .view-all:hover { color: #0d0d0d; border-color: #0d0d0d; }

/* ═══════════════════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════════════════ */
.reviews-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.reviews-summary {
    background: #fff;
    padding: 28px;
    border: 1px solid #e8d5b0;
    border-radius: 6px;
    position: sticky;
    top: 20px;
}

.review-score {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0e4cc;
}
.big-score {
    font-size: 54px;
    font-weight: 700;
    color: #0d0d0d;
    line-height: 1;
    letter-spacing: -2px;
}
.big-stars {
    color: #d4af7a;
    font-size: 16px;
    margin-bottom: 4px;
}
.review-count-label {
    font-size: 12px;
    color: #666;
}

.rating-distribution {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.rating-row {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    gap: 10px;
    align-items: center;
    font-size: 12px;
}
.rating-row .rating-num {
    color: #0d0d0d;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.rating-row .rating-num i { color: #d4af7a; font-size: 10px; }
.rating-bar {
    height: 6px;
    background: #f0e4cc;
    border-radius: 3px;
    overflow: hidden;
}
.rating-fill {
    height: 100%;
    background: linear-gradient(to right, #d4af7a, #9a7b4f);
    border-radius: 3px;
    transition: width 0.6s ease;
}
.rating-row .rating-count {
    font-size: 11px;
    color: #888;
    text-align: right;
}

.write-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
    padding: 12px;
    background: #0d0d0d;
    color: #fff;
    text-decoration: none;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}
.write-review-btn:hover { background: #9a7b4f; }

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #e8d5b0;
    border-radius: 6px;
    transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05); }

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af7a, #9a7b4f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}
.reviewer-info {
    flex: 1;
    min-width: 0;
}
.reviewer-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0d0d0d;
}
.review-date {
    font-size: 11px;
    color: #888;
    letter-spacing: 0.3px;
}
.review-rating {
    color: #d4af7a;
    font-size: 12px;
}

.review-title {
    font-size: 15px;
    font-weight: 600;
    color: #0d0d0d;
    margin: 0 0 6px;
}
.review-body {
    font-size: 13px;
    line-height: 1.7;
    color: #2a2a2a;
    margin: 0 0 10px;
    font-weight: 300;
}
.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #2e7d32;
    font-weight: 500;
}
.review-verified i { font-size: 13px; }

.reviews-empty {
    text-align: center;
    padding: 60px 30px;
    background: #fff;
    border: 1px dashed #d4af7a;
    border-radius: 6px;
}
.reviews-empty i { font-size: 48px; color: #d4af7a; margin-bottom: 14px; display: block; }
.reviews-empty h3 {
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #0d0d0d;
    margin: 0 0 8px;
}
.reviews-empty p {
    font-size: 13px;
    color: #666;
    margin: 0 0 18px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}
.reviews-empty .write-review-btn { display: inline-flex; width: auto; padding: 12px 24px; }

/* ═══════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════ */
.faq-list {
    max-width: 860px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border: 1px solid #e8d5b0;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: box-shadow 0.2s;
}
.faq-item[open] { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05); }
.faq-item summary {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0d0d0d;
    line-height: 1.4;
    gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
    color: #9a7b4f;
    font-size: 14px;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-answer {
    padding: 0 20px 20px;
    font-size: 13px;
    line-height: 1.75;
    color: #444;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════════
   RECOMMENDATION SECTIONS
   ═══════════════════════════════════════════════════════════════════ */
.pd-rec-section {
    padding-top: 40px;
}
.pd-rec-alt {
    background: #f5ede0;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
}
.pd-rec-alt .pd-section-head { max-width: 1440px; margin-left: auto; margin-right: auto; }

.pd-rec-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Reuse existing pcard styles from shop.css */

/* ═══════════════════════════════════════════════════════════════════
   STICKY MOBILE BAR
   ═══════════════════════════════════════════════════════════════════ */
.pd-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #d4af7a;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 900;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.pd-sticky-bar.visible { transform: translateY(0); }

.sticky-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.sticky-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}
.sticky-img {
    width: 48px;
    height: 60px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}
.sticky-text {
    flex: 1;
    min-width: 0;
}
.sticky-name {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #0d0d0d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sticky-price {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0d0d0d;
    margin-top: 2px;
}
.sticky-add-btn {
    padding: 14px 24px;
    background: #0d0d0d;
    color: #fff;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background 0.2s;
}
.sticky-add-btn:hover:not(:disabled) { background: #9a7b4f; }
.sticky-add-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ═══════════════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════════════ */
.pd-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.pd-lightbox.open { display: flex; }
.pd-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    backdrop-filter: blur(8px);
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    backdrop-filter: blur(8px);
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.3); }
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }
.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 12px;
    letter-spacing: 1.5px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   SIZE CHART MODAL
   ═══════════════════════════════════════════════════════════════════ */
.size-chart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.size-chart-overlay.open { display: flex; }
.size-chart-modal {
    background: #fbf8f2;
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 8px;
    padding: 32px;
    position: relative;
}
.size-chart-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #0d0d0d;
    border-radius: 50%;
    transition: all 0.2s;
}
.size-chart-close:hover { background: #f5ede0; transform: rotate(90deg); }
.size-chart-modal h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 28px;
    color: #0d0d0d;
    margin: 0 0 8px;
}
.size-chart-desc {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px;
    font-weight: 300;
    line-height: 1.6;
}
.size-chart-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-bottom: 16px;
}
.size-chart-table th {
    background: #9a7b4f;
    color: #fff;
    padding: 12px;
    text-align: left;
    font-size: 11px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    font-weight: 500;
}
.size-chart-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e8d5b0;
    color: #2a2a2a;
}
.size-chart-table tr:nth-child(even) td { background: #fff; }
.size-chart-note {
    font-size: 12px;
    color: #666;
    font-weight: 300;
    padding: 10px 14px;
    background: #fff;
    border-left: 3px solid #d4af7a;
    border-radius: 3px;
}
.size-chart-note i { color: #9a7b4f; margin-right: 5px; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .pd-hero { grid-template-columns: 1fr 1fr; gap: 30px; }
    .pd-rec-grid { grid-template-columns: repeat(3, 1fr); }
    .pd-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .pd-breadcrumb { padding: 20px 24px 4px; }
    .pd-hero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 16px 24px 30px;
    }
    .pd-gallery {
        position: static;
        grid-template-columns: 70px 1fr;
    }
    .pd-thumb { width: 70px; }
    .pd-thumbs-vertical { max-height: 480px; }

    .reviews-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .reviews-summary { position: static; }

    .pd-section { padding: 0 24px; margin-top: 50px; }
    .pd-rec-alt { padding-left: 24px; padding-right: 24px; }
    .pd-rec-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 640px) {
    .pd-hero { padding: 12px 16px 24px; gap: 24px; }
    .pd-breadcrumb { padding: 16px 16px 0; font-size: 10px; letter-spacing: 1px; }

    /* Gallery goes to single column below main image on mobile */
    .pd-gallery { grid-template-columns: 1fr; gap: 8px; }
    .pd-thumbs-vertical {
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        order: 2;
        padding-bottom: 4px;
    }
    .pd-thumb { width: 60px; flex-shrink: 0; }
    .pd-main-image { order: 1; }

    .pd-name { font-size: 26px; }
    .pd-price { font-size: 26px; }
    .pd-mrp { font-size: 15px; }

    .pd-trust-grid { grid-template-columns: 1fr; gap: 8px; padding: 14px; }

    .pd-section-head h2 { font-size: 24px; }
    .pd-section-head .view-all { position: static; transform: none; margin-top: 4px; }

    .pd-section { padding: 0 16px; margin-top: 40px; }
    .pd-rec-alt { padding-left: 16px; padding-right: 16px; padding-top: 40px; padding-bottom: 40px; }

    .review-score { gap: 12px; padding-bottom: 16px; margin-bottom: 16px; }
    .big-score { font-size: 42px; }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-nav { width: 44px; height: 44px; font-size: 18px; }

    /* Sticky bar visible on mobile below 640px */
    .pd-main { padding-bottom: 90px; }

    .size-chart-modal { padding: 20px; }
    .size-chart-modal h3 { font-size: 22px; }
    .size-chart-table { font-size: 11px; }
    .size-chart-table th, .size-chart-table td { padding: 8px; }
}
