/* Import Font Awesome icon library */
/* Ajuste @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css'); */
/* - */
body {
    font-family: Arial, sans-serif;
    padding: 0px;
}
.icon {
    font-size: 24px;
    color: #007bff;
}
.float-bottom-right {
    bottom: 75px !important; /* fuerza altura */
    right: 20px !important; /* fuerza espacio derecho */
}
/* Ajuste responsivo para el mapa en Contactanos - Abril 26 -15:57 */
.map-container {
  position: relative;
  width: 100%;              /* ocupa todo el ancho de la columna */
  padding-bottom: 56.25%;   /* relación 16:9 */
  height: 0;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top:0;
  left:0;
  width:100% !important;    /* fuerza a ocupar el ancho disponible */
  height:100% !important;   /* se adapta a la altura proporcional */
}


/* Reducir tamaño de títulos en carrusel 18 abril*/
.product-miniature .product-title {
  font-size: 14px;   /* antes suele estar en 18px o más */
  line-height: 1.2;  /* más compacto */
  word-wrap: break-word; /* evita desbordes */
  text-align: center; /* opcional, mejora presentación */
}

/* Forzar color del precio en carrusel */
.product-miniature .product-price,
.product-miniature .product-price-and-shipping .price,
.product-miniature span.price {
  color: #0BBEFF !important;  /* azul turquesa */
  font-weight: bold !important;
}
/* Mi cesta personalizada - Botón de carrito más pequeño*/
.btn {
  text-transform: uppercase !important;
}

.btn-sm-list {
  font-size: 0.7rem !important;    /* reduce tamaño del texto */
  padding: 8px 12px !important;    /* menos relleno */
  line-height: 1.2;         /* más compacto */
  display: inline-flex;     /* mantiene icono alineado */
  align-items: center;
}

.btn-sm-list i.material-icons {
  font-size: 14px;          /* icono más pequeño */
  margin-right: 4px;
}

/* Forzar icono de carrito en listados */
.btn-sm-list i.material-icons {
  font-family: "Material Icons" !important;
  font-style: normal !important;
}
.btn-sm-list i.material-icons::before {
  content: "shopping_cart" !important;
}
.btn-sm-list svg {
  margin-right: 4px;
}

/* Reducir separación entre ítems del menú principal */
.leo-megamenu .navbar-nav > li {
  margin-left: 5px !important;   /* antes suele estar en 20px */
  margin-right: 0px !important;  /* ajusta según  */
}

/* ====== PRODUCT TITLE JUN6 ====== */
.custom-title {
  font-size: clamp(0.9rem, 2vw, 1.4rem); /* se adapta automáticamente */
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* ====== PRODUCT DESCRIPTION SHORT ====== */
.custom-desc {
  font-size: clamp(0.75rem, 1.8vw, 1rem); /* escala según pantalla */
  line-height: 1.4;
  color: #555;
}

/* ====== RESPONSIVE HIDING ====== */
@media (max-width: 360px) {
  .custom-desc {
    display: none; /* oculta en móviles muy pequeños */
  }
}

    