﻿/* VISTA VER PRODUCTO */
.product-preview-page {
    padding-top: 10px;
}

.product-breadcrumb {
    font-size: .88rem;
    color: #7d8c9b;
}

    .product-breadcrumb a {
        text-decoration: none;
        color: #7d8c9b;
    }

    .product-breadcrumb span {
        margin: 0 6px;
    }

.product-gallery-box {
    background: #fff;
    border-radius: 8px;
    padding: 14px;
    position: relative;
}

.product-discount-badge {
    position: absolute;
    top: 12px;
    left: 58px;
    background: var(--efe-orange);
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: .85rem;
    z-index: 2;
}

.product-thumb-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-thumb {
    border: 1px solid #d9e3ed;
    background: #fff;
    border-radius: 4px;
    padding: 2px;
    cursor: pointer;
    overflow: hidden;
}

    .product-thumb.active {
        border-color: var(--efe-blue);
    }

    .product-thumb img {
        width: 100%;
        height: 62px;
        object-fit: cover;
        display: block;
    }

.product-main-image-box {
    background: #fff;
    border-radius: 6px;
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
}

.product-zoom-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    border: 1px solid var(--efe-blue);
    background: #fff;
    color: var(--efe-blue);
    width: 42px;
    height: 42px;
    border-radius: 6px;
}

.product-detail-panel {
    padding-top: 12px;
}

.product-brand {
    font-size: .9rem;
    color: #7f8c99;
    margin-bottom: 4px;
}

.product-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #16324b;
}

.product-sku,
.product-seller {
    font-size: .92rem;
    color: #6f7f90;
    margin-bottom: 6px;
}

.product-price-block {
    margin: 18px 0;
}

.product-price-current {
    color: var(--efe-blue);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
}

    .product-price-current span {
        font-size: 1rem;
        color: #6f7f90;
        font-weight: 400;
    }

.product-price-old {
    color: #8996a5;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.product-action-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0 18px;
    flex-wrap: wrap;
}

.product-add-btn {
    min-width: 220px;
    font-weight: 600;
}

.product-wishlist-btn {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: #18324b;
    font-size: 1.2rem;
}

.product-credit-box {
    border: 1px solid #3c3c3c;
    padding: 12px 14px;
    margin-bottom: 18px;
    background: #fff;
}

.product-shipping-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
}

.shipping-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

    .shipping-row i {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #dff0ff;
        color: var(--efe-blue);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .shipping-row.disabled {
        opacity: .55;
    }

.product-section-line {
    height: 1px;
    background: #dfe5ec;
    margin: 16px 0;
}

.product-extra-box .form-select {
    border-radius: 6px;
    height: 44px;
}

@media (max-width: 991.98px) {
    .product-title {
        font-size: 1.6rem;
    }

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

/* ===== Paleta comercial rojo / naranja / gris ===== */
.product-breadcrumb,
.product-breadcrumb a {
    color: #7b7b7b;
}

.product-gallery-box {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
}

.product-discount-badge {
    background: #f4a261;
    color: #1f1f1f;
}

.product-thumb {
    border: 1px solid #dddddf;
    border-radius: 8px;
}

.product-thumb.active {
    border-color: #c62828;
}

.product-main-image-box {
    background: #fff;
    border: 1px solid #ededed;
}

.product-zoom-btn {
    border: 1px solid #c62828;
    color: #c62828;
    background: #fff;
}

.product-brand {
    color: #7a7a7a;
}

.product-title {
    color: #2a2a2a;
}

.product-sku,
.product-seller {
    color: #6f6f6f;
}

.product-price-current {
    color: #c62828;
}

.product-price-current span {
    color: #7a7a7a;
}

.product-price-old {
    color: #9a9a9a;
}

.product-wishlist-btn {
    color: #2a2a2a;
}

.product-credit-box {
    border: 1px solid #d8d8d8;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.shipping-row i {
    background: #fbe9e9;
    color: #c62828;
}

.product-section-line {
    background: #e5e5e7;
}


