/* =========================================================
   ESTILOS DE LA PÁGINA BICYCLES (BASADO EN WAREHOUSE)
   ========================================================= */

/* HERO SECTION */
.warehouse-hero {
    /*margin-top: 125px;*/
    position: relative;
    width: 100%;
    height: 225px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.warehouse-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(28, 32, 17, 0.4), rgba(28, 32, 17, 0.4)),
                rgba(123, 122, 122, 0.3);
    z-index: 2;
}

.warehouse-hero .hero-content {
    position: relative;
    z-index: 3;
    padding-left: 10%;
}

.warehouse-hero h1 {
    font-family: "Baumans", sans-serif;
    font-size: 3rem;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* GRID DE BICICLETAS */
.warehouse-items {
    padding: 60px 0;
    background-color: #fff;
}

.warehouse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* CARD DE BICICLETA */
.warehouse-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.warehouse-card:hover {
    transform: translateY(-10px);
}

/* CONTENEDOR DE IMAGEN Y LUPA */
.warehouse-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: #f9f9f9; /* Fondo neutro para resaltar la bici */
}

.warehouse-image .facility-photo {
    width: 100%;
    height: 100%;
    object-fit: contain; /* IMPORTANTE: No corta la bicicleta */
    padding: 15px;
    transition: transform 0.5s ease;
}

.image-overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 133, 52, 0.7); /* Color naranja de la marca */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-overlay-icon i {
    color: #fff;
    font-size: 2.5rem;
}

.warehouse-card:hover .image-overlay-icon {
    opacity: 1;
}

.warehouse-card:hover .facility-photo {
    transform: scale(1.1);
}

/* INFORMACIÓN DE LA BICICLETA */
.warehouse-info {
    padding: 20px;
}

.bicycle-type {
    display: block;
    color: #F48534;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.warehouse-name {
    font-family: "Baumans", sans-serif;
    font-size: 1.4rem;
    color: #333;
    margin: 0 0 10px 0;
}

.bicycle-details {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.bicycle-details strong {
    color: #333;
}

/* SECTION TITLE */
.section-title {
    font-family: "Baumans", sans-serif;
    font-size: 2.2rem;
    text-align: center;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #F48534;
}

/* CALL TO ACTION (CTA) */
.warehouse-cta {
    /*background-color: #f4f4f4;*/
    background: linear-gradient(135deg, #F48534 0%, #ff9447 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-family: "Baumans", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.btn-cta {
    display: inline-block;
    padding: 16px 45px;
    background-color: #fff;
    color: #F48534;
    border-radius: 50px;
    font-family: "Baumans", sans-serif;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #28B5A4;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {
    .warehouse-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .warehouse-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .warehouse-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .section-title {
        font-size: 1.8rem;
    }
}