/* ── MAIN LAYOUT ── */
.product-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* ── FORCE TEXT CONTRAST (ghi đè theme) ── */
.product-page h1,
.product-page h2,
.product-page h3,
.product-page p,
.product-page span:not(.img-badge):not(.discount-tag):not(.stock-text),
.product-page div:not(.img-badge):not(.zoom-hint),
.product-page strong,
.product-page label {
    color: inherit;
}

.product-page {
    color: #fff;
}

.product-page .product-name {
    color: #fff !important;
}

.product-page .category {
    color: var(--color-3) !important;
}

.product-page .price-sale {
    color: var(--color-3) !important;
}

.product-page .price-original {
    color: rgba(255, 255, 255, .45) !important;
}

.product-page .stock-text {
    color: var(--color-3) !important;
}

.product-page .stock-qty {
    color: rgba(255, 255, 255, .45) !important;
}

.product-page .section-label {
    color: rgba(255, 255, 255, .5) !important;
}

.product-page .spec-item {
    color: rgba(255, 255, 255, .55) !important;
}

.product-page .spec-item strong {
    color: rgba(255, 255, 255, .85) !important;
}

.product-page .specs summary {
    color: #fff !important;
}

.product-page .qty-val {
    color: #fff !important;
}

.product-page .rating-val {
    color: #fff !important;
}

/* ── GALLERY ── */
.gallery {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 80px;
    width: 100%;
    min-width: 0;
    /* Fixes slick slider overflow in CSS Grid */
}

.gallery-main {
    width: 100%;
    margin-bottom: 0;
}

.main-slide-item {
    outline: none;
}

.main-slide-item .wrap-img {
    aspect-ratio: 800 / 600;
}

.main-slide-item .wrap-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(223, 172, 64, .35);
    cursor: zoom-in;
    aspect-ratio: 3 / 2.5;
    display: block;
    width: 100%;
}

.main-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform .22s cubic-bezier(.4, 0, .2, 1);
}

.main-image-wrap:hover img {
    transform: scale(1.03);
}

.img-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--color-3);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 10;
}

.zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(223, 172, 64, .3);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, .75);
    display: flex;
    align-items: center;
    gap: 5px;
    pointer-events: none;
    z-index: 10;
}

/* Thumbnails */
.gallery-thumbs {
    margin: 0 -5px;
}

.gallery-thumbs .slick-slide {
    padding: 0 5px;
    outline: none;
}

.thumb-slide-item {
    cursor: pointer;
}

.thumb-img-wrap {
    aspect-ratio: 1 / 1;
    border-radius: 7px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    transition: border-color .22s cubic-bezier(.4, 0, .2, 1), transform .22s cubic-bezier(.4, 0, .2, 1);
    /* background: #111; */
}

.thumb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .22s cubic-bezier(.4, 0, .2, 1);
}


.gallery-thumbs .slick-slide.slick-current .thumb-img-wrap {
    border-color: var(--color-3);
}

/* ── PRODUCT INFO ── */
.product-info {
    padding-top: 4px;
}

.category {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-3);
    margin-bottom: 10px;
    cursor: pointer;
}

.category:hover {
    color: #f0c860;
}

.product-name {
    font-size: 30px;
    line-height: 1.22;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -.3px;
    color: #fff;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.stars {
    color: var(--color-3);
    font-size: 14px;
    letter-spacing: 1px;
}

.rating-val {
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
}

.review-count {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}

.review-count a {
    color: var(--color-3);
    text-decoration: underline;
    cursor: pointer;
}

.divider {
    height: 1px;
    background: rgba(223, 172, 64, .25);
    margin: 17px 0;
}

/* Price block */
.price-block {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    font-size: 18px;
}

.price-sale {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-3);
    line-height: 1;
}

.price-original {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, .4);
    text-decoration: line-through;
    line-height: 1;
}

.discount-tag {
    background: var(--color-3);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 5px;
}

/* Stock */
.stock-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-3);
    box-shadow: 0 0 6px rgba(223, 172, 64, .6);
}

.stock-text {
    font-size: 13px;
    color: var(--color-3);
    font-weight: 500;
}

.stock-qty {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
}

/* Variants */
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 10px;
}

.color-opts {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.color-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    transition: transform .22s cubic-bezier(.4, 0, .2, 1);
}

.color-btn:hover {
    transform: scale(1.15);
}

.color-btn.active {
    border-color: var(--color-3);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .8), 0 0 0 4px var(--color-3);
}

.color-btn span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.size-opts {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.size-btn {
    min-width: 44px;
    height: 40px;
    padding: 0 14px;
    border: 1.5px solid rgba(255, 255, 255, .2);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    transition: all .22s cubic-bezier(.4, 0, .2, 1);
    color: rgba(255, 255, 255, .8);
}

.size-btn:hover {
    border-color: var(--color-3);
    color: var(--color-3);
}

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

.size-btn.unavailable {
    opacity: .3;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Quantity */
.qty-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.qty-ctrl {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, .04);
}

.qty-btn {
    width: 40px;
    height: 44px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: rgba(255, 255, 255, .6);
    transition: background .22s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: rgba(223, 172, 64, .15);
    color: var(--color-3);
}

.qty-val {
    width: 48px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    border-left: 1.5px solid rgba(255, 255, 255, .12);
    border-right: 1.5px solid rgba(255, 255, 255, .12);
    height: 44px;
    line-height: 44px;
    color: #fff;
}

/* New CTAs */
.cta-actions {
    margin-bottom: 24px;
}

.btn-register {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, var(--color-3), #f0c860);
    color: #111;
    border: none;
    border-radius: 9px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition: transform .22s, box-shadow .22s;
    box-shadow: 0 4px 20px rgba(223, 172, 64, .4);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(223, 172, 64, .6);
}

.cta-row-2 {
    display: flex;
    gap: 12px;
}

.cta-row-2 a {
    flex: 1;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .22s, opacity .22s;
    border: 1px solid rgba(223, 172, 64, .35);
    text-transform: uppercase;

}

/* .btn-call {
    background: #a72828;
    color: #fff !important;
}

.btn-zalo {
    background: #0068ff;
    color: #fff !important;
} */

.cta-row-2 a:hover {
    transform: translateY(-2px);
    opacity: .9;
}

/* CTAs */
.cta-row {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.btn-cart {
    flex: 1;
    height: 52px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .2);
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
    cursor: pointer;
    transition: background .22s, border-color .22s, transform .22s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-cart:hover {
    background: rgba(255, 255, 255, .14);
    border-color: var(--color-3);
    transform: translateY(-1px);
}

.btn-buy {
    flex: 1;
    height: 52px;
    background: var(--color-3);
    color: #fff;
    border: none;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
    cursor: pointer;
    transition: background .22s, transform .22s;
    box-shadow: 0 4px 20px rgba(223, 172, 64, .4);
}

.btn-buy:hover {
    background: #c9973a;
    transform: translateY(-1px);
}

.btn-wish {
    width: 52px;
    height: 52px;
    border: 1.5px solid rgba(255, 255, 255, .2);
    border-radius: 9px;
    background: transparent;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .22s cubic-bezier(.4, 0, .2, 1);
    flex-shrink: 0;
    color: rgba(255, 255, 255, .5);
}

.btn-wish:hover {
    border-color: var(--color-3);
    color: var(--color-3);
}

.btn-wish.liked {
    border-color: var(--color-3);
    color: var(--color-3);
}

.btn-wish svg {
    fill: none;
    transition: fill .2s ease;
}

.btn-wish.liked svg {
    fill: currentColor;
}

/* Perks */
.perks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(223, 172, 64, .2);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
}

.perk-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.perk strong {
    display: block;
    font-weight: 600;
    font-size: 12.5px;
    color: #fff;
}

.perk span {
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
}

/* Specs */
.specs {
    margin-top: 24px;
}

.specs summary {
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid rgba(223, 172, 64, .2);
    user-select: none;
    color: #fff;
}

.specs summary::after {
    content: '+';
    font-size: 18px;
    color: var(--color-3);
}

details[open] summary::after {
    content: '−';
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    padding-bottom: 16px;
}

.spec-item {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
}

.spec-item strong {
    color: rgba(255, 255, 255, .85);
    display: block;
    font-weight: 500;
}

/* ── LIGHTBOX ── */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(12, 10, 9, .92);
    backdrop-filter: blur(8px);
    animation: fadeIn .25s ease;
}

.lightbox-overlay.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lightbox-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .18);
    animation: zoomIn .28s cubic-bezier(.34, 1.56, .64, 1);
    border: 2px solid var(--color-3);
}

@keyframes zoomIn {
    from {
        transform: scale(.88);
        opacity: 0;
    }

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

.lightbox-img-wrap img {
    display: block;
    max-width: 72vw;
    max-height: 82vh;
    object-fit: contain;
}

.lb-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(223, 172, 64, .2);
    border: 1px solid rgba(223, 172, 64, .5);
    color: var(--color-3);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .22s cubic-bezier(.4, 0, .2, 1);
    flex-shrink: 0;
}

.lb-nav:hover {
    background: rgba(223, 172, 64, .4);
}

.lb-close {
    position: absolute;
    top: -52px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(223, 172, 64, .2);
    border: 1px solid rgba(223, 172, 64, .4);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .22s cubic-bezier(.4, 0, .2, 1);
}

.lb-close:hover {
    background: rgba(223, 172, 64, .5);
}

.lb-counter {
    position: absolute;
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
}

.lb-thumbnails {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.lb-thumb {
    width: 54px;
    height: 54px;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color .22s cubic-bezier(.4, 0, .2, 1);
}

.lb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-thumb.active {
    border-color: var(--color-3);
}

@media (max-width: 860px) {
    .product-page {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 0 0 0px;
    }

    .divider {
        margin: 12px 0;
    }

    .product-content-section {
        margin-top: 20px;
    }

    .product-name {
        font-size: 26px;
    }

    .price-sale {
        font-size: 28px;
    }

    .gallery {
        position: static;
    }
}

/* ── MIGRATED INLINE STYLES ── */

/* Price block in contact mode */
.price-block.contact-price {
    align-items: center;
}

.price-block.contact-price .contact-label {
    font-size: 18px;
    color: rgba(255, 255, 255, .6);
}

.price-block.contact-price .price-sale {
    font-size: 32px;
}

/* Short description */
.short-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .75);
    margin-top: 10px;
    margin-bottom: 24px;
}

/* Common product content */
.product-common-content-section {
    margin-bottom: 30px;
    background: #272727;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .05);
}

.product-common-content-body img {
    max-width: 100%;
    height: auto !important;
}

.product-common-content-body {
    color: rgba(255, 255, 255, .85);
    line-height: 1.7;
    font-size: 15px;
}

/* Detailed product description */
.product-content-section {
    margin-top: 40px;
}

.product-content-section .section-title {
    color: var(--color-3);
    font-size: 22px;
    /* margin-bottom: 20px; */
    font-weight: 700;
    text-transform: uppercase;
}

#productContentBody img {
    max-width: 100%;
    height: auto !important;
}

#productContentBody {
    transition: max-height 0.4s ease;
    color: rgba(255, 255, 255, .85);
    line-height: 1.7;
    font-size: 15px;
    overflow: hidden;
    position: relative;
}

.content-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(transparent, #111);
    display: none;
}

.product-content-toggle-wrap {
    text-align: center;
    margin-top: 20px;
}

#btnToggleContent {
    display: none;
    background: transparent;
    border: 1px solid var(--color-3);
    color: var(--color-3);
    padding: 10px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all .2s;
    text-transform: uppercase;
    font-size: 14px;
}

#btnToggleContent:hover {
    background: var(--color-3);
    color: #111;
}

/* Related products */
.related-products-section {
    margin-top: 30px;
    margin-bottom: 15px;
}

.related-products-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.related-slider .slick-slide {
    margin: 0 8px;
}

.related-slider .slick-list {
    margin: 0 -8px;
}

/* Consult modal dialog specific styling */
#consultModal .lightbox-inner {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(223, 172, 64, .3);
    max-width: 500px;
    width: 90vw;
    flex-direction: column;
    cursor: default;
    align-items: center;
    justify-content: center;
}

#consultModal .lb-close {
    top: 10px;
    right: 10px;
}

#consultModal h3 {
    color: var(--color-3);
    font-size: 22px;
    font-weight: 700;
    /* margin-bottom: 10px; */
    text-transform: uppercase;
    text-align: center;
}

#consultModal p {
    /* color: rgba(255, 255, 255, .7); */
    font-size: 16px;
    margin-bottom: 14px;
    text-align: center;
    /* max-width: 300px; */
}

#consultForm {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

#consultForm input[type="text"],
#consultForm input[type="tel"],
#consultForm input[type="email"],
#consultForm textarea {
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .05);
    color: #000;
    padding: 0 16px;
    font-size: 14px;
    outline: none;
}

#consultForm input[type="text"],
#consultForm input[type="tel"],
#consultForm input[type="email"] {
    height: 48px;
}

#consultForm textarea {
    padding: 12px 16px;
    resize: vertical;
    font-family: inherit;
}

#consultForm .btn-register {
    margin-top: 10px;
    margin-bottom: 0;
    width: 100%;
}

/* Consultation form submit button state */
.btn-register:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}



@media (max-width: 768px) {
    .product-content-section {
        margin-top: 20px;
    }

    .related-products-section {
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .related-slider .slick-slide {
        margin: 0 4px;
    }

    .related-slider .slick-list {
        margin: 0 -4px;
    }
}

.pd-container {
    /* --gutter: 30px; */
    margin-bottom: 30px;
}

.pd-container-left {
    border-right: 1px solid #ececec;
    padding-right: 30px;
}

.pd-container-right {
    padding-left: 30px;
}

#tab-reviews {
    margin-top: 30px;
}

.review-title-section {
    font-size: 18px;
    margin-bottom: 15px;
}

/* ── Q&A (HỎI ĐÁP) SECTION ── */
.prod-qa-container {
    background: #ffffff;
    color: #333333;
    padding: 25px 0 0;
    margin-top: 30px;
    border-top: 1px solid #eeeeee;
    font-family: 'Roboto', sans-serif;
}

.prod-qa-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}

.prod-qa-form {
    margin-bottom: 25px;
}

.prod-qa-textarea-wrap {
    margin-bottom: 12px;
}

.prod-qa-textarea {
    width: 100%;
    height: 95px;
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    resize: vertical;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease-in-out;
}

.prod-qa-textarea:focus {
    border-color: #3bb34a;
}

.prod-qa-form-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.prod-qa-gender-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.prod-qa-radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    user-select: none;
}

.prod-qa-radio-label input[type="radio"] {
    margin: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #007bff;
}

.prod-qa-label-text {
    font-weight: 500;
}

.prod-qa-inputs-row {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 250px;
}

.prod-qa-input {
    flex: 1;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #3bb34a;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    outline: none;
    box-sizing: border-box;
    padding: 8px;
}

.prod-qa-input::placeholder {
    color: #888;
}

.prod-qa-submit-btn {
    background: #f8d135;
    color: #111;
    border: none;
    border-radius: 4px;
    height: 38px;
    padding: 0 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-sizing: border-box;
}

.prod-qa-submit-btn:hover {
    background: #e2b126;
}

/* Comments Header & Search */
.prod-qa-comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.prod-qa-comments-count {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.prod-qa-search-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 260px;
}

.prod-qa-search-icon {
    position: absolute;
    left: 10px;
    color: #888;
    pointer-events: none;
}

.prod-qa-search-input {
    width: 100%;
    height: 32px;
    padding: 0 10px 0 32px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 13px;
    color: #333;
    outline: none;
    box-sizing: border-box;
}

.prod-qa-search-input:focus {
    border-color: #888;
}

/* Comments List */
.prod-qa-comments-list {
    margin-top: 15px;
}

.prod-qa-comment-item {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.prod-qa-avatar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-qa-comment-body {
    flex: 1;
}

.prod-qa-comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.prod-qa-username {
    font-weight: 700;
    font-size: 14px;
    color: #333;
}

.prod-qa-admin-badge {
    background: #f8d135;
    color: #333;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prod-qa-text {
    font-size: 14px;
    color: #333;
    margin: 0 0 6px 0;
    line-height: 1.4;
}

.prod-qa-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #888;
}

.prod-qa-reply-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.prod-qa-reply-link:hover {
    text-decoration: underline;
}

.prod-qa-separator {
    color: #ccc;
}

.prod-qa-time {
    color: #888;
}

/* Speech Bubble Reply */
.prod-qa-reply-bubble {
    display: flex;
    gap: 12px;
    background: #f0f0f0;
    padding: 12px 15px;
    border-radius: 4px;
    margin-top: 15px;
    position: relative;
    border: 1px solid #e5e5e5;
}

.prod-qa-reply-bubble::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 20px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: transparent transparent #f0f0f0 transparent;
    z-index: 2;
}

.prod-qa-reply-bubble::after {
    content: "";
    position: absolute;
    top: -9px;
    left: 20px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: transparent transparent #e5e5e5 transparent;
    z-index: 1;
}

/* ── RESPONSIVE STYLES ── */
@media (max-width: 768px) {
    .prod-qa-form-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .prod-qa-inputs-row {
        flex-direction: column;
        min-width: unset;
        gap: 10px;
    }

    .prod-qa-submit-btn {
        width: 100%;
    }

    .prod-qa-comments-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .prod-qa-search-box {
        width: 100%;
    }
}

.pd-container-left-top {
    --gutter: 15px;
}

/* ── CONTACT & SOCIAL SECTION ── */
.pd-contact-social-wrap {
    margin-top: 25px;
    margin-bottom: 25px;
}

.pd-contact-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.pd-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    box-sizing: border-box;
    border: none;
}

.pd-contact-btn.btn-phone {
    background: #d60000;
    color: #ffffff;
}

.pd-contact-btn.btn-phone:hover {
    background: #b50000;
}

.pd-contact-btn.btn-youtube {
    background: #d60000;
    color: #ffffff;
}

.pd-contact-btn.btn-youtube:hover {
    background: #b50000;
}

.pd-contact-icon {
    flex-shrink: 0;
}

.pd-social-row {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.pd-social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1.5px solid #eaeaea;
    border-radius: 50%;
    color: #aeaeae;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
    box-sizing: border-box;
}

.pd-social-circle img {
    filter: brightness(0);
}

.pd-social-circle:hover {
    border-color: #999999;
    color: #666666;
    background-color: #f9f9f9;
}

.pd-social-circle svg {
    fill: currentColor;
    display: block;
}

.pd-social-circle[title="Email"] svg {
    fill: none;
}

@media (max-width: 480px) {
    .pd-contact-buttons {
        /* flex-direction: column; */
        gap: 10px;
    }

    .pd-contact-btn {
        width: 100%;
    }
}

/* ── STORE SYSTEM WIDGET ── */
.store-system-widget {
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
}

.store-widget-title {
    font-size: 16px;
    font-weight: 700;
    color: #0977B8;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    line-height: 1.4;
}

.store-widget-box {
    background: #f7f7f7;
    border-radius: 4px;
    padding: 18px 15px;
    border: none;
}

.store-widget-box p {
    margin-top: 10px;
}

.store-box-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.store-item {
    font-size: 13.5px;
    line-height: 1.5;
    color: #333333;
}

.store-address {
    margin: 0 0 4px 0;
}

.store-address strong {
    font-weight: 700;
    color: #111111;
}

.store-hotline {
    margin: 0;
    font-size: 13.5px;
    color: #333333;
}

.store-hotline strong {
    font-weight: 700;
    color: #000000;
}

/* More replies link styling */
.prod-qa-more-replies {
    margin-left: 12px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.prod-qa-more-replies-btn {
    background: none;
    border: none;
    padding: 0;
    color: #008cc9;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
    text-decoration: none;
}

.prod-qa-more-replies-btn:hover {
    color: #0077ab;
    text-decoration: underline;
}

.prod-qa-reply-arrow {
    flex-shrink: 0;
    color: #888;
    margin-right: 6px;
    transition: color 0.2s ease;
    width: 20px;
    height: 20px;
}

.prod-qa-more-replies-btn:hover .prod-qa-reply-arrow {
    color: #0077ab;
}

@media (max-width: 992px) {
    .pd-container-left {
        border-right: 0px solid #ececec;
        padding-right: 15px;
    }

    .pd-container-right {
        padding-left: 15px;
        margin-top: 30px;
    }

    .pd-col-info {
        margin-bottom: 0px !important;
    }

    .pd-contact-social-wrap {
        margin-bottom: 0px;
    }
}
