/**
 * ================================================================
 * RESPONSIVE ENHANCEMENTS - MOTOPARTES TRICICLO
 * Mejoras específicas de responsive para toda la tienda
 * Implementa todas las optimizaciones recomendadas
 * ================================================================
 */

/* ========== OCULTAR HEADERS ANTIGUOS ========== */
/* IMPORTANTE: Solo mostrar el header moderno, ocultar los antiguos */
.container-menu-desktop,
.wrap-header-mobile,
.menu-mobile,
.modal-search-header {
  display: none !important;
}

/* Solo usar el modal de búsqueda moderno */
.modern-search-modal {
  display: none; /* Se muestra con JavaScript cuando se necesita */
}

.modern-search-modal.active {
  display: flex !important;
}

/* Asegurar que el header moderno sea el único visible */
.modern-header-wrapper {
  display: block !important;
}

/* Mejorar visibilidad del logo */
.modern-logo {
  display: flex !important;
  align-items: center !important;
}

.modern-logo img {
  display: block !important;
  height: 55px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
}

/* Asegurar que el contenido no quede oculto debajo del header */
body {
  padding-top: 0 !important;
}

.modern-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}

/* Espaciado después del header */
.breadcrumb-modern,
section:first-of-type,
.bg0:first-of-type {
  margin-top: 20px;
}

/* ========== VARIABLES GLOBALES ========== */
:root {
  --grid-gap-mobile: 1rem;
  --grid-gap-tablet: 1.5rem;
  --grid-gap-desktop: 2rem;
  --touch-target-size: 48px;
  --header-height-mobile: 65px;
  --header-height-tablet: 75px;
  --header-height-desktop: 90px;
}

/* ========== HERO SLIDER RESPONSIVE ========== */
.section-slide .item-slick1 {
  height: 85vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .section-slide .item-slick1 {
    height: 70vh;
    min-height: 450px;
  }
  
  .item-slick1 .ltext-201 {
    font-size: clamp(1.75rem, 5vw, 2.5rem) !important;
  }
  
  .item-slick1 .ltext-101 {
    font-size: clamp(0.875rem, 2vw, 1rem) !important;
  }
}

@media (max-width: 480px) {
  .section-slide .item-slick1 {
    height: 60vh;
    min-height: 400px;
  }
  
  .item-slick1 .respon1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  
  .item-slick1 .size-101 {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.875rem !important;
  }
}

/* ========== IMÁGENES RESPONSIVE ========== */
.product-img-responsive,
.product-card-modern img,
.block2-pic img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 100%;
}

/* Optimización de carga de imágenes */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* ========== GRID DE PRODUCTOS OPTIMIZADO ========== */
.row.isotope-grid {
  --grid-gap: var(--grid-gap-desktop);
  margin: 0 calc(var(--grid-gap) / -2);
}

.row.isotope-grid > [class*='col-'] {
  padding: 0 calc(var(--grid-gap) / 2);
  margin-bottom: var(--grid-gap);
}

@media (max-width: 992px) {
  .row.isotope-grid {
    --grid-gap: var(--grid-gap-tablet);
  }
}

@media (max-width: 576px) {
  .row.isotope-grid {
    --grid-gap: var(--grid-gap-mobile);
  }
}

/* Grid flexible para productos */
.product-grid-responsive {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--grid-gap);
}

@media (max-width: 768px) {
  .product-grid-responsive {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .product-grid-responsive {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== TIPOGRAFÍA FLUIDA ========== */
.ltext-101 {
  font-size: clamp(0.875rem, 2vw, 1.125rem) !important;
}

.ltext-201 {
  font-size: clamp(1.5rem, 4vw, 3rem) !important;
}

.mtext-101,
.product-title {
  font-size: clamp(0.875rem, 1.5vw, 1rem) !important;
}

.mtext-105 {
  font-size: clamp(1.25rem, 3vw, 1.75rem) !important;
}

.mtext-106,
.product-price {
  font-size: clamp(1rem, 2vw, 1.25rem) !important;
}

.stext-101 {
  font-size: clamp(0.813rem, 1.2vw, 0.938rem) !important;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
}

.section-subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem) !important;
}

/* ========== HEADER RESPONSIVE MEJORADO ========== */
@media (max-width: 576px) {
  .modern-header-content {
    height: var(--header-height-mobile) !important;
    padding: 0 1rem !important;
  }
  
  .modern-logo img {
    height: 40px !important;
  }
  
  .modern-topbar-content {
    padding: 0 1rem !important;
    font-size: 0.75rem !important;
  }
  
  .modern-topbar-left span {
    display: none;
  }
  
  .modern-topbar-link span {
    display: none;
  }
  
  .modern-header-icons {
    gap: 0.5rem !important;
  }
  
  .modern-icon-btn {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.125rem !important;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .modern-header-content {
    height: var(--header-height-tablet) !important;
    padding: 0 1.5rem !important;
  }
  
  .modern-logo img {
    height: 45px !important;
  }
}

/* ========== TOUCH TARGETS OPTIMIZADOS ========== */
@media (max-width: 768px) {
  .product-add-cart,
  .block2-btn,
  .js-addcart-detail,
  .js-addwish-b2 {
    min-height: var(--touch-target-size) !important;
    min-width: var(--touch-target-size) !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
  }
  
  .quick-action-btn {
    width: var(--touch-target-size) !important;
    height: var(--touch-target-size) !important;
  }
  
  .size-101,
  .size-102 {
    min-height: 44px !important;
    padding: 0.75rem 1.25rem !important;
  }
  
  /* Botones de cantidad */
  .btn-num-product-down,
  .btn-num-product-up {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.125rem !important;
  }
  
  .num-product {
    min-height: 44px !important;
    font-size: 1rem !important;
  }
}

/* ========== MODAL DE BÚSQUEDA RESPONSIVE ========== */
@media (max-width: 576px) {
  .modern-search-content {
    padding: 1.5rem !important;
    max-width: 95vw !important;
    margin: 0 1rem !important;
  }
  
  .modern-search-title {
    font-size: 1.5rem !important;
  }
  
  .modern-search-input {
    font-size: 16px !important; /* Previene zoom en iOS */
    padding: 1rem 1.25rem !important;
    border-radius: 12px !important;
  }
  
  .modern-search-btn {
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
    border-radius: 12px !important;
  }
  
  .modern-search-form {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  
  .modern-search-close {
    width: 40px !important;
    height: 40px !important;
  }
}

/* ========== BREADCRUMBS RESPONSIVE ========== */
@media (max-width: 576px) {
  .breadcrumb-modern {
    padding: 0.75rem 0 !important;
  }
  
  .breadcrumb {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    font-size: 0.813rem !important;
    padding: 0.5rem 0 !important;
    scrollbar-width: thin !important;
  }
  
  .breadcrumb::-webkit-scrollbar {
    height: 4px;
  }
  
  .breadcrumb::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }
  
  .breadcrumb-item {
    display: inline-flex !important;
    align-items: center !important;
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 0.25rem !important;
    font-size: 0.75rem !important;
  }
}

/* ========== DETALLE DE PRODUCTO RESPONSIVE ========== */
@media (max-width: 768px) {
  .sec-product-detail {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .wrap-slick3 {
    max-width: 100% !important;
  }
  
  .item-slick3 img {
    max-height: 400px !important;
    object-fit: contain !important;
  }
  
  .slick3-dots {
    justify-content: center !important;
  }
  
  /* Información del producto */
  .p-r-50 {
    padding-right: 0 !important;
  }
  
  .p-l-25 {
    padding-left: 0 !important;
  }
}

@media (max-width: 576px) {
  .item-slick3 img {
    max-height: 300px !important;
  }
  
  .mtext-105 {
    padding-bottom: 0.5rem !important;
  }
  
  .stock-badge-container {
    margin: 1rem 0 !important;
  }
}

/* ========== FOOTER RESPONSIVE ========== */
@media (max-width: 768px) {
  .footer-col,
  .p-footer > div {
    width: 100% !important;
    margin-bottom: 2rem !important;
    text-align: center !important;
  }
  
  .footer-links,
  .footer-col ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem !important;
  }
  
  .footer-social {
    justify-content: center !important;
  }
}

/* ========== CARRITO RESPONSIVE ========== */
@media (max-width: 768px) {
  .header-cart {
    width: 90vw !important;
    max-width: 400px !important;
  }
  
  .header-cart-content {
    padding: 1rem !important;
  }
  
  .header-cart-item {
    flex-wrap: wrap !important;
  }
  
  .header-cart-item-img {
    width: 80px !important;
    height: 80px !important;
  }
}

/* ========== FORMULARIOS RESPONSIVE ========== */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="number"],
  textarea,
  select {
    font-size: 16px !important; /* Previene zoom en iOS */
    min-height: 44px !important;
    padding: 0.75rem 1rem !important;
  }
  
  .form-control {
    font-size: 16px !important;
    min-height: 44px !important;
  }
}

/* ========== TABLAS RESPONSIVE ========== */
@media (max-width: 768px) {
  .table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  table {
    min-width: 600px !important;
  }
}

/* ========== CATEGORÍAS Y FILTROS ========== */
@media (max-width: 576px) {
  .filter-tope-group {
    width: 100% !important;
    margin-bottom: 1rem !important;
  }
  
  .panel-filter {
    margin-top: 1rem !important;
  }
  
  .wrap-filter {
    padding: 1rem !important;
  }
  
  .size-301 {
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
  }
}

/* ========== SECCIONES RESPONSIVE ========== */
@media (max-width: 768px) {
  .sec-banner,
  .featured-products,
  .section-spacing {
    padding: 2rem 0 !important;
  }
  
  .p-b-140 {
    padding-bottom: 3rem !important;
  }
  
  .p-t-65 {
    padding-top: 2rem !important;
  }
  
  .p-b-60 {
    padding-bottom: 2rem !important;
  }
}

/* ========== ANIMACIONES SUAVES ========== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========== MEJORAS DE ACCESIBILIDAD ========== */
@media (max-width: 768px) {
  /* Espaciado entre elementos táctiles */
  a,
  button,
  [role="button"] {
    position: relative;
  }
  
  /* Área de toque ampliada */
  a::before,
  button::before,
  [role="button"]::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    z-index: -1;
  }
}

/* ========== OPTIMIZACIONES DE RENDIMIENTO ========== */
@media (max-width: 768px) {
  /* Reducir complejidad de sombras */
  .product-card-modern,
  .block2,
  .metric-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  }
  
  /* Simplificar transformaciones */
  .product-card-modern:hover,
  .block2:hover {
    transform: translateY(-4px) !important;
  }
}

/* ========== UTILIDADES RESPONSIVE ========== */
.show-mobile {
  display: none !important;
}

.hide-mobile {
  display: block !important;
}

@media (max-width: 768px) {
  .show-mobile {
    display: block !important;
  }
  
  .hide-mobile {
    display: none !important;
  }
}

.text-mobile-center {
  text-align: left;
}

@media (max-width: 768px) {
  .text-mobile-center {
    text-align: center !important;
  }
}

/* ========== LANDSCAPE MODE ========== */
@media (max-width: 768px) and (orientation: landscape) {
  .section-slide .item-slick1 {
    height: 100vh !important;
    min-height: auto !important;
  }
  
  .modern-mobile-menu {
    max-height: 100vh !important;
    overflow-y: auto !important;
  }
}

/* ========== IMPRESIÓN ========== */
@media print {
  .modern-header,
  .modern-topbar,
  .modern-mobile-menu,
  .modern-search-modal,
  .header-cart,
  footer {
    display: none !important;
  }
  
  .product-card-modern,
  .block2 {
    break-inside: avoid !important;
  }
}

/* ========== FOOTER RESPONSIVE MEJORADO ========== */
@media (max-width: 768px) {
  footer.bg3 {
    padding: 3rem 0 2rem !important;
  }
  
  footer .row > div {
    text-align: center !important;
    margin-bottom: 2.5rem !important;
  }
  
  footer h4.stext-301 {
    font-size: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  
  footer ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }
  
  footer ul li {
    padding-bottom: 0.5rem !important;
  }
  
  footer ul li a {
    font-size: 1rem !important;
    padding: 0.5rem 1rem !important;
    display: inline-block !important;
  }
  
  footer .stext-107 {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
  }
  
  /* Iconos sociales más grandes para touch */
  footer .fs-18 {
    font-size: 1.75rem !important;
    padding: 0.75rem !important;
    margin: 0 0.25rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
  }
  
  footer .fs-18:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px) !important;
  }
  
  /* Formulario de suscripción responsive */
  footer .wrap-input1 {
    margin-bottom: 1rem !important;
  }
  
  footer .input1 {
    font-size: 16px !important; /* Previene zoom en iOS */
    padding: 1rem !important;
    min-height: 48px !important;
    text-align: center !important;
  }
  
  footer .size-103 {
    width: 100% !important;
    min-height: 48px !important;
    font-size: 1rem !important;
    padding: 0.875rem 1.5rem !important;
  }
  
  /* Texto de copyright centrado */
  footer .txt-center {
    font-size: 0.875rem !important;
    padding: 1.5rem 1rem 0 !important;
  }
}

@media (max-width: 576px) {
  footer.bg3 {
    padding: 2.5rem 1rem 1.5rem !important;
  }
  
  footer .row > div {
    margin-bottom: 2rem !important;
  }
  
  footer h4.stext-301 {
    font-size: 1.125rem !important;
  }
  
  footer .p-t-27 {
    padding-top: 1.25rem !important;
    display: flex !important;
    justify-content: center !important;
    gap: 0.5rem !important;
  }
}

/* ========== ASPECT RATIO PARA IMÁGENES ========== */
/* Previene CLS (Cumulative Layout Shift) */
.block2-pic,
.product-card-img,
.product-img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f8f9fa;
}

.block2-pic img,
.product-card-img img,
.product-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Aspect ratio para sliders */
.item-slick3 {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.item-slick3 img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Aspect ratio para thumbnails */
.wrap-slick3-dots .slick3-dot-overlay {
  aspect-ratio: 1 / 1;
}

/* Aspect ratio para banners */
.block1-pic {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.block1-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== BREAKPOINT 320px - PANTALLAS MUY PEQUEÑAS ========== */
@media (max-width: 360px) {
  /* Tipografía reducida */
  .ltext-201 {
    font-size: 1.25rem !important;
  }
  
  .mtext-105 {
    font-size: 1.125rem !important;
  }
  
  .mtext-101,
  .product-title {
    font-size: 0.813rem !important;
  }
  
  .stext-101 {
    font-size: 0.75rem !important;
  }
  
  /* Header más compacto */
  .modern-header-content {
    padding: 0 0.75rem !important;
  }
  
  .modern-logo img {
    height: 35px !important;
    max-width: 120px !important;
  }
  
  .modern-icon-btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
  }
  
  .modern-header-icons {
    gap: 0.25rem !important;
  }
  
  /* Grid de productos 1 columna */
  .product-grid-responsive {
    grid-template-columns: 1fr !important;
  }
  
  .row.isotope-grid > [class*='col-'] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  
  /* Cards de producto más pequeñas */
  .block2 {
    margin-bottom: 1rem !important;
  }
  
  .block2-txt {
    padding: 0.75rem !important;
  }
  
  /* Botones más pequeños */
  .size-101,
  .size-102 {
    padding: 0.625rem 1rem !important;
    font-size: 0.813rem !important;
    min-height: 40px !important;
  }
  
  /* Modal de búsqueda */
  .modern-search-content {
    padding: 1rem !important;
    margin: 0 0.5rem !important;
  }
  
  .modern-search-title {
    font-size: 1.25rem !important;
  }
  
  /* Footer ultra compacto */
  footer.bg3 {
    padding: 2rem 0.75rem 1rem !important;
  }
  
  footer h4.stext-301 {
    font-size: 1rem !important;
  }
  
  footer .fs-18 {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.5rem !important;
  }
  
  /* Formularios */
  .form-control,
  input[type="text"],
  input[type="email"],
  textarea {
    padding: 0.625rem 0.875rem !important;
  }
  
  /* Carrito lateral */
  .header-cart {
    width: 100vw !important;
    max-width: 100% !important;
  }
  
  .header-cart-item-img {
    width: 60px !important;
    height: 60px !important;
  }
  
  /* Breadcrumbs */
  .breadcrumb {
    font-size: 0.75rem !important;
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 0.2rem !important;
  }
}

/* ========== BREAKPOINT 992px - TABLETS ========== */
@media (min-width: 769px) and (max-width: 992px) {
  /* Contenedor principal */
  .container {
    max-width: 95% !important;
    padding: 0 1rem !important;
  }
  
  /* Grid de productos 3 columnas */
  .product-grid-responsive {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  
  /* Hero slider */
  .section-slide .item-slick1 {
    height: 60vh !important;
    min-height: 400px !important;
  }
  
  /* Tipografía intermedia */
  .ltext-201 {
    font-size: 2rem !important;
  }
  
  .mtext-105 {
    font-size: 1.5rem !important;
  }
  
  /* Secciones */
  .sec-banner,
  .featured-products {
    padding: 2.5rem 0 !important;
  }
  
  /* Detalle de producto */
  .sec-product-detail .row {
    gap: 2rem !important;
  }
  
  .item-slick3 img {
    max-height: 350px !important;
  }
  
  /* Footer */
  footer .row > div {
    margin-bottom: 2rem !important;
  }
}

/* ========== MENÚ MÓVIL MEJORADO ========== */
@media (max-width: 991px) {
  /* Área de touch ampliada para items del menú */
  .modern-mobile-menu {
    padding: 1rem 0 !important;
  }
  
  .modern-mobile-nav {
    padding: 0 !important;
  }
  
  .modern-mobile-nav li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  }
  
  .modern-mobile-nav li a {
    display: flex !important;
    align-items: center !important;
    padding: 1rem 1.5rem !important;
    min-height: 56px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #2c3e50 !important;
    transition: all 0.3s ease !important;
  }
  
  .modern-mobile-nav li a:hover,
  .modern-mobile-nav li a:active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1)) !important;
    color: #667eea !important;
    padding-left: 2rem !important;
  }
  
  .modern-mobile-nav li.active a {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15)) !important;
    color: #667eea !important;
    border-left: 4px solid #667eea !important;
  }
  
  /* Botón hamburguesa más accesible */
  .modern-menu-toggle {
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Submenu móvil */
  .modern-mobile-submenu {
    background: #f8f9fa !important;
    padding-left: 1rem !important;
  }
  
  .modern-mobile-submenu li a {
    min-height: 48px !important;
    font-size: 0.938rem !important;
    padding-left: 2rem !important;
  }
  
  /* Header móvil sticky */
  .wrap-header-mobile {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
  }
  
  /* Animación del menú */
  .modern-mobile-menu {
    transform: translateX(-100%) !important;
    transition: transform 0.3s ease-in-out !important;
  }
  
  .modern-mobile-menu.active {
    transform: translateX(0) !important;
  }
}

/* ========== SUCURSALES PAGE - RESPONSIVE ADICIONAL ========== */
/* Breakpoint para tablets */
@media (min-width: 769px) and (max-width: 992px) {
  .sucursal-content {
    padding: 3rem 0 !important;
  }
  
  .sucursal-card {
    padding: 2rem !important;
  }
  
  .sucursal-card h3 {
    font-size: 1.5rem !important;
  }
  
  .map-container {
    height: 380px !important;
  }
  
  .horarios-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .image-showcase img {
    min-height: 350px !important;
  }
}

@media (max-width: 480px) {
  .sucursal-hero {
    padding: 2rem 0 !important;
  }
  
  .sucursal-hero h1 {
    font-size: 1.75rem !important;
  }
  
  .sucursal-card {
    padding: 1.25rem !important;
  }
  
  .sucursal-card h3 {
    font-size: 1.25rem !important;
  }
  
  .map-container {
    height: 280px !important;
  }
  
  .horario-item .time {
    font-size: 1.25rem !important;
  }
}

@media (max-width: 360px) {
  .sucursal-hero {
    padding: 1.5rem 0 !important;
  }
  
  .sucursal-hero h1 {
    font-size: 1.5rem !important;
  }
  
  .sucursal-card {
    padding: 1rem !important;
  }
  
  .sucursal-card h3 {
    font-size: 1.125rem !important;
  }
  
  .map-container {
    height: 250px !important;
  }
  
  .contact-btn {
    padding: 0.75rem 1rem !important;
    font-size: 0.875rem !important;
  }
  
  .horario-item {
    padding: 1rem !important;
  }
  
  .horario-item .time {
    font-size: 1.125rem !important;
  }
}
