.woocommerce-mini-cart-item .product-body .product-cart .variation {
  display: none;
}

/* truncar texto login usario */

.action-account .dropdown-account {
  /* Define un ancho máximo para el contenedor, restando el espacio del icono */
  max-width: 200px !important;
}

/* Contenedor principal - alinear en línea */
.product-uso-icons {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  align-items: center !important;
}

/* Iconos - comportamiento en línea */
.product-uso-icons i {
  display: inline-block !important;
  position: relative !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

/* Eliminar contenido de FontAwesome */
.product-uso-icons i::before {
  content: none !important;
  display: none !important;
}

/* Estilos específicos para cada tipo de vehículo */
.fa-car {
  background-image: url(/wp-content/themes/ignavo-child/imagenes/auto.png) !important;
  width: 35px !important;
  height: 18px !important;
  background-size: 35px !important;
}

.fa-shuttle-van {
  background-image: url(/wp-content/themes/ignavo-child/imagenes/jeep.png) !important;
  width: 35px !important;
  height: 18px !important;
  background-size: 35px !important;
}

.fa-truck-pickup {
  background-image: url(/wp-content/themes/ignavo-child/imagenes/camioneta.png) !important;
  width: 35px !important;
  height: 17px !important;
  background-size: 35px !important;
}

.product .product-body {
  min-height: 200px;
}
.product .product-inner.product-list .product-body {
  min-height: auto !important;
}
.product .product-body .product-cart {
  margin-top: auto;
}
.product .product-title {
  min-height: 35px;
}

/* Estilo mejorado para .cajita */
.cajita {
  background: linear-gradient(145deg, #ff3845, #d42c38);
  color: #fff;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  margin: 5px;
  border-radius: 6px;
  border: none;
}
/* agrega logo cyber  */
/* .product .product-thumbnail .product-badge{
	width: 93%;
}
.woocommerce-product-gallery .badge-primary.badge.sale{
	z-index: 1;
}
.product-badge::after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 15px;
    background-image: url('https://www.azedan.cl/wp-content/uploads/2025/11/LOGO_FONDO-BLANCO-copia.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: auto;
    vertical-align: middle;
	
    filter: drop-shadow(0 0 2px white) 
    drop-shadow(0 0 3px white)
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.7));
} */

/* Efecto de Latido (Heartbeat) */
.enlace-efecto a {
    position: relative;
    padding: 0px;
	color: red !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

