/* ==========================================
   product-detail.css
   Scoped styles for Product Detail page.
   All classes prefixed .pd- — zero conflict
   with any other page CSS on the site.
   ========================================== */

/* ── Page base ─────────────────────────── */
.pd-page .pd-main {
    background: #f9f7f4;
    padding-bottom: 52px;
}

/* ── Breadcrumb ─────────────────────────── */
.pd-breadcrumb {
    padding: 14px 0 10px;
}

.pd-breadcrumb .breadcrumb {
    font-size: 12px;
    margin: 0;
    background: none;
    padding: 0;
}

.pd-breadcrumb .breadcrumb-item a {
    color: #555;
    text-decoration: none;
}

.pd-breadcrumb .breadcrumb-item a:hover {
    color: #e8a020;
}

.pd-breadcrumb .breadcrumb-item.active {
    color: #1a1a1a;
    font-weight: 700;
}

.pd-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #bbb;
    font-size: 11px;
}

/* ── TOP SECTION ────────────────────────── */
.pd-top-section {
    margin-bottom: 24px;
}

/* ══ GALLERY ══ */
.pd-gallery {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #e4e0d8;
    padding: 16px;
}

.pd-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.pd-thumb {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border: 1.5px solid #e4e0d8;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    background: #faf8f5;
    cursor: pointer;
    transition: border-color .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pd-thumb.active {
    border-color: #e8a020;
}

.pd-thumb:hover {
    border-color: #1a3c34;
}

.pd-thumb-more {
    font-size: 16px;
    color: #888;
    background: #f2ede4;
    border: 1.5px solid #e4e0d8;
}

.pd-thumb-more.active {
    background: #e8a020;
    color: #fff;
}

.pd-thumb-more.active i {
    transform: rotate(180deg);
}

.pd-thumbs {
    max-height: 320px;
    overflow-y: auto;
    scroll-behavior: smooth;
    transition: max-height .3s ease;
}

.pd-thumbs.pd-thumbs-expanded {
    max-height: 1000px;
}

.pd-thumbs::-webkit-scrollbar {
    width: 8px;
}

.pd-thumbs::-webkit-scrollbar-thumb {
    background: rgba(26, 60, 52, 0.18);
    border-radius: 999px;
}

.pd-main-img-wrap {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #faf8f5;
    /* min-height: 320px; */
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-badge-off {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e63946;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 8px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
}

.pd-main-img {
    max-height: 405px;
    max-width: 100%;
    object-fit: contain;
    transition: opacity .25s;
}

.pd-zoom-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    color: #555;
}

.pd-zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: grid;
    place-items: center;
    padding: 24px;
    z-index: 2500;
}

.pd-zoom-inner {
    position: relative;
    max-width: 960px;
    width: 100%;
    max-height: 90vh;
}

.pd-zoom-inner img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

.pd-zoom-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #1a3c34;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

@media (max-width: 575px) {
    .pd-gallery {
        flex-direction: column-reverse;
    }

    .pd-thumbs {
        flex-direction: row;
    }

    .pd-thumb {
        width: 48px;
        height: 48px;
    }

    .pd-main-img-wrap {
        min-height: 220px;
    }
}

/* ══ PRODUCT INFO ══ */
.pd-info {
    padding: 4px 0;
}

.pd-top-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.pd-bestseller-badge {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 6px;
}

.pd-action-btns {
    display: flex;
    gap: 8px;
}

.pd-action-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #e4e0d8;
    background: #fff;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.pd-action-btn:hover,
.pd-action-btn.active {
    color: #e63946;
    border-color: #e63946;
}

.pd-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.25;
}

.pd-subtitle {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

/* Rating */
.pd-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.pd-stars i {
    color: #e8a020;
    font-size: 14px;
}

.pd-rating-num {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
}

.pd-review-count {
    font-size: 13px;
    color: #888;
}

.pd-sold-count {
    font-size: 12px;
    color: #555;
}

/* Price */
.pd-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.pd-price-now {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
}

.pd-price-old {
    font-size: 15px;
    color: #aaa;
    text-decoration: line-through;
}

.pd-discount-label {
    font-size: 12px;
    font-weight: 800;
    color: #1a7a50;
    background: #e0ede7;
    padding: 3px 8px;
    border-radius: 5px;
}

.pd-tax-note {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 16px;
}

/* Feature badges */
.pd-feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.pd-feat-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #faf8f5;
    border: 1px solid #e4e0d8;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 11px;
    color: #444;
    line-height: 1.3;
}

.pd-feat-badge i {
    font-size: 18px;
    color: #1a3c34;
    flex-shrink: 0;
}

/* Size selector */
.pd-size-section {
    margin-bottom: 16px;
}

.pd-size-label {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.pd-size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pd-size-btn {
    min-width: 64px;
    padding: 8px 10px;
    border: 1.5px solid #d6d0c8;
    border-radius: 9px;
    background: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    color: #333;
    cursor: pointer;
    text-align: center;
    line-height: 1.3;
    transition: all .2s;
}

.pd-size-btn span {
    display: block;
    font-weight: 600;
    font-size: 11px;
    color: #888;
}

.pd-size-btn:hover {
    border-color: #1a3c34;
    color: #1a3c34;
}

.pd-size-btn.active {
    border-color: #1a3c34;
    background: #1a3c34;
    color: #fff;
}

.pd-size-btn.active span {
    color: rgba(255, 255, 255, .8);
}

/* Quantity */
.pd-qty-section {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.pd-qty-label {
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

.pd-qty-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #d6d0c8;
    border-radius: 9px;
    overflow: hidden;
}

.pd-qty-btn {
    width: 36px;
    height: 36px;
    background: #f5f1ea;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.pd-qty-btn:hover {
    background: #e4e0d8;
}

.pd-qty-val {
    width: 44px;
    text-align: center;
    font-size: 15px;
    font-weight: 800;
}

/* CTA buttons */
.pd-cta-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pd-btn-cart {
    flex: 1;
    min-width: 160px;
    background: #e8a020;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background .2s;
}

.pd-btn-cart:hover {
    background: #d4911c;
}

.pd-btn-buy {
    flex: 1;
    min-width: 160px;
    background: #1a3c34;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: background .2s;
}

.pd-btn-buy:hover {
    background: #2d6a4f;
}

/* Delivery box */
.pd-delivery-box {
    background: #faf8f5;
    border: 1.5px solid #e4e0d8;
    border-radius: 12px;
    padding: 16px;
}

.pd-delivery-row {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.pd-delivery-left {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.pd-delivery-left>i {
    font-size: 20px;
    color: #1a3c34;
    margin-top: 2px;
    flex-shrink: 0;
}

.pd-del-text {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    display: block;
    margin-bottom: 2px;
}

.pd-del-sub {
    font-size: 12px;
    color: #555;
    display: block;
    line-height: 1.4;
}

.pd-del-sub a {
    color: #1a3c34;
    font-weight: 700;
    text-decoration: none;
}

.pd-del-green {
    color: #1a7a50 !important;
    font-weight: 700;
}

.pd-timer {
    color: #e63946;
    font-weight: 800;
}

.pd-delivery-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pd-del-feat {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
    min-width: 120px;
}

.pd-del-feat i {
    font-size: 18px;
    color: #1a3c34;
    margin-top: 2px;
    flex-shrink: 0;
}

.pd-del-feat strong {
    font-size: 12px;
    display: block;
    color: #1a1a1a;
}

.pd-del-feat span {
    font-size: 11px;
    color: #888;
}

/* ── TRUST STRIP ────────────────────────── */
.pd-trust-strip {
    background: #fff;
    border: 1.5px solid #e4e0d8;
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 28px;
}

.pd-trust-item {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-right: 1px solid #e4e0d8;
}

.pd-trust-item:last-child {
    border-right: none;
}

.pd-trust-item i {
    font-size: 22px;
    color: #1a3c34;
    flex-shrink: 0;
}

.pd-trust-item strong {
    font-size: 12px;
    display: block;
    color: #1a1a1a;
}

.pd-trust-item small {
    font-size: 11px;
    color: #888;
}

/* ── TAB NAV ────────────────────────────── */
.pd-tabs-section {
    margin-bottom: 32px;
}

.pd-tab-nav {
    display: flex;
    gap: 0;
    flex-wrap: nowrap;
    border-bottom: 2px solid #e4e0d8;
    margin-bottom: 24px;
    overflow-x: auto;
    scrollbar-width: none;
}

.pd-tab-nav::-webkit-scrollbar {
    display: none;
}

.pd-tab-btn {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    color: #666;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s;
}

.pd-tab-btn:hover {
    color: #1a3c34;
}

.pd-tab-btn.active {
    color: #1a3c34;
    border-bottom-color: #1a3c34;
}

/* Tab content */
.pd-tab-content {
    display: none;
}

.pd-tab-content.active {
    display: block;
}

.pd-tab-subtitle {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-family: 'Nunito', sans-serif;
}

.pd-tab-text {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* Spec table */
.pd-spec-table {
    width: 100%;
    font-size: 13px;
    border-collapse: collapse;
}

.pd-spec-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #f0ece4;
    color: #444;
    vertical-align: top;
}

.pd-spec-table td:first-child {
    font-weight: 700;
    color: #333;
    width: 45%;
}

/* Checklist */
.pd-check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 14px;
}

.pd-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.5;
}

.pd-check-list i {
    color: #1a7a50;
    font-size: 15px;
    margin-top: 1px;
    flex-shrink: 0;
}

.pd-read-more {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pd-read-more:hover,
.pd-read-more.active {
    color: #e8a020;
}

.pd-read-more-panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .3s ease, opacity .3s ease;
}

.pd-read-more-panel.open {
    max-height: 1000px;
    opacity: 1;
    margin-top: 14px;
}

/* Collapsible content for Read More */
.pd-collapsible {
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    position: relative;
}

.pd-collapsible.pd-expanded {
    max-height: 9999px;
}

/* ── FBT Section ────────────────────────── */
.pd-fbt-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e4e0d8;
}

.pd-fbt-title {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-family: 'Nunito', sans-serif;
}

.pd-fbt-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.pd-fbt-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 80px;
    max-width: 110px;
}

.pd-fbt-item img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border: 1px solid #e4e0d8;
    border-radius: 8px;
    background: #faf8f5;
}

.pd-fbt-item small {
    font-size: 11px;
    color: #555;
    text-align: center;
    line-height: 1.3;
}

.pd-fbt-item strong {
    font-size: 13px;
    font-weight: 800;
    color: #1a1a1a;
}

.pd-fbt-item strong span {
    font-size: 11px;
    font-weight: 400;
    color: #aaa;
    text-decoration: line-through;
    margin-left: 3px;
}

.pd-fbt-plus {
    font-size: 22px;
    color: #aaa;
    font-weight: 700;
}

.pd-fbt-total {
    flex: 1;
    min-width: 140px;
}

.pd-fbt-total-inner {
    background: #faf8f5;
    border: 1.5px solid #e4e0d8;
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pd-fbt-total-inner span {
    font-size: 12px;
    color: #888;
}

.pd-fbt-total-inner strong {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
}

.pd-fbt-old {
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
}

.pd-fbt-save {
    font-size: 11px;
    color: #1a7a50;
    font-weight: 700;
    background: #e0ede7;
    padding: 2px 7px;
    border-radius: 5px;
    width: fit-content;
}

.pd-fbt-btn {
    margin-top: 6px;
    background: #1a3c34;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: background .2s;
    width: 100%;
}

.pd-fbt-btn:hover {
    background: #2d6a4f;
}

/* ── Related Slider ─────────────────────── */
.pd-related-section {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e4e0d8;
}

.pd-related-title {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-family: 'Nunito', sans-serif;
}

.pd-related-slider-wrap {
    position: relative;
}

.pd-related-slider {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding: 6px 4px 12px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.pd-related-slider::-webkit-scrollbar {
    display: none;
}

.pd-related-card {
    flex: 0 0 150px;
    background: #fff;
    border: 1.5px solid #e4e0d8;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    transition: all .2s;
    cursor: pointer;
}

.pd-related-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .09);
    border-color: #e8a020;
    transform: translateY(-2px);
}

.pd-related-card img {
    width: 100%;
    height: 90px;
    object-fit: contain;
    margin-bottom: 8px;
}

.pd-related-card p {
    font-size: 11px;
    color: #555;
    margin-bottom: 5px;
    line-height: 1.4;
    font-weight: 600;
}

.pd-rel-rating {
    font-size: 10px;
    color: #e8a020;
    margin-bottom: 4px;
}

.pd-rel-rating small {
    color: #aaa;
}

.pd-rel-price strong {
    font-size: 13px;
    font-weight: 800;
    color: #1a1a1a;
}

.pd-rel-price span {
    font-size: 11px;
    color: #aaa;
    text-decoration: line-through;
    margin-left: 4px;
}

/* Slider arrows */
.pd-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    background: #fff;
    border: 1.5px solid #e4e0d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #444;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    transition: all .2s;
}

.pd-slider-btn:hover {
    background: #1a3c34;
    color: #fff;
    border-color: #1a3c34;
}

.pd-slider-btn.disabled,
.pd-slider-btn.disabled:hover {
    background: #fff;
    color: #444;
    border-color: #e4e0d8;
    cursor: default;
}

.pd-slider-prev {
    left: -17px;
}

.pd-slider-next {
    right: -17px;
}

/* ── Bottom Badges ──────────────────────── */
.pd-bottom-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 20px 0 0;
    border-top: 1px solid #e4e0d8;
    margin-top: 28px;
}

.pd-bot-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid #e4e0d8;
    border-radius: 10px;
    padding: 10px 14px;
    flex: 1;
    min-width: 120px;
}

.pd-bot-badge i {
    font-size: 20px;
    color: #1a3c34;
    flex-shrink: 0;
}

.pd-bot-badge strong {
    font-size: 12px;
    display: block;
    color: #1a1a1a;
}

.pd-bot-badge small {
    font-size: 11px;
    color: #888;
}

.pd-bot-img {
    padding: 0;
    overflow: hidden;
    max-width: 90px;
    flex: 0 0 90px;
}

.pd-bot-img img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

/* ── REVIEW SIDEBAR ─────────────────────── */
.pd-review-sidebar {
    background: #fff;
    border: 1.5px solid #e4e0d8;
    border-radius: 14px;
    padding: 22px 18px;
    position: sticky;
    top: 80px;
}

.pd-review-sidebar-title {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-family: 'Nunito', sans-serif;
}

.pd-rating-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.pd-rating-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-rbar-label {
    font-size: 12px;
    color: #555;
    min-width: 90px;
    font-weight: 600;
}

.pd-rbar-stars i {
    font-size: 12px;
    color: #e8a020;
}

.pd-rbar-num {
    font-size: 13px;
    font-weight: 800;
    color: #1a1a1a;
    margin-left: 4px;
}

.pd-view-all-reviews {
    font-size: 12px;
    font-weight: 700;
    color: #1a3c34;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.pd-view-all-reviews:hover {
    color: #e8a020;
}

.pd-review-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 14px;
}

.pd-review-card {
    background: #faf8f5;
    border-radius: 10px;
    padding: 14px;
    border: 1px solid #ede9e2;
}

.pd-review-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.pd-review-user img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.pd-review-user strong {
    font-size: 13px;
    display: block;
}

.pd-review-user small {
    font-size: 11px;
    color: #888;
}

.pd-review-stars {
    margin-bottom: 6px;
}

.pd-review-stars i {
    font-size: 12px;
    color: #e8a020;
}

.pd-review-card p {
    font-size: 12px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 8px;
}

.pd-review-helpful {
    font-size: 11px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.pd-review-helpful:hover {
    color: #1a3c34;
}

.pd-review-helpful i {
    font-size: 13px;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 991px) {
    .pd-review-sidebar {
        position: static;
        margin-top: 20px;
    }

    .pd-trust-item {
        min-width: 120px;
    }
}

@media (max-width: 767px) {
    .pd-trust-strip {
        flex-direction: column;
    }

    .pd-trust-item {
        border-right: none;
        border-bottom: 1px solid #e4e0d8;
    }

    .pd-trust-item:last-child {
        border-bottom: none;
    }

    .pd-fbt-row {
        justify-content: center;
    }

    .pd-related-card {
        flex: 0 0 130px;
    }

    .pd-slider-prev {
        left: 0;
    }

    .pd-slider-next {
        right: 0;
    }
}

@media (max-width: 575px) {
    .pd-cta-row {
        flex-direction: column;
    }

    .pd-btn-cart,
    .pd-btn-buy {
        min-width: 100%;
    }

    .pd-feature-badges {
        gap: 7px;
    }

    .pd-feat-badge {
        font-size: 10px;
        padding: 6px 9px;
    }
}

/* ── YOU MAY ALSO LIKE ──────────────────────────────── */
.pd-related-section {
    padding: 36px 0 48px;
    background: #f9f7f4;
    border-top: 1.5px solid #e4e0d8;
}

.pd-related-header {
    margin-bottom: 20px;
}

.pd-related-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.pd-related-wrap {
    overflow: hidden;
}

.pd-related-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 2px 12px;
}

.pd-related-slider::-webkit-scrollbar {
    display: none;
}

.pd-rel-card-wrap {
    flex: 0 0 190px;
    min-width: 190px;
}

.pd-rel-card {
    display: block;
    background: #fff;
    border: 1.5px solid #e4e0d8;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    position: relative;
}

.pd-rel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,.10);
}

.pd-rel-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e63946;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 6px;
    z-index: 2;
}

.pd-rel-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #faf8f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pd-rel-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s;
}

.pd-rel-card:hover .pd-rel-img img {
    transform: scale(1.05);
}

.pd-rel-body {
    padding: 10px 12px 12px;
}

.pd-rel-name {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pd-rel-prices {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pd-rel-price-now {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
}

.pd-rel-price-old {
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
}

.pd-rel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #e4e0d8;
    background: #fff;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0,0,0,.10);
    transition: background .2s, color .2s;
}

.pd-rel-btn:hover {
    background: #1a3c34;
    color: #fff;
    border-color: #1a3c34;
}

.pd-rel-prev { left: -18px; }
.pd-rel-next { right: -18px; }

@media (max-width: 767px) {
    .pd-rel-card-wrap { flex: 0 0 155px; min-width: 155px; }
    .pd-rel-prev { left: 0; }
    .pd-rel-next { right: 0; }
}