/* ===============================
   Estilos completos - Página Mujer
   =============================== */

/* ===== Body y tipografía ===== */
body {
  font-family: 'Arial', sans-serif;
  background: #fff0f6; /* fondo rosa suave */
  color: #333;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ===== Header dinámico femenino ===== */
.as-header-mujer {
  position: relative;
  background: linear-gradient(135deg, #f48fb1, #f06292);
  color: #fff;
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 20px 20px;
  z-index: 10;
  flex-wrap: wrap;
}

.as-header-mujer::before,
.as-header-mujer::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: radial-gradient(circle, rgba(255,192,203,0.4) 10%, transparent 70%) repeat;
  background-size: 200px 200px;
  animation: headerBurbujas 20s linear infinite;
  z-index: 0;
  opacity: 0.5;
}

.as-header-mujer::after {
  animation-duration: 30s;
  background-size: 250px 250px;
  opacity: 0.3;
}

@keyframes headerBurbujas {
  0% { transform: rotate(0deg) translateY(0); }
  100% { transform: rotate(360deg) translateY(-20px); }
}

.as-header-mujer .as-logo,
.as-header-mujer .as-nav {
  position: relative;
  z-index: 2;
}

.as-header-mujer .as-logo a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.5rem;
}

.as-header-mujer .as-nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  transition: color 0.3s;
}

.as-header-mujer .as-nav a:hover {
  color: #ffe6f0;
}

.as-header-mujer .as-btn {
  background: #ff80ab;
  color: #fff;
  border-radius: 25px;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 6px 20px rgba(255,128,171,0.5);
  transition: all 0.3s ease;
}

.as-header-mujer .as-btn:hover {
  background: #ff4081;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255,64,129,0.7);
}

/* ===== Hamburger móvil ===== */
.as-hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .as-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #f48fb1, #f06292);
    padding: 15px 0;
    border-radius: 0 0 15px 15px;
    gap: 10px;
  }
  .as-nav.active {
    display: flex;
  }
  .as-nav a {
    margin: 10px 0;
    text-align: center;
  }
  .as-hamburger {
    display: block;
  }
}

/* ===== Hero femenino ===== */
.as-hero-mujer {
  background: linear-gradient(rgba(255, 192, 203, 0.9), rgba(102, 204, 255, 0.8)), 
              url('img/reloj-mujer-bg.jpg') center/cover no-repeat;
  border-radius: 10px;
  padding: 50px 10%;
  margin: 20px auto;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.as-hero-mujer .as-hero-content {
  max-width: 600px;
}

.as-hero-mujer h1 {
  font-size: 2.5rem;
  margin: 0.5rem 0;
}

.as-hero-mujer .as-hero-deco {
  color: #cce7ff;
}

.as-hero-mujer p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.as-hero-mujer .as-btn {
  background: #ff66b2;
}

.as-hero-mujer .as-btn:hover {
  background: #66ccff;
}

.as-hero-mujer .as-hero-img img {
  max-width: 350px;
  border-radius: 12px;
}

/* ===== Catálogo ===== */
.as-catalogo-pagina {
  display: flex;
  gap: 2rem;
  padding: 2rem 10%;
}

.as-sidebar-filtros {
  width: 250px;
  background: #ffe6ef;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.as-sidebar-filtros h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #c2185b;
}

.as-filtro-grupo {
  margin-bottom: 1.5rem;
}

.as-filtro-grupo label,
.as-filtro-grupo h3 {
  font-size: 0.95rem;
  color: #444;
}

.as-filtro-grupo input,
.as-filtro-grupo select {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.5rem;
  border: 1px solid #e0a4b7;
  border-radius: 8px;
  font-size: 0.9rem;
}

.as-contenido-productos {
  flex: 1;
}

.as-productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}

.as-card {
  background: #fff;
  border: 2px solid #ffb3d9;
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.as-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 6px 20px rgba(255, 153, 204, 0.3);
  border-color: #66ccff;
}

.as-card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 0.8rem;
}

.as-card h3 {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  color: #ff4da6;
}

.as-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ff3399;
}

.as-price-tachado {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.as-oferta {
  display: inline-block;
  background: #66ccff;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

/* ===== Testimonios ===== */
.as-testimonios-mujer {
  background: linear-gradient(135deg, #fff0f6, #e6f7ff);
  padding: 50px 5%;
  text-align: center;
}

.as-testimonios-mujer h2 {
  color: #ff3399;
  margin-bottom: 10px;
}

.as-reseñas-meta {
  color: #66ccff;
  margin-bottom: 30px;
}

.as-testimonios-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.as-testimonio-card {
  background: #fff;
  border: 2px solid #ffb3d9;
  border-radius: 12px;
  padding: 20px;
  width: 250px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 102, 178, 0.2);
  transition: transform 0.3s ease, border-color 0.3s;
}

.as-testimonio-card:hover {
  transform: translateY(-5px);
  border-color: #66ccff;
}

.as-testimonio-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.as-estrellas {
  color: #ff66b2;
  font-size: 18px;
  margin-bottom: 8px;
}

.as-testimonio-nombre {
  font-weight: bold;
  color: #ff3399;
}

.as-testimonio-texto {
  font-size: 0.95rem;
  color: #555;
}

/* Flechas testimonios */
.as-testimonio-prev,
.as-testimonio-next {
  cursor: pointer;
  font-size: 2rem;
  color: #ff66b2;
  padding: 10px;
  transition: color 0.3s ease;
}

.as-testimonio-prev:hover,
.as-testimonio-next:hover {
  color: #66ccff;
}

/* ===== Sección Nosotras ===== */
.as-about-mujer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fce4ec, #f8bbd0, #f48fb1);
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 60px auto;
  max-width: 1000px;
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.as-about-mujer h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #e91e63;
  position: relative;
}

.as-about-mujer h2::after {
  content: "❤";
  position: absolute;
  right: -30px;
  top: -10px;
  font-size: 1.8rem;
  color: #f06292;
  animation: latido 1.5s infinite ease-in-out;
}

.as-about-mujer p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
  color: #5e3360;
}

@keyframes latido {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.as-about-mujer::before,
.as-about-mujer::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: radial-gradient(circle, rgba(255,192,203,0.3) 10%, transparent 70%) repeat;
  background-size: 200px 200px;
  animation: burbujas 15s linear infinite;
  z-index: 0;
  opacity: 0.4;
}

.as-about-mujer::after {
  animation-duration: 25s;
  background-size: 250px 250px;
  opacity: 0.3;
}

@keyframes burbujas {
  from { transform: rotate(0deg) translateY(0); }
  to { transform: rotate(360deg) translateY(-20px); }
}

/* ===== Botón flotante WhatsApp ===== */
.as-whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  z-index: 999;
}

.as-whatsapp-btn:hover {
  transform: scale(1.1);
}

/* =========================
   Responsive - Dispositivos
   ========================= */
@media (max-width: 768px) {
  .as-hero-mujer {
    padding: 30px 5%;
    text-align: center;
  }
  .as-hero-img img {
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
    display: block;
  }
  .as-hero-mujer h1 {
    font-size: 1.6rem;
  }
  .as-tagline {
    font-size: 0.9rem;
  }
  .as-catalogo-pagina {
    flex-direction: column;
    padding: 1rem 5%;
  }
  .as-sidebar-filtros {
    width: 100%;
    margin-bottom: 20px;
  }
  .as-productos-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .as-nav {
    display: none;
  }
  .as-nav.active {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
  }
  .as-nav a {
    margin: 10px 0;
  }
  .as-hamburger {
    display: block;
  }
}

@media (max-width: 480px) {
  .as-card h3 {
    font-size: 1rem;
  }
  .as-card p {
    font-size: 0.9rem;
  }
  .as-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  .as-footer {
    font-size: 0.85rem;
    text-align: center;
    padding: 20px 10px;
  }
  .as-whatsapp-btn {
    width: 45px;
    height: 45px;
  }
  .as-whatsapp-btn svg {
    width: 22px;
    height: 22px;
  }
  .as-testimonio-card {
    min-width: 220px;
    flex: 0 0 auto;
  }
}
