* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  background-color: #fbd0c7;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero {
  text-align: center;
  padding: 2rem 1rem;
}

.logo {
  width: 80px;
  margin-bottom: 1rem;
}

.brand {
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  letter-spacing: 1px;
}

.tagline {
  font-size: 1rem;
  color: #555;
  margin-top: 0.3rem;
}

.catalogo {
  display: flex;
  flex-direction: column;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

.product-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  object-fit: cover;
}

.product-card h3 {
  font-size: 1rem;
  margin: 1rem 0 0.3rem;
}

.precio {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 1rem;
}


.close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 28px;
  color: #777;
  cursor: pointer;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.slider-controls button {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #777;
  font-size: 0.9rem;
}

/* ------ */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fbd0c7;
  color: #222;
}

/* HEADER */
/* .main-header {
  background: #fff;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
} */

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
}

/* NAV */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #d6336c;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
}

/* HERO SECTION */
.hero-section {
  height: 100vh;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), #fbd0c7), url('https://res.cloudinary.com/datll7nec/image/upload/v1752706665/Captura_de_pantalla_2025-07-16_174203_duyker.png') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  padding-top: 100px;
}

.hero-text {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
}


.hero-text h1 {
  font-size: 2.5rem;
  color: #333;
}

.hero-text p {
  font-size: 1.1rem;
  color: #444;
  margin: 1rem 0;
}

.cta-btn {
  display: inline-block;
  background: #d6336c;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;

}

.cta-btn:hover {
  background: #b82c5a;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    width: 100%;
    display: none;
    padding: 1rem 2rem;
  }

  .nav.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.2rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }
}

.main-header {
  background: #ffffff;
  
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.main-header.transparent {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}
.main-header {
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

/* sobre la marca */
.sobre-marca {
  background-color: #fbd0c7;
  padding: 4rem 1.5rem;
}

.sobre-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.sobre-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.sobre-texto {
  max-width: 500px;
}

.sobre-texto h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.sobre-texto p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.sobre-texto ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.sobre-texto ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #333;
}

.sobre-texto .cta-btn {
  background: #d6336c;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.sobre-texto .cta-btn:hover {
  background: #b82c5a;
}

/* tendencias  */
.tendencias {
  background-color: #fff;
  padding: 4rem 1rem;
}

.tendencias-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tendencias-header h2 {
  font-size: 2rem;
  color: #d6336c;
}

.tendencias-header p {
  color: #555;
  font-size: 1rem;
}

.tendencias-carrusel {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.tendencia-card {
  flex: 0 0 auto;
  width: 200px;
  background: #fbd0c7;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  text-align: center;
  scroll-snap-align: start;
  position: relative;
}

.tendencia-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.tendencia-card p {
  font-weight: 500;
  font-size: 1rem;
  color: #333;
}

.etiqueta {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d6336c;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}

.etiqueta.destacado {
  background: #ffc107;
  color: #333;
}

/* Etiqueta */
.etiqueta {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d6336c;
  color: white;
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  font-weight: bold;
}

.etiqueta.destacado {
  background: #ff9900;
}

/* footer */
.footer {
  background: #fff;
  color: #444;
  padding: 3rem 1rem 1rem;
  text-align: center;
  border-top: 1px solid #eee;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-brand h2 {
  font-size: 1.5rem;
  color: #d6336c;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #777;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d6336c;
}

.footer-social a img {
  width: 28px;
  margin: 0 10px;
  filter: grayscale(0.2);
  transition: transform 0.3s;
}

.footer-social a:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #999;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

.product-card {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.tendencia-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* LOOKBOOK */
.lookbook {
  background: #fff;
  padding: 4rem 1rem;
}

.lookbook-header {
  text-align: center;
  margin-bottom: 2rem;
}

.lookbook-header h2 {
  font-size: 2rem;
  color: #d6336c;
}

.lookbook-header p {
  color: #555;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.lookbook-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: auto;
}

.lookbook-item img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.lookbook-item img:hover {
  transform: scale(1.03);
}
.categoria-titulo {
  font-size: 2rem;
  margin-top: 2rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
}

.subcategoria-titulo {
  font-size: 1.5rem;
  margin-top: 1rem;
  color: #444;
}

.subcat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.subcat-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}
.subcat-card {
  min-width: 200px;
  scroll-snap-align: start;
  cursor: pointer;
  text-align: center;
}
.subcat-card img {
  width: 100%;
  border-radius: 10px;
}


.categoria-titulo {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  font-weight: bold;
  color: #333;
}

.subcat-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.subcat-card {
  min-width: 160px;
  scroll-snap-align: start;
  cursor: pointer;
  text-align: center;
}

.subcat-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.modal-description {
  padding: 1rem;
  text-align: center;
  color: #444;
}
/* --- */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45); /* fondo oscuro translúcido */
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
}

.modal-content.modal-glass {
  background: rgba(255, 240, 245, 0.3); /* rosado claro */
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  text-align: center;
  animation: modalFade 0.3s ease forwards;
  color:red;
}

.modal-content img {
  width: 100%;
  max-height: 50vh;
  object-fit: contain;
  border-radius: 14px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.modal-description {
  font-size: 1rem;
  color: white;
  margin: 1rem 0;
  line-height: 1.5;
}

.close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 28px;
  color: #555;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.close:hover {
  transform: rotate(90deg);
  color: #d6336c;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.slider-controls button {
  background: rgba(255, 255, 255, 0.25);
  border: none;
  font-size: 1.3rem;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  color: #333;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-controls button:hover {
  background: rgba(255, 255, 255, 0.45);
}

.buy-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #d6336c;
  color: white;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.buy-btn:hover {
  background: #b82c5a;
  transform: scale(1.05);
}

/* Animación de aparición */
@keyframes modalFade {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 480px) {
  .modal-content.modal-glass {
    padding: 1.5rem 1rem;
    max-height: 90vh;
    overflow-y: auto;
  }
}
