/* ============================================
   PRODUCT PAGE — Light Black 2026
   ============================================ */

/* Breadcrumb */
.pd-breadcrumb {
    padding: 14px 0;
    margin-top: calc(var(--header-h) + 36px);
    border-bottom: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--light-gray);
}

.pd-breadcrumb a {
    color: var(--light-gray);
    transition: color .2s;
}

.pd-breadcrumb a:hover {
    color: var(--black);
}

.pd-breadcrumb span {
    margin: 0 8px;
}

.pd-breadcrumb span:last-child {
    color: var(--dark);
    font-weight: 600;
    margin: 0;
}

/* ---- MAIN GRID ---- */
.pd-main {
    padding: 48px 0 80px;
}

.pd-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 64px;
    align-items: start;
}

/* ---- GALLERY ---- */
.pd-gallery {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 14px;
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

.pd-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd-thumb {
    width: 80px;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--cream);
    border: 2px solid transparent;
    transition: border-color .2s ease, opacity .22s ease, transform .22s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s var(--ease);
}

.pd-thumb:hover img {
    transform: scale(1.06);
}

.pd-thumb.active {
    border-color: var(--black);
}

.pd-main-img {
    position: relative;
    background: var(--cream);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.pd-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .28s ease, transform .45s var(--ease);
    display: block;
}

.pd-main-img img.pd-img-swapping {
    opacity: 0;
}

.pd-thumb.pd-thumb-hidden {
    display: none !important;
}

.pd-thumb.pd-thumb-appearing {
    animation: pdThumbIn .32s ease forwards;
}

@keyframes pdThumbIn {
    from {
        opacity: 0;
        transform: translateY(6px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pd-img-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--black);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 14px;
    z-index: 2;
}

.pd-zoom-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    cursor: pointer;
    transition: background .2s;
    z-index: 2;
}

.pd-zoom-btn:hover {
    background: #fff;
}

/* ---- INFO PANEL ---- */
.pd-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pd-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pd-brand {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--light-gray);
}

.pd-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--black);
}

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

.pd-stars {
    display: flex;
    gap: 2px;
    color: #F5A623;
    font-size: 0.82rem;
}

.pd-stars-sm {
    font-size: 0.72rem;
    margin-left: auto;
}

.pd-rating-count {
    font-size: 0.78rem;
    color: var(--gray);
}

.pd-rating-count a {
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Price */
.pd-price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.pd-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.02em;
}

.pd-price-old {
    font-size: 1rem;
    font-weight: 500;
    color: var(--light-gray);
    text-decoration: line-through;
}

.pd-discount-tag {
    background: #e8f5e9;
    color: #2a9d5c;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 2px;
}

/* Stock bar */
.pd-stock {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pd-stock-bar {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.pd-stock-fill {
    height: 100%;
    background: linear-gradient(90deg, #2a9d5c, #e74c3c);
    border-radius: 2px;
    transition: width .8s var(--ease);
}

.pd-stock-text {
    font-size: 0.75rem;
    color: var(--gray);
}

.pd-stock-text strong {
    color: #e74c3c;
}

/* Divider */
.pd-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}

/* Option groups */
.pd-option-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pd-option-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pd-option-label strong {
    color: var(--black);
    font-weight: 600;
}

.pd-size-guide-link {
    margin-left: auto;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: opacity .15s ease;
}

.pd-size-guide-link:hover {
    opacity: 0.65;
}

/* Colors */
.pd-colors {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.pd-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    box-shadow: inset 0 0 0 1.5px rgba(0, 0, 0, .08);
    transition: transform .18s ease;
}

.pd-color::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    transition: border-color .18s ease;
    pointer-events: none;
}

.pd-color:hover {
    transform: scale(1.08);
}

.pd-color.active::after {
    border-color: var(--black);
}

/* Sizes */
.pd-sizes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pd-size-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #e0e0e0;
    background: #fff;
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--black);
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease, color .15s ease;
    letter-spacing: 0;
    user-select: none;
    line-height: 1;
}

.pd-size-btn:hover:not(.pd-size-sold) {
    border-color: var(--black);
}

.pd-size-btn.active {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

.pd-size-sold {
    color: #bcbcbc;
    background: #fafafa;
    border-color: #ececec;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Qty + CTA row */
.pd-qty-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.pd-qty {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    flex-shrink: 0;
}

.pd-qty button {
    width: 40px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    transition: background .15s;
}

.pd-qty button:hover {
    background: var(--cream);
}

.pd-qty span {
    width: 44px;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 700;
    border-left: 1.5px solid var(--border);
    border-right: 1.5px solid var(--border);
    height: 48px;
    line-height: 48px;
}

.pd-add-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--black);
    color: #fff;
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background .2s;
    height: 52px;
}

.pd-add-btn:hover {
    background: #222;
}

.pd-add-btn.success {
    background: #2a9d5c;
}

.pd-fav-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--border);
    color: var(--light-gray);
    flex-shrink: 0;
    transition: border-color .2s, color .2s, background .2s;
}

.pd-fav-btn:hover,
.pd-fav-btn.active {
    border-color: #e74c3c;
    color: #e74c3c;
    background: #fff5f5;
}

.pd-fav-btn.active svg {
    fill: #e74c3c;
}

.pd-add-error {
    font-size: 0.75rem;
    color: #e74c3c;
    font-weight: 600;
    min-height: 18px;
}

/* Trust */
.pd-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 20px;
    background: var(--off-white);
    border: 1px solid var(--border);
}

.pd-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--gray);
}

.pd-trust-item svg {
    flex-shrink: 0;
    color: var(--black);
}

/* Accordion */
.pd-accordion {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.pd-acc-item {
    border-bottom: 1px solid var(--border);
}

.pd-acc-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.pd-acc-head svg {
    flex-shrink: 0;
    transition: transform .3s var(--ease);
    color: var(--gray);
}

.pd-acc-item.active .pd-acc-head svg {
    transform: rotate(180deg);
}

.pd-acc-body {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding-bottom: 0;
    transition: max-height .32s cubic-bezier(.4, 0, .2, 1), opacity .22s ease-out, padding-bottom .32s cubic-bezier(.4, 0, .2, 1);
    will-change: max-height;
}

.pd-acc-item.active .pd-acc-body {
    opacity: 1;
    padding-bottom: 22px;
}

.pd-acc-body>*:first-child {
    margin-top: 0;
}

.pd-acc-body>*:last-child {
    margin-bottom: 0;
}

.pd-acc-body p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0 0 10px;
}

.pd-acc-body p:last-child {
    margin-bottom: 0;
}

.pd-acc-body strong,
.pd-acc-body b {
    color: var(--black);
    font-weight: 600;
}

.pd-acc-body h1,
.pd-acc-body h2,
.pd-acc-body h3,
.pd-acc-body h4,
.pd-acc-body h5,
.pd-acc-body h6 {
    font-family: var(--font);
    color: var(--black);
    font-weight: 600;
    line-height: 1.35;
    margin: 18px 0 8px;
    letter-spacing: 0;
}

.pd-acc-body h1 {
    font-size: 1.05rem;
}

.pd-acc-body h2 {
    font-size: 1rem;
}

.pd-acc-body h3 {
    font-size: 0.95rem;
}

.pd-acc-body h4,
.pd-acc-body h5,
.pd-acc-body h6 {
    font-size: 0.9rem;
}

.pd-acc-body ul,
.pd-acc-body ol {
    margin: 10px 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pd-acc-body ol {
    counter-reset: pd-acc-ol;
}

.pd-acc-body ul li,
.pd-acc-body ol li {
    font-size: 0.88rem;
    color: var(--gray);
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
}

.pd-acc-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--black);
}

.pd-acc-body ol li {
    counter-increment: pd-acc-ol;
}

.pd-acc-body ol li::before {
    content: counter(pd-acc-ol) '.';
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: 600;
    font-size: 0.82rem;
}

.pd-acc-body a {
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity .15s ease;
}

.pd-acc-body a:hover {
    opacity: 0.7;
}

.pd-acc-body img {
    max-width: 100%;
    height: auto;
    margin: 12px 0;
}

.pd-acc-body blockquote {
    margin: 12px 0;
    padding: 10px 14px;
    border-left: 3px solid var(--black);
    background: var(--off-white);
    font-style: italic;
    color: var(--dark);
    font-size: 0.88rem;
}

.pd-acc-body hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 14px 0;
}

.pd-acc-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
    font-size: 0.82rem;
}

.pd-acc-body table th,
.pd-acc-body table td {
    border: 1px solid var(--border);
    padding: 8px 10px;
    text-align: left;
    color: var(--dark);
}

.pd-acc-body table th {
    background: var(--off-white);
    font-weight: 600;
}

/* ---- BEFORE / AFTER ---- */
.pd-ba-section {
    padding: 80px 0;
    background: var(--off-white);
}

/* Split layout */
.pd-ba-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.pd-ba-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pd-ba-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
    max-width: 380px;
}

.pd-ba-slider {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    user-select: none;
    cursor: ew-resize;
    background: #000;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .15);
}

.pd-ba-img {
    position: absolute;
    inset: 0;
}

.pd-ba-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.pd-ba-after {
    z-index: 1;
}

.pd-ba-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.pd-ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #fff;
    z-index: 4;
    transform: translateX(-50%);
    box-shadow: 0 0 24px rgba(0, 0, 0, .4);
    pointer-events: none;
}

/* ---- FAQ ---- */
.pd-faq {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

.pd-faq-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.pd-faq-item {
    border-bottom: 1px solid var(--border);
}

.pd-faq-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--black);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color .2s;
}

.pd-faq-head:hover {
    color: var(--gray);
}

.pd-faq-head svg {
    flex-shrink: 0;
    color: var(--light-gray);
    transition: transform .3s var(--ease);
}

.pd-faq-item.active .pd-faq-head svg {
    transform: rotate(180deg);
}

.pd-faq-item.active .pd-faq-head {
    color: var(--black);
}

.pd-faq-body {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding-bottom: 0;
    transition: max-height .3s cubic-bezier(.4, 0, .2, 1), opacity .22s ease-out, padding-bottom .3s cubic-bezier(.4, 0, .2, 1);
    will-change: max-height;
}

.pd-faq-item.active .pd-faq-body {
    opacity: 1;
    padding-bottom: 18px;
}

.pd-faq-body p {
    font-size: 0.84rem;
    color: var(--gray);
    line-height: 1.7;
}

@media (max-width: 860px) {
    .pd-ba-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pd-faq {
        position: static;
    }
}

/* ---- FEATURES ---- */
/* ---- FEATURES DETAIL SCROLL ---- */
.pd-features {
    background: #0d0d0d;
    padding: 72px 0 80px;
    overflow: hidden;
}

.pd-features-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
}

.pd-features-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -.02em;
    color: #fff;
    margin: 10px 0 0;
}

.pd-features-title em {
    font-style: italic;
    color: rgba(255, 255, 255, .45);
}

.pd-features-nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    padding-bottom: 4px;
}

.pd-feat-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .2);
    background: transparent;
    color: rgba(255, 255, 255, .7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.pd-feat-arrow:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

/* Scroll track */
.pd-features-track-wrap {
    overflow: hidden;
    padding-left: max(24px, calc((100vw - 1200px) / 2));
}

.pd-features-track {
    display: flex;
    gap: 3px;
    transition: transform .45s cubic-bezier(.25, .46, .45, .94);
    will-change: transform;
}

/* Each card */
.pd-feature-card {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    background: #141414;
    overflow: hidden;
}

.pd-feature-img {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #1a1a1a;
}

.pd-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
    filter: grayscale(15%);
}

.pd-feature-card:hover .pd-feature-img img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.pd-feat-num {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    color: rgba(255, 255, 255, .7);
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 4px 10px;
    border-radius: 100px;
}

.pd-feature-body {
    padding: 20px 22px 26px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.pd-feature-body h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 8px;
}

.pd-feature-body p {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.65;
    margin: 0;
}

/* ---- VIDEO SECTION ---- */
/* ---- VIDEO SECTION ---- */
.pd-video-section {
    background: #080808;
    color: #fff;
    overflow: hidden;
    padding: 64px 0 0;
}

/* Top bar */
.pd-video-topbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
}

.pd-video-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.02em;
    margin: 10px 0 0;
    color: #fff;
}

.pd-video-title em {
    font-style: italic;
    color: rgba(255, 255, 255, .45);
}

.pd-video-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #fff;
    color: #0a0a0a;
    border: none;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, transform .2s;
}

.pd-video-cta:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
}

/* Stage — 3 panels */
.pd-video-stage {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 0;
    align-items: end;
    height: 680px;
}

/* Side panels */
.pd-video-side {
    position: relative;
    height: 520px;
    overflow: hidden;
    cursor: default;
}

.pd-video-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(.45) saturate(.6);
    transition: filter .4s;
}

.pd-video-side:hover img {
    filter: brightness(.6) saturate(.8);
}

.pd-video-side::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pd-video-side-left::after {
    background: linear-gradient(to right, transparent 60%, #080808 100%);
}

.pd-video-side-right::after {
    background: linear-gradient(to left, transparent 60%, #080808 100%);
}

.pd-vs-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
}

.pd-vs-caption span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
}

/* Center: main video */
.pd-video-player {
    position: relative;
    height: 680px;
    overflow: hidden;
    background: #111;
    z-index: 2;
    box-shadow: 0 0 80px rgba(0, 0, 0, .8);
}

.pd-video-thumb {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.pd-video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.pd-video-thumb:hover .pd-video-cover {
    transform: scale(1.03);
}

.pd-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 30%,
            rgba(0, 0, 0, .7) 100%);
}

.pd-video-play-btn {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 2px solid rgba(255, 255, 255, .55);
    backdrop-filter: blur(12px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s, border-color .2s;
    z-index: 3;
}

.pd-video-play-btn:hover {
    background: rgba(255, 255, 255, .25);
    border-color: #fff;
    transform: translate(-50%, -50%) scale(1.08);
}

.pd-video-play-icon {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

/* Info overlay at bottom of center video */
.pd-video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 32px 28px 28px;
}

.pd-video-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    margin: 0 0 12px;
    line-height: 1.5;
}

.pd-video-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pd-video-tags span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, .8);
}

.pd-video-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- REVIEWS ---- */
.pd-reviews {
    padding: 80px 0;
    background: var(--white);
}

.pd-reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 24px;
}

.pd-reviews-score {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pd-reviews-avg {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
}

/* Rating bars */
.pd-rating-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 360px;
    margin-bottom: 48px;
}

.pd-rating-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--gray);
}

.pd-rbar {
    flex: 1;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.pd-rbar div {
    height: 100%;
    background: var(--black);
    border-radius: 3px;
}

.pd-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pd-review-card {
    padding: 28px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow .2s;
}

.pd-review-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .07);
}

.pd-review-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pd-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--black);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pd-review-head>div:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.pd-review-head strong {
    font-size: 0.85rem;
    color: var(--black);
}

.pd-review-head span {
    font-size: 0.72rem;
    color: var(--light-gray);
}

.pd-review-text {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.65;
    font-style: italic;
    flex: 1;
}

.pd-review-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--light-gray);
    margin-top: auto;
}

.pd-review-badge {
    background: #e8f5e9;
    color: #2a9d5c;
    padding: 3px 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ---- RELATED ---- */
.pd-related {
    padding: 80px 0;
    background: var(--off-white);
}

.pd-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ---- LIGHTBOX ---- */
.pd-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
}

.pd-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.pd-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.pd-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    transition: background .2s;
}

.pd-lightbox-close:hover {
    background: rgba(255, 255, 255, .1);
}

/* ---- STICKY BAR (mobile) ---- */
.pd-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: #fff;
    border-top: 1px solid var(--border);
    transform: translateY(100%);
    transition: transform .35s var(--ease);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .08);
}

.pd-sticky-bar.visible {
    transform: translateY(0);
}

.pd-sticky-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    max-width: 1360px;
    margin: 0 auto;
}

.pd-sticky-inner img {
    width: 44px;
    height: 56px;
    object-fit: cover;
    flex-shrink: 0;
}

.pd-sticky-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.pd-sticky-info span {
    font-size: 0.8rem;
    color: var(--gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pd-sticky-info strong {
    font-size: 1rem;
    font-weight: 800;
    color: var(--black);
}

.pd-sticky-btn {
    background: var(--black);
    color: #fff;
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s;
}

.pd-sticky-btn:hover {
    background: #222;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
    .pd-grid {
        grid-template-columns: 1fr 420px;
        gap: 40px;
    }

    .pd-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pd-video-stage {
        grid-template-columns: 0.6fr 2fr 0.6fr;
        height: 560px;
    }

    .pd-video-side {
        height: 420px;
    }

    .pd-video-player {
        height: 560px;
    }
}

@media (max-width: 860px) {
    .pd-grid {
        grid-template-columns: 1fr;
    }

    .pd-gallery {
        position: static;
        grid-template-columns: 60px 1fr;
        gap: 10px;
    }

    .pd-thumb {
        width: 60px;
    }

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

    .pd-reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .pd-feature-card {
        flex: 0 0 240px;
    }

    .pd-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pd-video-stage {
        grid-template-columns: 1fr;
        height: auto;
    }

    .pd-video-side {
        display: none;
    }

    .pd-video-player {
        height: 520px;
        box-shadow: none;
    }

    .pd-video-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 560px) {
    .pd-qty-row {
        flex-wrap: wrap;
    }

    .pd-add-btn {
        min-height: 52px;
    }

    .pd-trust {
        grid-template-columns: 1fr;
    }

    .pd-related-grid {
        grid-template-columns: 1fr;
    }
}