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

    .product-gallery {
        border-right: 0;
        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 {
        padding: 18px;
    }

    .product-details {
        padding: 30px 22px;
    }

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

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

/* .product-image-container {
    background: #f8f9fa;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
}
.main-image {
    max-height: 100%;
    object-fit: contain;
}
.thumbnail-list {
    display: flex;
    gap: 10px;
    padding: 15px;
    justify-content: center;
}
.thumbnail {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border: 2px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    padding: 5px;
    background: white;
    transition: .3s;
}
.thumbnail:hover,
.thumbnail.active {
    border-color: #0d6efd;
}
.product-info {
    padding: 35px;
}
.product-title {
    margin-top: 15px;
    font-size: 2rem;
    font-weight: 700;
}
.product-brand- {
    color: #666;
}
.product-price {
    color: #198754;
    font-size: 2.2rem;
    margin: 25px 0;
    font-weight: bold;
}
.description {
    color: #555;
    line-height: 1.7;
}
.features {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
}
.features ul {
    margin-bottom: 0;
}
.purchase-area {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    align-items: end;
    flex-wrap: wrap;
}
.quantity {
    width: 100px;
}
.purchase-area button {
    min-width: 200px;
}
// Móvil
@media (max-width: 768px) {
    .product-image-container {
        height: 300px;
    }
    .product-title {
        font-size: 1.5rem;
    }
    .product-price {
        font-size: 1.8rem;
    }
} */