.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 45vh;
    display: flex;
    align-items: center;
}

.producto-card {
    border: none;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    position: relative;
}
.producto-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.producto-card .badge-categoria {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    font-size: 0.7rem;
}
.producto-card img {
    height: 200px;
    object-fit: cover;
    background: #f0f0f0;
}

.precio-gs {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 0.15rem;
}
.precio-usd {
    font-size: 1.05rem;
    font-weight: 600;
    color: #198754;
    margin-bottom: 0.15rem;
}
.precio-consultar {
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 0.15rem;
}
.precio-cuota {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.compare-check-wrapper {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    background: rgba(255,255,255,0.95);
    padding: 4px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.compare-check-wrapper .form-check-input {
    margin: 0;
    cursor: pointer;
}
.compare-check-wrapper .compare-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    user-select: none;
    margin: 0;
}

.compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0d6efd;
    padding: 12px 0;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1040;
}

.compare-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}
.compare-item {
    text-align: center;
}
.compare-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    background: #f0f0f0;
    margin-bottom: 8px;
}
.compare-item h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.compare-table {
    font-size: 0.9rem;
}
.compare-table th {
    background: #f8f9fa;
    width: 160px;
    font-weight: 600;
    vertical-align: middle;
}
.compare-table td {
    vertical-align: middle;
}

.form-label {
    margin-bottom: 0.15rem;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 35vh;
        padding: 2rem 0;
    }
    .hero-section h1 {
        font-size: 1.5rem;
    }
    .producto-card img {
        height: 170px;
    }
    .compare-table th {
        width: 100px;
        font-size: 0.8rem;
    }
    .compare-table {
        font-size: 0.8rem;
    }
    .compare-img {
        height: 100px;
    }
    .compare-item h5 {
        font-size: 0.85rem;
    }
    body {
        padding-bottom: 70px;
    }
}

body.has-compare-bar {
    padding-bottom: 70px;
}