* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

:root {
  --pink-main: #ed3ca4;
  --pink-light: #fce6f2;
  --pink-dark: #f493cc;
  --text-color: #333333;
}

.top-bar {
  background-color: var(--pink-light);
  color: #a04870;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.main-header {
  background-color: #ffffff;
  border-bottom: 1px solid #f0d5e2;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo-link {
  text-decoration: none;
  display: inline-block;
}

.logo-img {
  max-height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.icon-btn {
  color: #444444;
  font-size: 1.3rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.icon-btn:hover {
  color: var(--pink-main);
}

.menu-checkbox { display: none; }

.side-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  padding: 40px 20px;
  transition: right 0.3s ease;
  z-index: 1001;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
}

.menu-links {
  list-style: none;
  margin-top: 20px;
}

.menu-links li { margin-bottom: 20px; }

.menu-links a {
  text-decoration: none;
  color: #333;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
  display: block;
}

.menu-links a:hover { color: var(--pink-main); }

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 1000;
}

.menu-checkbox:checked ~ .side-menu { right: 0; }
.menu-checkbox:checked ~ .menu-overlay { display: block; }

.hero-carousel {
  position: relative;
  width: 100%;
  height: 420px;
  background: radial-gradient(circle, #fce4ec 0%, #f8bbd0 100%);
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1;
}

.slide-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-contenido {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
}

.hero-contenido h1 {
  margin-bottom: 25px;
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(38px, 6vw, 78px);
  line-height: .9;
  font-weight: 700;
  color: #f13fa5;
  text-shadow: 3px 3px 0 #ffffff, -2px -2px 0 #ffffff;
}

.boton-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  height: 38px;
  padding: 0 25px;
  border-radius: 30px;
  background-color: var(--pink-main);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease;
}

.boton-hero:hover {
  transform: scale(1.05);
  background-color: var(--pink-dark);
}

.categorias {
  position: relative;
  width: 100%;
  min-height: 410px;
  overflow: hidden;
  margin-top: 35px;
  background-color: #fce6f2;
}

.categorias-fondo {
  position: absolute;
  inset: 0;
  background-image: url("https://tse2.mm.bing.net/th/id/OIP.TkVyNZjSznzcP0TIF8thzgHaE7?r=0&rs=1&pid=ImgDetMain&o=7&rm=3");
  background-size: cover;
  background-position: center;
  opacity: .18;
}

.categorias-contenido {
  position: relative;
  z-index: 2;
  padding: 40px 20px 45px;
}

.categorias h2 {
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  color: var(--pink-main);
  font-weight: 700;
  letter-spacing: 1px;
}

.categorias-slider {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.categorias-ventana {
  width: calc(100% - 110px);
  margin: 0 auto;
  overflow: hidden;
}

.categorias-lista {
  display: flex;
  width: 125%;
  transition: transform .5s ease;
}

.categoria {
  flex: 0 0 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}

.categoria-imagen {
  width: clamp(130px, 16vw, 190px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  border: 3px solid rgba(255,255,255,.8);
  box-shadow: 0 5px 15px rgba(0,0,0,.12);
  transition: transform .3s ease;
}

.categoria:hover .categoria-imagen { transform: scale(1.05); }

.categoria-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.categoria span {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #222222;
  letter-spacing: .3px;
}

.categoria-flecha {
  position: absolute;
  z-index: 5;
  width: 45px;
  height: 70px;
  border: none;
  background: transparent;
  color: var(--pink-main);
  font-size: 55px;
  line-height: 50px;
  cursor: pointer;
  transition: transform .2s ease;
}

.categoria-flecha:hover { transform: scale(1.15); }
.categoria-anterior { left: 5px; }
.categoria-siguiente { right: 5px; }

.productos-seccion {
  width: 100%;
  max-width: 1100px;
  margin: 20px auto 10px;
  padding: 0 20px;
  background-color: #ffffff;
}

.titulo-productos {
  text-align: center;
  margin: 0 0 20px;
  font-family: 'Fredoka', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--pink-main);
  text-shadow: 2px 2px 0 #ffffff;
  letter-spacing: 1px;
}

.productos-carrusel {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.productos-ventana {
  width: 900px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.productos-lista {
  display: flex;
  gap: 20px;
  width: max-content;
  transition: transform .5s ease;
  will-change: transform;
}

.producto {
  position: relative;
  flex: 0 0 210px;
  width: 210px;
  min-width: 210px;
  max-width: 210px;
}

.producto-imagen {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 17px;
  overflow: visible;
  background-color: #eeeeee;
}

.producto-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 17px;
  transition: filter .35s ease, transform .35s ease;
}

.producto-imagen::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 17px;
  background: rgba(242, 74, 170, .28);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.producto:hover .producto-imagen::after { opacity: 1; }
.producto:hover .producto-imagen img { transform: scale(1.02); }

.favorito {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(255,255,255,.65);
  border-radius: 50%;
  color: #222222;
  font-size: 23px;
  line-height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}

.favorito:hover {
  transform: scale(1.15);
  color: var(--pink-main);
  background-color: #ffffff;
}

.agregar-carrito {
  position: absolute;
  z-index: 20;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 28px;
  border: none;
  border-radius: 20px;
  background-color: var(--pink-main);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.agregar-carrito:hover {
  background-color: var(--pink-dark);
  transform: scale(1.03);
}

.producto-info {
  position: relative;
  z-index: 5;
  width: 100%;
  min-height: 65px;
  padding: 10px 12px;
  margin-top: -2px;
  background-color: #ffffff;
  border-radius: 0 0 13px 13px;
  box-shadow: 0 5px 12px rgba(0,0,0,.08);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .35s ease, transform .35s ease;
}

.producto:hover .producto-info {
  opacity: 1;
  transform: translateY(0);
}

.producto-info h3 {
  margin: 0 0 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #333333;
}

.producto-info p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: var(--pink-main);
  font-weight: 700;
}

.productos-flecha {
  position: absolute;
  z-index: 25;
  width: 40px;
  height: 70px;
  border: none;
  background: transparent;
  color: var(--pink-main);
  font-size: 50px;
  line-height: 50px;
  cursor: pointer;
  transition: transform .2s ease;
}

.productos-flecha:hover { transform: scale(1.15); }
.productos-flecha.izquierda { left: 0; }
.productos-flecha.derecha { right: 0; }

.seccion-destacada {
  width: 100%;
  max-width: 1100px;
  margin: 20px auto 40px;
  padding: 0 20px;
}

.destacada-container {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.destacada-banner {
  flex: 0 0 240px;
  height: 330px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  z-index: 2;
  background-color: #222;
}

.destacada-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.destacada-caja-rosa {
  flex: 1;
  background-color: #fbcfe8;
  border-radius: 0 25px 25px 0;
  padding: 15px 20px 20px 30px;
  margin-left: -15px;
  z-index: 1;
}

.destacada-titulo {
  font-family: 'Fredoka', sans-serif;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0px #ff3399;
  text-transform: uppercase;
}

.destacada-carrusel {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}

.destacada-ventana {
  width: 570px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  padding: 5px 0;
}

.destacada-lista {
  display: flex;
  gap: 15px;
  width: max-content;
  transition: transform 0.5s ease;
}

.destacada-card {
  flex: 0 0 180px;
  width: 180px;
  min-width: 180px;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.destacada-card-img {
  position: relative;
  width: 100%;
  height: 150px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.destacada-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* EFECTO ROSADO Y HOVER CON INFORMACIÓN (ARETES Y PULSERAS) */
.hover-rosa-efecto .destacada-card-img:hover img {
  filter: sepia(0.6) hue-rotate(280deg) saturate(2.5) brightness(0.9);
  transform: scale(1.05);
}

.hover-info-overlay {
  position: absolute;
  inset: 0;
  background: rgba(237, 33, 162, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 10px;
  text-align: center;
  pointer-events: none;
}

.hover-rosa-efecto .destacada-card-img:hover .hover-info-overlay {
  opacity: 1;
}

.hover-titulo {
  font-family: 'Fredoka', sans-serif;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hover-precio {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-agregar-fucsia {
  width: 100%;
  background-color: #ff3399;
  color: #ffffff;
  border: none;
  border-radius: 15px;
  padding: 8px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(255, 51, 153, 0.3);
  transition: transform 0.2s, background-color 0.2s;
}

.btn-agregar-fucsia:hover {
  background-color: #d83a85;
  transform: translateY(-2px);
}

.destacada-flecha {
  background: transparent;
  border: none;
  color: #ff3399;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.2s;
  padding: 0 5px;
}

.destacada-flecha:hover {
  transform: scale(1.2);
}

.seccion-registro {
  width: 100%;
  max-width: 1100px;
  margin: 30px auto 40px;
  padding: 0 20px;
}

.registro-card {
  background-color: #f8c3e0;
  border-radius: 25px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.franja-lateral {
  width: 45px;
  background-color: #ed21a2;
}

.franja-lateral.der {
  background-color: #a02868;
}

.registro-contenido {
  flex: 1;
  padding: 30px 20px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.registro-titulo {
  font-family: 'Fredoka', sans-serif;
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  text-shadow: 2px 2px 0px #ed21a2;
}

.registro-form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.field-container {
  position: relative;
  width: 100%;
}

.field-container label {
  position: absolute;
  top: -9px;
  left: 25px;
  background-color: #f8c3e0;
  padding: 0 8px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.75rem;
  color: #ed21a2;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
}

.field-container input {
  width: 100%;
  height: 42px;
  border-radius: 25px;
  border: 2px solid #ed21a2;
  background: transparent;
  outline: none;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #333;
}

.btn-registrate-fucsia {
  background-color: #ed21a2;
  color: #ffffff;
  border: none;
  border-radius: 25px;
  padding: 10px 45px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 4px 10px rgba(237, 33, 162, 0.3);
  transition: transform 0.2s, background-color 0.2s;
}

.btn-registrate-fucsia:hover {
  background-color: #c91285;
  transform: translateY(-2px);
}

.main-footer {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.footer-container {
  display: flex;
  gap: 15px;
  align-items: stretch;
}

.footer-card-bunny {
  flex: 0 0 210px;
  background: linear-gradient(135deg, #fde4f2 0%, #fbcfe8 100%);
  border-radius: 18px;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.bunny-icon-wrapper {
  width: 65px;
  height: 65px;
  margin-bottom: 6px;
}

.bunny-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bunny-copyright {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: #555555;
  text-align: center;
}

.footer-card-info {
  flex: 1;
  border: 2px solid #ed21a2;
  border-radius: 18px;
  padding: 15px 25px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #ffffff;
}

.footer-block-title {
  font-family: 'Fredoka', sans-serif;
  color: #ed21a2;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.footer-columns {
  display: flex;
  gap: 20px;
}

.footer-columns ul {
  list-style: none;
}

.footer-columns a {
  text-decoration: none;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #222222;
  line-height: 1.8;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.footer-columns a:hover {
  color: #ed21a2;
}

.social-circles {
  display: flex;
  gap: 12px;
}

.social-circle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ed21a2;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 3px 8px rgba(237, 33, 162, 0.3);
  transition: transform 0.2s, background-color 0.2s;
}

.social-circle-btn:hover {
  background-color: #c91285;
  transform: scale(1.1);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fce6f2;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.loader-heart {
  font-size: 2.8rem;
  color: #ed21a2;
  animation: latido 1.2s infinite ease-in-out;
}

.loader-text {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ed21a2;
  letter-spacing: 2px;
}

@keyframes latido {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.18); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 900px) {
  .producto { flex: 0 0 calc((100% - 20px) / 2); width: calc((100% - 20px) / 2); min-width: 0; }
  .productos-ventana { width: 100%; }
  .destacada-container { flex-direction: column; }
  .destacada-banner { width: 100%; max-width: 320px; height: 260px; }
  .destacada-caja-rosa { width: 100%; border-radius: 20px; margin-left: 0; margin-top: -20px; padding: 30px 15px 20px; }
  .destacada-ventana { width: 100%; }
  .destacada-card { flex: 0 0 140px; width: 140px; min-width: 140px; }
  .destacada-card-img { height: 130px; }
  .footer-container { flex-direction: column; }
  .footer-card-bunny { width: 100%; flex: none; }
  .footer-card-info { flex-direction: column; gap: 20px; text-align: center; }
}