/* Estilos del grid de promociones */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas de igual tamaño */
    gap: 0; /* Sin espacio entre las cards */
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.promo-wrapper {
    width: 100%;
    padding: 0;
}

.promo-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.promo-card:hover img {
    transform: scale(1.05);
}

/* Estilos específicos para móvil */
@media (max-width: 991px) {
    header .container-fluid {
        padding: 8px 15px;
    }
    
    /* Ajustes del botón del menú */
    .btn-outline-dark {
        border: none;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-outline-dark:focus {
        box-shadow: none;
    }
    
    .bi-list {
        font-size: 1.5rem;
    }
    
    header {
        transform: none !important;
        transition: none !important;
    }
}

/* Para móviles más pequeños, cambiar a una columna */
@media (max-width: 768px) {
    .promotions-grid {
        grid-template-columns: 1fr; /* Una sola columna */
    }
}

/* Estilos del menú lateral */
.offcanvas {
    max-width: 280px;
}

.offcanvas-body .nav-link {
    padding: 10px 15px;
    font-size: 1.1rem;
    color: #333;
}

.offcanvas-body .nav-link:hover {
    background-color: #f8f9fa;
}

/* Mantener estilos del botón de WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: white;
}
