/* =====================================================
   TRUST VISUAL – LIN XÉN
   Ảnh bán hàng vs Ảnh thực tế
===================================================== */

.lx-trust-visual {
    margin-top: 36px;
    padding: 0 16px;
    text-align: center;
}

.lx-trust-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .4px;
    margin-bottom: 6px;
}

.lx-trust-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
}

/* COMPARE BLOCK */
.lx-trust-compare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* IMAGE */
.lx-trust-image {
    position: relative;
    width: 42%;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f3f3;
}

.lx-trust-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* LABEL */
.lx-trust-label {
    position: absolute;
    bottom: 8px;
    left: 8px;

    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;

    background: rgba(0,0,0,.7);
    color: #fff;
    font-weight: 500;
}

.lx-trust-label.real {
    background: rgba(177,18,38,.85);
}

/* ARROW */
.lx-trust-arrow {
    font-size: 22px;
    font-weight: 600;
    color: #b11226;
}

/* NOTE */
.lx-trust-note {
    margin-top: 12px;
    font-size: 12px;
    color: #444;
    line-height: 1.5;
}

/* DESKTOP */
@media (min-width: 768px) {
    .lx-trust-compare {
        max-width: 720px;
        margin: 0 auto;
    }

    .lx-trust-image {
        width: 40%;
    }
}

.lx-trust-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.lx-trust-desc {
    text-align: center;
    font-size: 14.5px;
    color: #444;
}

.lx-trust-desc strong {
    color: #b11226;
    font-weight: 600;
}
.lx-trust-title.bordered {
    display: inline-block;
    padding: 12px 26px;
    border: 2px solid #b11226;
    border-radius: 999px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #b11226;
    background: #ffffff;
}

.lx-trust-title.framed {
    position: relative;
    display: inline-block;
    padding: 14px 28px;
    font-size: 24px;
    font-weight: 700;
    color: #b11226;
    background: #fff6f4;
    border-radius: 18px;
    border: 2px solid #f0c9c2;
}

.lx-trust-title.framed::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px dashed #b11226;
    border-radius: 12px;
    pointer-events: none;
}

/* =====================================================
   IMAGE ZOOM OVERLAY
===================================================== */

.lx-image-zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.lx-image-zoom-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lx-image-zoom-img {
    max-width: 92vw;
    max-height: 92vh;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
