/* ── 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: relative;
    /* 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 {
    padding-bottom: 100%;
}

.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 {
    color: var(--color-3);
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.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;
    }
}

/* Product Detail — Applications Block */
.pd-apps-inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    background: #fafafa;
    border: 1px solid #e8edf0;
    padding: 12px 16px;
    border-radius: 8px;
}

.pd-apps-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-3, #333);
    margin-right: 5px;
    white-space: nowrap;
}

.pd-apps-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pd-app-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #4a5568;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.pd-app-tag:hover {
    border-color: var(--color-3);
    color: var(--color-3);
    transform: translateY(-1px);
}

.pd-app-tag img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 50%;
}

/* Tab Apps Grid */
.pd-apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 10px 0;
}

.pd-app-card {
    background: #ffffff;
    border: 1px solid #e8edf0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    text-decoration: none;
}

.pd-app-card:hover {
    border-color: var(--color-3);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.pd-app-card-img {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.pd-app-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.pd-app-card-name {
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.4;
    transition: color 0.2s;
}

.pd-app-card:hover .pd-app-card-name {
    color: var(--color-3);
}

@media (max-width: 991px) {
    .pd-apps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .pd-apps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .pd-app-card-img {
        height: 120px;
    }
}

/* ====================================================
   PRODUCT DETAIL PAGE STYLES
   ==================================================== */

.pd-container {
    padding: 30px 10px 20px;
}

.pd-col-gallery {
    width: 100%;
    margin-bottom: 30px;
}

.pd-col-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.pd-col-info {
    width: 100%;
    margin-bottom: 20px;
}

/* Gallery */
.gallery-main {
    position: relative;
}

.gallery-main:hover .slick-arrow {
    opacity: 1;
}

.gallery-main .slick-prev,
.gallery-main .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 35px;
    height: 35px;
    border: none;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    border-radius: 50%;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 24px !important;
    line-height: 1 !important;
}

.gallery-main .slick-prev:hover,
.gallery-main .slick-next:hover {
    background: var(--color-3, #dfac40) !important;
    color: #fff !important;
}

.gallery-main .slick-prev {
    left: 5px;
}

.gallery-main .slick-next {
    right: 5px;
}

.gallery-main .slick-prev::before,
.gallery-main .slick-next::before {
    display: none !important;
}

.gallery-main .slick-prev span,
.gallery-main .slick-next span {
    font-size: 24px !important;
    color: inherit !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Thumbnail gallery arrows */
.gallery-thumbs {
    margin: 0 -5px;
    position: relative;
}

.gallery-thumbs .slick-prev,
.gallery-thumbs .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    border-radius: 50%;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px !important;
    line-height: 1 !important;
}

.gallery-thumbs .slick-prev:hover,
.gallery-thumbs .slick-next:hover {
    background: var(--color-3, #dfac40) !important;
    color: #000 !important;
}

.gallery-thumbs .slick-prev {
    left: -16px;
}

.gallery-thumbs .slick-next {
    right: -16px;
}

.gallery-thumbs .slick-prev::before,
.gallery-thumbs .slick-next::before {
    display: none !important;
}

.gallery-thumbs .slick-prev span,
.gallery-thumbs .slick-next span {
    font-size: 18px !important;
    color: inherit !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {

    .gallery-main .slick-prev,
    .gallery-main .slick-next {
        width: 36px;
        height: 36px;
        font-size: 20px !important;
    }

    .gallery-main .slick-prev {
        left: 8px;
    }

    .gallery-main .slick-next {
        right: 8px;
    }

    .gallery-thumbs .slick-prev {
        left: -8px;
    }

    .gallery-thumbs .slick-next {
        right: -8px;
    }
}

.main-slide-item img,
.gallery-main-single img {
    width: 100%;
    border-radius: 4px;
    object-fit: contain;
}

.thumb-slide-item {
    padding: 0 5px;
    cursor: pointer;
}

.thumb-img-wrap img {
    width: 100%;
    border-radius: 4px;
}

/* Info */
.pd-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--color-3);
    margin: 0 0 10px;
    line-height: 1.4;
}

.pd-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.pd-stars {
    color: #f5a623;
    margin-right: 15px;
    font-size: 16px;
}

.pd-sku {
    border-left: 1px solid #ddd;
    padding-left: 15px;
}

.pd-price-box {
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.pd-price {
    font-size: 26px;
    font-weight: bold;
    color: #d93838;
}

.pd-original-price {
    font-size: 16px;
    text-decoration: line-through;
    color: #999;
}

.pd-short-desc-wrap {
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #e8edf2;
    position: relative;
}

.pd-short-desc-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-3);
    padding: 4px 15px;
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 1;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 8px;
}

.pd-short-desc-body {
    padding: 20px 15px 10px 15px;
    position: relative;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.pd-short-desc-body.collapsed {
    max-height: 148px;
}

.pd-short-desc-body.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
}

.pd-short-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
}

.pd-short-desc ul {
    padding-left: 20px;
    margin: 0;
    list-style: disc;
}

.pd-short-desc li {
    margin-bottom: 6px;
}

.pd-short-desc-toggle {
    display: block;
    padding: 8px 15px 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--color-3);
    cursor: pointer;
    background: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.pd-short-desc-toggle:hover {
    color: var(--color-5);
}

.pd-qty-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-3);
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
}

.pd-action-row {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pd-qty-control {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 48px;
    width: 120px;
    overflow: hidden;
}

.pd-qty-control button {
    width: 40px;
    background: #fdfdfd;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #555;
    transition: 0.2s;
}

.pd-qty-control button:hover {
    background: #f0f0f0;
}

.pd-qty-control input {
    width: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.pd-btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 30px;
    background: var(--color-3);
    color: #fff;
    border: 1px solid var(--color-3);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.pd-btn-cart:hover {
    background: #333;
}

.pd-compare-row {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.btn-compare {
    display: flex;
    gap: 3px;
    align-items: center;
    color: #FFF;
    padding: 5px 10px;
    border-radius: 10px;
    background: var(--color-3);
}

.btn-compare.is-compared {
    background: #d93838;
}

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

.pd-btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 30px;
    background: #1c7b87;
    color: #fff;
    border: 1px solid #1c7b87;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.pd-btn-buy:hover {
    background: #b22828;
    border-color: #b22828;
}

/* External Buy Buttons */
.pd-external-buy-wrapper {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
}

.pd-external-title {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
}

.pd-external-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pd-btn-external {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.pd-btn-shopee {
    background-color: #ee4d2d;
    color: #ffffff;
    border: 1px solid #ee4d2d;
}

.pd-btn-shopee:hover {
    background-color: #d73211;
    color: #ffffff;
    border-color: #d73211;
}

.pd-btn-tiktok {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #000000;
}

.pd-btn-tiktok:hover {
    background-color: #222222;
    color: #ffffff;
    border-color: #222222;
}

/* Perks Box */
.pd-perks-box {
    position: sticky;
    top: 90px;
    width: 100%;
    background: #ffffff;
    border-radius: 0;
    padding: 0;
    border: 0;
    box-shadow: 0;
    overflow: hidden;
}

/* .pd-perks-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-3);
} */

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

.pd-perk-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.pd-perk-item:hover {
    background: #ffffff;
    border-color: var(--color-3);
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
}

.pd-perk-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.pd-perk-item:hover .pd-perk-icon {
    transform: scale(1.05);
    background: var(--color-3);
    border-color: var(--color-3);
}

.pd-perk-item img,
.pd-perk-item svg {
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: filter 0.25s ease;
    filter: brightness(0);
}

.pd-perk-item:hover img {
    filter: brightness(0) invert(1);
}

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

.pd-perk-title,
.pd-perk-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.pd-perk-item:hover .pd-perk-title,
.pd-perk-item:hover h4 {
    color: var(--color-3);
}

.pd-perk-desc,
.pd-perk-item p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.pd-perk-item.hotline-item {
    border-left: 1px dashed #ddd;
    padding-left: 20px;
}

.pd-perk-item.hotline-item p {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-3);
}

.pd-perk-item.hotline-item span {
    font-size: 12px;
    color: #666;
    display: block;
    margin-top: 2px;
}

/* Tabs */
.pd-tabs-wrap {
    margin-top: 20px;
    padding: 20px;
    background-color: var(--color-2);
    border-radius: 5px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 3px 10px;
}

.pd-tabs-nav {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: center;
}

.pd-tab-btn {
    background: none;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.pd-tab-btn.active {
    color: #FFF;
    background-color: var(--color-3);
}

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

.pd-tab-content {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.pd-tab-pane {
    display: none;
}

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

/* Content Collapsible Feature */
.content-collasp {
    position: relative;
    max-height: 380px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.content-collasp.is-expanded {
    max-height: none !important;
    overflow: visible;
}

.content-collasp__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.content-collasp.is-expanded .content-collasp__overlay {
    opacity: 0;
    display: none;
}

.content-collasp__toggle-wrap {
    text-align: center;
    margin-top: 15px;
    position: relative;
    z-index: 3;
}

.content-collasp__toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 26px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-3, #004c8f);
    background: #ffffff;
    border: 1px solid var(--color-3, #004c8f);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.content-collasp__toggle-btn:hover {
    background: var(--color-3, #004c8f);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.content-collasp__toggle-btn svg {
    transition: transform 0.3s ease;
}

.content-collasp.is-expanded+.content-collasp__toggle-wrap .content-collasp__toggle-btn svg {
    transform: rotate(180deg);
}

/* Related Products */
.related-products-section {
    padding-top: 30px;
    border-top: 1px solid #eee;
}

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

/* Modal */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.open {
    display: flex;
}

@media(max-width: 991px) {
    .clm {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media(max-width: 767px) {
    .pd-perks-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pd-tab-btn {
        font-size: 14px;
        gap: 20px;
    }

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

    .pd-qty-control {
        width: 100px !important;
        flex-shrink: 0 !important;
        height: 40px !important;
    }

    .pd-qty-control button {
        width: 30px !important;
        font-size: 16px !important;
    }

    .pd-qty-control input {
        width: 40px !important;
        font-size: 14px !important;
    }

    .pd-btn-cart,
    .pd-btn-buy {
        height: 40px !important;
        padding: 0 8px !important;
        font-size: 16px !important;
        flex: 1 !important;
        white-space: nowrap !important;
        justify-content: center !important;
    }

    .pd-btn-hotline,
    .pd-btn-zalo {
        height: 44px;
        padding: 0 8px;
        font-size: 13.5px;
        white-space: nowrap;
    }

    .pd-btn-cart svg {
        width: 14px !important;
        height: 14px !important;
    }

    .pd-tabs-nav {
        justify-content: start;
    }
}

@media(max-width: 420px) {
    .pd-btn-hotline,
    .pd-btn-zalo {
        font-size: 12px;
        padding: 0 4px;
    }
}

/* Reviews Tab Style */
.reviews-dashboard {
    display: grid;
    grid-template-columns: 250px 1fr 200px;
    gap: 30px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    align-items: center;
}

.reviews-score-box {
    text-align: center;
    border-right: 1px solid #eee;
    padding-right: 20px;
}

.reviews-score-big {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-3);
    line-height: 1;
    margin-bottom: 10px;
}

.reviews-score-stars {
    color: #f5a623;
    font-size: 20px;
    margin-bottom: 5px;
}

.reviews-score-count {
    font-size: 13px;
    color: #666;
}

.reviews-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reviews-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
}

.reviews-bar-label {
    width: 50px;
    text-align: right;
    white-space: nowrap;
}

.reviews-bar-bg {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.reviews-bar-fill {
    height: 100%;
    background: #f5a623;
    border-radius: 4px;
}

.reviews-bar-percent {
    width: 40px;
    text-align: left;
}

.reviews-action-box {
    text-align: center;
}

.btn-write-review {
    display: inline-block;
    padding: 12px 24px;
    background: var(--color-3);
    color: #fff;
    border: 1px solid var(--color-3);
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-write-review:hover {
    background: #333;
}

/* Review Form */
.review-form-wrap {
    display: none;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.review-form-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-3);
    margin: 0 0 20px;
    text-transform: uppercase;
}

.review-star-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-star-selector-label {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.review-stars-interactive {
    display: flex;
    gap: 5px;
}

.review-star-btn {
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.review-star-btn.active,
.review-star-btn:hover,
.review-star-btn.hover {
    color: #f5a623;
}

.review-star-text-hint {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.review-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.review-form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-form-field label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.review-form-field input,
.review-form-field textarea {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.review-form-field input:focus,
.review-form-field textarea:focus {
    outline: none;
    border-color: var(--color-3);
}

.review-form-submit {
    padding: 12px 30px;
    background: var(--color-5);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
}

.review-form-submit:hover {
    background: #b22828;
}

/* Reviews List Styles */
.review-card-item {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.01);
}

.review-card-stars {
    color: #f5a623;
    font-size: 14px;
    margin-bottom: 8px;
}

.review-card-stars .empty-star {
    color: #ddd;
}

.review-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-3);
    margin: 0 0 6px;
}

.verified-purchaser-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.review-card-body-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 12px;
}

.review-card-footer {
    font-size: 12px;
    color: #999;
}

.review-card-replies-list {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
    margin-left: 20px;
}

.review-card-reply-item {
    background: #fdfdfd;
    border: 1px solid #f5f5f5;
    border-radius: 6px;
    padding: 12px 15px;
    margin-bottom: 10px;
}

.reply-header-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.reply-author-name {
    font-weight: 700;
    font-size: 13px;
    color: #333;
}

.reply-admin-badge {
    font-size: 10px;
    font-weight: 700;
    color: #d93838;
    background: #ffebee;
    padding: 1px 6px;
    border-radius: 4px;
}

.reply-body-content {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
}

/* Pagination Custom */
.pagination-wrap {
    margin-top: 25px;
}

.pagination-wrap ul {
    display: flex;
    justify-content: center;
    gap: 5px;
    list-style: none;
    padding: 0;
}

.pagination-wrap li a,
.pagination-wrap li span {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #555;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
}

.pagination-wrap li.active span {
    background: var(--color-3);
    color: #fff;
    border-color: var(--color-3);
}

.pagination-wrap li a:hover {
    background: #eee;
}

@media(max-width: 991px) {
    .reviews-dashboard {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .reviews-score-box {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .review-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Video & Play Icon */
.gallery .video-container {
    position: relative;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.gallery .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-thumbs .thumb-img-wrap {
    position: relative;
}

.gallery-thumbs .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* Actions Row & Hotline / Zalo buttons */
.pd-actions .pd-btn-buy-consult {
    width: 100%;
}

.pd-action-row.pd-contact-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.pd-btn-hotline {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #b10d00;
    color: #ffffff;
    padding: 12px 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    gap: 8px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.pd-btn-hotline:hover {
    background-color: #8e0b00;
    color: #ffffff;
}

.pd-btn-zalo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2b64ff;
    color: #ffffff;
    padding: 12px 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    gap: 8px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.pd-btn-zalo:hover {
    background-color: #1e4bd6;
    color: #ffffff;
}

/* Tabs Content Title */
.pd-tab-pane-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Review Form Field Spacing */
.review-form-field.mb-20 {
    margin-bottom: 20px;
}

/* Consult Modal Lightbox Overlay & Form */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.open {
    display: flex;
}

.lightbox-inner.consult-modal-inner {
    max-width: 500px;
    width: 100%;
    margin: auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.lightbox-inner.consult-modal-inner .lb-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
}

.lightbox-inner.consult-modal-inner h3 {
    margin-top: 0;
}

.lightbox-inner.consult-modal-inner input,
.lightbox-inner.consult-modal-inner textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.lightbox-inner.consult-modal-inner .btn-register {
    width: 100%;
    padding: 12px;
    background: var(--color-3);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s;
}

.lightbox-inner.consult-modal-inner .btn-register:hover {
    opacity: 0.9;
}