.hero-banner-container {
    position: relative;
    height: 150px;
    overflow: hidden;
}
.hero-banner-container img {
    width: 100%; /* Aseguramos que ocupe todo el ancho */
    height: 100%;
    object-fit: cover;
}

.store-info-box {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}
.store-logo {
    width: 70px; 
    height: 70px;
    border-radius: 50%; 
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* En dispositivos más grandes (md y superior), ajustamos el tamaño del logo y centramos la alineación si es necesario */
@media (min-width: 768px) {
    .store-logo {
        width: 80px;
        height: 80px;
    }
    /* Aseguramos que el contenedor del logo y el texto estén alineados verticalmente en escritorio */
    .store-info-box .d-flex.align-items-center {
        align-items: center !important;
    }
}
.delivery-options .btn-group {
    border: 1px solid #dee2e6;
    border-radius: 8px;
}
.delivery-options .btn {
    background-color: transparent;
    border: none;
    color: #6c757d;
}
.delivery-options .btn.active {
    background-color: #f8f9fa;
    color: #212529;
    font-weight: bold;
}
.info-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background-color: #f8f9fa;
}
.map-section {
    background-color: #f8f9fa;
}
.map-container {
    height: 200px;
    width: 100%;
    background-image: url("https://user-images.githubusercontent.com/97330755/267784841-3b7c258d-71b9-47fe-ae42-9988b4923f03.jpg"); /* Reemplaza con la URL de tu imagen de mapa */
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}
.card .d-flex.align-items-start {
    align-items: flex-start !important;
}
