.product-gallery {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background:
        radial-gradient(circle at 50% 35%, #fff 0%, #f8fafc 52%, #edf2f7 100%);
    border-right: 1px solid var(--border);
}

.product-main-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 390px;
    padding: 25px;
}

.product-main-image img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.product-thumbnail {
    width: 64px;
    height: 64px;
    padding: 7px;
    background: #fff;
    border: 1px solid #dbe2ea;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(15,23,42,.05);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-details {
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 42px 45px;
    background: #fff;
}

.product-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    margin-bottom: 18px;
    padding: 6px 10px;
    background: #ecfdf3;
    border-radius: 20px;
    color: #18794e;
    font-size: 12px;
    font-weight: 650;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
}

.product-title-area {
    margin-bottom: 22px;
}

.product-title-area h2 {
    margin: 0 0 5px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 750;
    color: var(--navy);
}

.product-title-area p {
    margin: 0;
    color: var(--muted-color);
    font-size: 16px;
}

.product-price {
    padding: 0 0 22px;
    margin-bottom: 20px;
    border-bottom: 1px solid #edf0f3;
}

.product-price > span {
    display: block;
    margin-bottom: 5px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.product-price strong {
    color: var(--navy);
    font-size: 38px;
    line-height: 1;
}

.product-price small {
    color: var(--muted-color);
    font-size: 15px;
    font-weight: 600;
}

.product-description {
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 20px;
}

.product-specifications {
    padding: 20px;
    background: var(--soft);
    border: 1px solid #edf0f3;
    border-radius: 14px;
}

.product-specifications h4 {
    margin: 0 0 14px;
    color: #334155;
    font-size: 16px;
    font-weight: 750;
}

.product-specifications ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.product-specifications li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-size: 14px;
}

.product-specifications li i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    color: var(--primary);
}

.product-actions {
    margin-top: 22px;
}

.btn-product-quote {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 22px;
    border-radius: 10px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: .25s ease;
}

.btn-product-quote:hover {
    color: white;
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(200,25,25,.22);
}

.product-support {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--muted-color);
    font-size: 12px;
}

.product-support i {
    color: #16a34a;
    font-size: 15px;
}

@media (max-width: 991px) {
    .product-modal-body {
        grid-template-columns: 1fr !important;
    }

    .product-gallery {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .product-main-image {
        min-height: 280px;
    }

    .product-main-image img {
        max-height: 280px;
    }
}

@media (max-width: 575px) {
    .product-modal-header {
        padding: 16px 20px;
    }

    .product-gallery {
        width: 100%;
        padding: 20px 15px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    
    .product-main-image {
        min-height: 220px;
        padding: 10px;
    }

     .product-main-image img {
        max-height: 220px;
        max-width: 85%;
    }

    .product-thumbnails {
        margin-top: 10px;
    }

    .product-thumbnail {
        width: 58px;
        height: 58px;
    }

    .product-details {
        width: 100%;
        padding: 25px 20px;
    }

    .product-status {
        margin-bottom: 14px;
    }

    .product-title-area {
        margin-bottom: 18px;
    }

    .product-title-area h2 {
        font-size: 28px;
        line-height: 1.15;
    }

    .product-title-area p {
        font-size: 16px;
    }

    .product-price {
        padding-bottom: 18px;
        margin-bottom: 18px;
    }

    .product-price strong {
        font-size: 34px;
    }

    .product-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .product-specifications {
        padding: 18px;
    }
}

/* Solo promo */
.product-promotion {
    display: flex;
    align-items: center;
    gap: 10px;

    margin: 16px 0;
    padding: 10px 12px;

    background: #fff8f7;
    border: 1px solid #f3d5d2;
    border-radius: 8px;
}

.product-promotion i {
    font-size: 18px;
    color: var(--primary);
}

.product-promotion div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-promotion span {
    color: #b42318;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-promotion strong {
    color: #475569;
    font-size: 12px;
    font-weight: 600;
}

/* Promo descuento BOX */
.product-promo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px 14px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 10px;
}

.product-promo-box i {
    font-size: 20px;
    color: var(--primary);
}

.product-promo-box strong {
    display: block;
    font-size: 13px;
    color: #334155;
}

.product-promo-box span {
    font-size: 12px;
    color: #64748b;
}

/* ----------- */
.product-promo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px 14px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 10px;
}
.product-promo-box i {
    font-size: 20px;
    color: var(--primary);
}
.product-promo-box strong {
    display: block;
    font-size: 13px;
    color: #334155;
}
.product-promo-box span {
    font-size: 12px;
    color: #64748b;
}