/* cookies.css */
.cookie-banner {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 20px 25px;
  display: none;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  animation: fadeInUp 0.5s ease;
}

.cookie-content p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.cookie-content a {
  color: #0033a0;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-buttons button:first-child {
  background-color: #0033a0;
  color: #fff;
}

.cookie-buttons button:first-child:hover {
  background-color: #001e66;
}

.cookie-buttons button:last-child {
  background-color: #e0e0e0;
  color: #333;
}

.cookie-buttons button:last-child:hover {
  background-color: #c7c7c7;
}

@keyframes fadeInUp {
  from {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 15px;
    bottom: 15px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
    text-align: center;
  }
}
/* WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 10px;
  right: 10px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

.whatsapp-float i {
  pointer-events: none;
}

.wa-label {
  position: fixed;
  right: 74px;
  bottom: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 6px 10px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
  z-index: 1100;
}
.summer-btn {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53); /* Degradado veraniego */
    color: white;
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 20px; /* Bordes redondeados */
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.summer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    background: linear-gradient(45deg, #ff8e53, #ff6b6b); /* Invierte el degradado al hover */
}
.product-thumb-mini {
  position: relative;
  display: inline-block;
}

.mini-cart-icon {
  position: absolute;
  bottom: 4x;
  right: 5px;
  font-size: 22px;
  color: #000;   /* negro puro */
  cursor: pointer;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.mini-cart-icon:hover {
  transform: scale(1.2);
  color: #111;
}
.mini-cart-icon i {
  -webkit-text-stroke: 1px #000;  /* contorno negro */
  color: transparent;             /* relleno vacío */
}
.mini-cart-icon i:hover {
  color: #000;                    /* al pasar, relleno negro */
  -webkit-text-stroke: 0;         /* se quita el borde */
}
.product-intro strong {
  color: #8a1538;
}
/* === Fix contraste footer === */
footer .footer-col h4 {
  color: #111 !important;
  font-weight: 700;
}

footer .footer-col ul li a {
  color: #222 !important;
  font-weight: 600;
  opacity: 1 !important;
  text-decoration: none;
}

footer .footer-col ul li a:hover {
  color: #000 !important;
  text-decoration: underline;
}

/* Ajuste del texto del bloque LEGAL y ARTÍCULOS */
footer .footer-col p,
footer .footer-col li {
  color: #222 !important;
  opacity: 1 !important;
}

/* Enlaces legales en bloque inferior */
footer .footer-links a {
  color: #222 !important;
  font-weight: 600;
  opacity: 1 !important;
}