/* --- ESTILOS GENERALES --- */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- PRODUCT CARDS --- */
.product-card {
    transition: transform 0.2s;
    height: 100%;
    position: relative;
    background-color: #fff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.img-placeholder {
    height: 200px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* --- PRECIOS --- */
.price-tag {
    font-size: 1.25rem;
    font-weight: bold;
    color: #0d6efd;
}

.price-old {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.9rem;
}

.price-final {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0d6efd;
}

.price-original {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 1.5rem;
}

/* --- HERO BANNER (PORTADA) --- */
.hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/img/hero-banner.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* --- FICHA PRODUCTO --- */
.product-img-container {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.description-box {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

/* --- EFECTOS VISUALES --- */
.product-item {
    transition: all 0.3s ease;
}

/* --- FOOTER PERSONALIZADO --- */
.footer-custom {
    background-color: #e9ecef;
    /* Un gris algo más notable que bg-light (#f8f9fa) */
    color: #212529;
}

/* --- CABECERAS DE PÁGINAS INTERNAS --- */
.page-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 4rem 0;
    /* Padding generoso pero no excesivo */
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.page-header h1 {
    font-weight: 800;
}