/* --- ESTRUCTURA GENERAL --- */
.lote-main-container {
    padding-top: 140px !important;
    /* Espacio para que el nav no lo tape */
    background-color: var(--cream);
    min-height: 100vh;
    padding-bottom: 80px;
}

/* --- BREADCRUMB --- */
.lote-breadcrumb {
    font-size: 14px;
    margin-bottom: 35px;
}

.lote-breadcrumb a {
    color: var(--lgray);
    text-decoration: none;
    transition: 0.3s;
}

.lote-breadcrumb a:hover {
    color: var(--red);
}

.lote-breadcrumb .lote-sep {
    margin: 0 10px;
    color: var(--lgray);
    opacity: 0.5;
}

.lote-breadcrumb .lote-active {
    color: var(--ch);
    font-weight: 700;
}

/* --- GALERÍA --- */
.lote-gallery-sticky {
    position: sticky;
    top: 120px;
}

.lote-main-frame {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
}

.lote-main-frame img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.lote-badge-wrap {
    position: absolute;
    top: 20px;
    left: 20px;
}

.badge-progen {
    padding: 10px 18px;
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: 13px;
    color: var(--white);
}

.badge-progen.is-toro {
    background-color: var(--ch);
}

.badge-progen.is-vaca {
    background-color: var(--red);
}

.lote-thumbs-grid {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.lote-thumb {
    width: 90px;
    height: 90px;
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
    opacity: 0.7;
}

.lote-thumb:hover {
    opacity: 1;
    border-color: var(--red);
    transform: translateY(-3px);
}

.lote-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- INFORMACIÓN --- */
.lote-category {
    color: var(--red);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.lote-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.lote-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.lote-stat-box {
    background: var(--white);
    padding: 20px;
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--lgray);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ch);
}

.stat-value small {
    font-size: 14px;
    color: var(--lgray);
    font-weight: 400;
}

.lote-description {
    background-color: var(--beige);
    padding: 25px;
    border-radius: var(--r-xl);
    border: 1px solid var(--border2);
    margin-bottom: 35px;
}

.lote-description p {
    font-size: 15px;
    color: var(--ch);
    opacity: 0.8;
    line-height: 1.7;
    margin-top: 10px;
}

/* --- BOTONES SÓLIDOS --- */
.btn-progen-primary {
    display: block;
    width: 100%;
    background-color: var(--red) !important;
    color: var(--white) !important;
    padding: 20px;
    border-radius: var(--r-md);
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    border: none;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(176, 37, 36, 0.2);
    margin-bottom: 12px;
}

.btn-progen-primary:hover {
    transform: translateY(-4px);
    filter: brightness(1.1);
    box-shadow: 0 15px 30px rgba(176, 37, 36, 0.3);
}

.btn-progen-outline {
    display: block;
    width: 100%;
    background-color: transparent;
    color: var(--ch) !important;
    padding: 15px;
    border-radius: var(--r-md);
    text-align: center;
    font-weight: 600;
    border: 1px solid var(--border2);
    transition: 0.3s;
    cursor: pointer;
}

.btn-progen-outline:hover {
    background: var(--white);
    border-color: var(--ch);
}

/* --- VENDOR CARD --- */
.lote-vendor-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 15px;
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
}

.vendor-logo {
    width: 65px;
    height: 65px;
    border-radius: var(--r-full);
    object-fit: cover;
    border: 2px solid var(--cream);
}

.vendor-info h6 {
    margin-bottom: 2px;
}

.vendor-info a {
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}