html {
  scroll-behavior: smooth;
}

/* HERO */
.hero-inicio {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: 0;
  padding: 0;
}

/* CAPA IZQUIERDA */
.hero-texto {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 100px 24px 55px 28px;
  background: linear-gradient(
    to right,
    rgba(250, 247, 246, 0.92) 0%,
    rgba(250, 247, 246, 0.78) 28%,
    rgba(250, 247, 246, 0.35) 45%,
    rgba(250, 247, 246, 0) 62%
  );
}

/* SUBTITULO */
.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  letter-spacing: 6px;
  color: #b8898d;
  margin-bottom: 18px;
  text-transform: uppercase;
}

/* TITULOS */
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 74px;
  font-weight: 600;
  line-height: 0.92;
  color: #4f3b41;
  margin-bottom: 8px;
}

.hero-title-sec {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 500;
  color: #5b474d;
  margin-bottom: 28px;
}

/* BOTON */
.btn-colecciones {
  display: inline-block;
  padding: 15px 38px;
  background: #bd8688;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
  border: none;
}

.btn-colecciones:hover {
  transform: translateY(-2px);
  background: #aa7476;
}

/* IMAGEN HERO */
.hero-imagen {
  width: 100%;
  min-height: 100vh;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  position: relative;
  margin-top: 0;
  padding-top: 0;
  overflow: hidden;
}

.hero-imagen img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-imagen {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* ANIMACION HERO */
.animar-hero {
  animation: moverHero 0.9s ease;
}

@keyframes moverHero {
  0% {
    transform: translateY(0) scale(1);
  }
  30% {
    transform: translateY(-12px) scale(1.03);
  }
  60% {
    transform: translateY(6px) scale(0.99);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* WHY */
.why-queens {
  padding: 100px 10%;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff 0%, #fdfbfb 100%);
}

.why-queens h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  margin-bottom: 55px;
  color: #4b3d3d;
}

.why-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  position: relative;
  flex: 1;
  min-width: 0;
  max-width: 260px;
  padding: 28px 22px;
  border-radius: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(97, 74, 79, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(255, 255, 255, 0.02) 100%
  );
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 36px rgba(97, 74, 79, 0.14);
}

.why-card img,
.why-card h3,
.why-card p {
  position: relative;
  z-index: 2;
}

.why-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
  color: #4b3d3d;
}

.why-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
}

/* PRODUCTOS */
.productos {
  padding: 100px 10%;
  background: linear-gradient(to bottom, #faf8f7 0%, #f7f2f1 100%);
  text-align: center;
}

.titulo-productos {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  margin-bottom: 60px;
  color: #4b3d3d;
}

.productos-container {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.producto-card {
  text-decoration: none;
  color: #333;
  display: block;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px 14px 22px;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(90, 60, 70, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.producto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 34px rgba(90, 60, 70, 0.13);
}

.producto-card img {
  width: 260px;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  transition: 0.4s ease;
  display: block;
}

.producto-card:hover img {
  transform: scale(1.04);
}

.producto-card h3 {
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: #4b3d3d;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* PRELOADER */
.loader {
  position: fixed;
  inset: 0;
  background: #f6f1f0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

.loader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: loaderFadeIn 0.8s ease;
}

@keyframes loaderFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* FLOR */
.flower-loader {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 0 auto 28px;
}

.petal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 92px;
  border: 2.5px solid #c48693;
  border-radius: 60% 60% 60% 60% / 72% 72% 40% 40%;
  transform-origin: 50% 100%;
  opacity: 0;
  box-shadow: 0 0 14px rgba(183, 110, 121, 0.18);
  background: transparent;
  animation: petalDraw 0.7s ease forwards;
}

.petal-1 {
  --rot: 0deg;
  transform: translate(-50%, -100%) rotate(0deg);
  animation-delay: 0.10s;
}

.petal-2 {
  --rot: 60deg;
  transform: translate(-50%, -100%) rotate(60deg);
  animation-delay: 0.22s;
}

.petal-3 {
  --rot: 120deg;
  transform: translate(-50%, -100%) rotate(120deg);
  animation-delay: 0.34s;
}

.petal-4 {
  --rot: 180deg;
  transform: translate(-50%, -100%) rotate(180deg);
  animation-delay: 0.46s;
}

.petal-5 {
  --rot: 240deg;
  transform: translate(-50%, -100%) rotate(240deg);
  animation-delay: 0.58s;
}

.petal-6 {
  --rot: 300deg;
  transform: translate(-50%, -100%) rotate(300deg);
  animation-delay: 0.70s;
}

.flower-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: #b76e79;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  box-shadow: 0 0 18px rgba(183, 110, 121, 0.35);
  animation: centerBloom 0.45s ease forwards;
  animation-delay: 1s;
}

@keyframes petalDraw {
  0% {
    opacity: 0;
    transform: translate(-50%, -100%) rotate(var(--rot)) scale(0.35);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -100%) rotate(var(--rot)) scale(1);
  }
}

@keyframes centerBloom {
  from {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

/* TITULOS LOADER */
.loader-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  letter-spacing: 6px;
  color: #b76e79;
  opacity: 0;
  animation: titleUp 0.8s ease forwards;
  animation-delay: 1.15s;
}

.loader-subtitle {
  margin-top: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  letter-spacing: 2px;
  color: #8f5c65;
  opacity: 0;
  animation: subtitleFade 0.8s ease forwards;
  animation-delay: 1.45s;
}

@keyframes titleUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtitleFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SALIDA LATERAL */
.loader-door {
  position: absolute;
  inset: 0;
  background: #f6f1f0;
  transform: translateX(-100%);
  z-index: 1;
  pointer-events: none;
}

.loader.slide-out .loader-content {
  animation: contentExit 0.65s ease forwards;
}

.loader.slide-out .loader-door {
  animation: openSide 1s cubic-bezier(.77, 0, .18, 1) forwards;
}

@keyframes contentExit {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.96);
  }
}

@keyframes openSide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* ENTRADA DE PAGINA */
.page-ready .topbar,
.page-ready .hero-inicio,
.page-ready .why-queens,
.page-ready .productos {
  animation: pageReveal 0.9s ease;
}

@keyframes pageReveal {
  from {
    opacity: 0.35;
    transform: translateX(-25px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE GENERAL */
@media (max-width: 992px) {
  .topbar {
    padding: 18px 30px;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hero-inicio {
    grid-template-columns: 1fr;
    min-height: 100vh;
  }

  .hero-texto {
    position: absolute;
    inset: 0;
    max-width: 100%;
    width: 100%;
    min-height: 100%;
    justify-content: center;
    padding: 130px 34px 50px 34px;
    background: linear-gradient(
      to right,
      rgba(248, 245, 244, 0.94) 0%,
      rgba(248, 245, 244, 0.78) 38%,
      rgba(248, 245, 244, 0.18) 100%
    );
  }

  .hero-imagen {
    min-height: 100vh;
  }

  .hero-imagen img {
    min-height: 100vh;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-title-sec {
    font-size: 40px;
  }

  .loader-title {
    font-size: 50px;
  }

  .why-card {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .hero-inicio {
    min-height: 100vh;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-title-sec {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .why-queens h2,
  .titulo-productos {
    font-size: 32px;
  }

  .flower-loader {
    width: 140px;
    height: 140px;
    margin-bottom: 22px;
  }

  .petal {
    width: 46px;
    height: 76px;
  }

  .loader-title {
    font-size: 40px;
    letter-spacing: 4px;
  }

  .loader-subtitle {
    font-size: 24px;
  }

  .producto-card img {
    width: 100%;
    max-width: 280px;
    height: 320px;
  }
}

@media (max-width: 480px) {
  .topbar {
    padding: 16px 18px;
  }

  .brand {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .menu {
    gap: 14px;
  }

  .menu a {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .hero-texto {
    padding: 100px 22px 35px 22px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-title-sec {
    font-size: 28px;
  }

  .btn-colecciones {
    padding: 13px 24px;
    font-size: 13px;
  }

  .why-card {
    width: 100%;
    max-width: 300px;
  }
}

/* =========================
   SECCION OCASIONES
========================= */
.ocasiones {
  padding: 100px 8%;
  background: linear-gradient(to bottom, #faf7f6 0%, #f6f1f0 100%);
  text-align: center;
}

.titulo-ocasiones {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  color: #4b3b3f;
  margin-bottom: 10px;
}

.texto-ocasiones {
  font-size: 1rem;
  color: #6d6d6d;
  margin-bottom: 60px;
}

.ocasiones-container {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: nowrap;
}

.ocasion-card {
  width: 260px;
  height: 360px;
  perspective: 1200px;
}

.ocasion-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.ocasion-card:hover .ocasion-card-inner {
  transform: rotateY(180deg);
}

.ocasion-front,
.ocasion-back {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.ocasion-front {
  transform: rotateY(0deg);
}

.ocasion-portada {
  position: absolute;
  inset: 0;
}

.ocasion-portada img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ocasion-front::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.2),
    transparent
  );
}

.ocasion-front-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px;
  text-align: left;
  z-index: 2;
}

.ocasion-fecha {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.ocasion-titulo {
  color: white;
  font-size: 30px;
  font-family: 'Cormorant Garamond', serif;
}

.ocasion-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.ocasion-back {
  transform: rotateY(180deg);
}

.ocasion-back-imagen {
  position: absolute;
  inset: 0;
}

.ocasion-back-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ocasion-back::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.25),
    transparent
  );
}

.ocasion-back-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px;
  z-index: 2;
}

.ocasion-back-titulo {
  color: white;
  font-size: 30px;
  font-family: 'Cormorant Garamond', serif;
}

.ocasion-back-texto {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 10px;
}

.ocasion-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  text-decoration: none;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

.ocasion-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1200px) {
  .ocasiones-container {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .ocasiones {
    padding: 80px 6%;
  }

  .titulo-ocasiones {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .ocasiones-container {
    flex-wrap: wrap;
    gap: 22px;
  }

  .ocasion-card {
    width: 100%;
    max-width: 320px;
    flex: 0 0 auto;
  }
}

@media (max-width: 480px) {
  .titulo-ocasiones {
    font-size: 34px;
  }

  .ocasion-card {
    height: 345px;
  }

  .ocasion-titulo,
  .ocasion-back-titulo {
    font-size: 28px;
  }
}

/* ===== FECHA ESPECIAL ===== */
.fecha-especial-banner {
  position: relative;
  width: 90%;
  max-width: 1200px;
  min-height: 420px;
  margin: 60px auto;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #f5f1f1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.18) 10%,
    rgba(255, 255, 255, 0.35) 35%,
    rgba(255, 255, 255, 0.72) 60%,
    rgba(255, 255, 255, 0.88) 100%
  );
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  padding: 50px 60px;
  color: #4b2e3d;
}

.banner-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #5f4a54;
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 600;
}

.banner-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  line-height: 1.05;
  margin-bottom: 20px;
  color: #3c2430;
}

.banner-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #5f4a54;
  margin-bottom: 28px;
}

.banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-principal {
  background: #5f4a54;
  color: #fff;
  border: 2px solid #5f4a54;
}

.btn-principal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(215, 142, 166, 0.35);
}

.btn-secundario {
  background: rgba(255, 255, 255, 0.55);
  color: #5f4a54;
  border: 2px solid #5f4a54;
  backdrop-filter: blur(4px);
}

.btn-secundario:hover {
  background: #fff;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .fecha-especial-banner {
    min-height: 380px;
  }

  .banner-content {
    max-width: 100%;
    padding: 40px;
    margin-left: 0;
  }

  .banner-overlay {
    background: linear-gradient(
      to top,
      rgba(255, 255, 255, 0.92) 18%,
      rgba(255, 255, 255, 0.68) 45%,
      rgba(255, 255, 255, 0.18) 100%
    );
  }

  .banner-content h2 {
    font-size: 44px;
  }

  .banner-content p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .fecha-especial-banner {
    width: 92%;
    min-height: 460px;
    border-radius: 24px;
  }

  .banner-content {
    padding: 28px 22px;
  }

  .banner-content h2 {
    font-size: 34px;
  }

  .banner-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .banner-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-banner {
    width: 100%;
  }
}

#btnArriba {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #d98fa3;
  color: white;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: none;
  transition: all 0.3s ease;
  z-index: 999;
}

#btnArriba:hover {
  background: #c77a8e;
  transform: translateY(-3px);
}

/* =========================================
   RESPONSIVE MEJORADO SIN CAMBIAR HTML
========================================= */

/* Desktop mediano */
@media (max-width: 1200px) {
  .topbar {
    padding: 18px 32px;
  }

  .menu {
    gap: 24px;
  }

  .hero-texto {
    max-width: 420px;
    padding: 110px 30px 60px 30px;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-title-sec {
    font-size: 46px;
  }

  .why-container {
    flex-wrap: wrap;
    gap: 24px;
  }

  .why-card {
    max-width: 280px;
    flex: 1 1 260px;
  }

  .productos-container {
    gap: 24px;
  }

  .ocasiones-container {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Tablet */
@media (max-width: 992px) {
  body {
    overflow-x: hidden;
  }

  .topbar {
    padding: 16px 24px;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand {
    font-size: 18px;
    letter-spacing: 3px;
  }

  .menu {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  .menu a {
    font-size: 13px;
    letter-spacing: 1.5px;
  }

  .icons {
    gap: 14px;
  }

  .hero-inicio {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .hero-imagen {
    min-height: 100vh;
    width: 100%;
  }

  .hero-imagen img {
    min-height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-texto {
    position: absolute;
    inset: 0;
    max-width: 100%;
    width: 100%;
    min-height: 100%;
    justify-content: center;
    padding: 130px 34px 50px 34px;
    background: linear-gradient(
      to right,
      rgba(248, 245, 244, 0.94) 0%,
      rgba(248, 245, 244, 0.78) 38%,
      rgba(248, 245, 244, 0.18) 100%
    );
  }

  .hero-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .hero-title {
    font-size: 52px;
    line-height: 0.96;
  }

  .hero-title-sec {
    font-size: 38px;
    margin-bottom: 22px;
  }

  .btn-colecciones {
    padding: 14px 30px;
    font-size: 15px;
  }

  .why-queens,
  .productos,
  .ocasiones {
    padding-left: 6%;
    padding-right: 6%;
  }

  .why-queens h2,
  .titulo-productos,
  .titulo-ocasiones {
    font-size: 38px;
  }

  .why-container {
    flex-wrap: wrap;
    gap: 22px;
  }

  .why-card {
    flex: 1 1 calc(50% - 22px);
    max-width: 100%;
  }

  .producto-card {
    width: calc(50% - 12px);
    max-width: 320px;
  }

  .producto-card img {
    width: 100%;
    height: 320px;
  }

  .texto-ocasiones {
    margin-bottom: 40px;
    padding: 0 12px;
  }

  .ocasion-card {
    width: calc(50% - 14px);
    max-width: 320px;
  }

  .fecha-especial-banner {
    width: 92%;
    min-height: 380px;
  }

  .banner-content {
    max-width: 100%;
    margin-left: 0;
    padding: 38px 34px;
  }

  .banner-content h2 {
    font-size: 42px;
  }

  .banner-content p {
    font-size: 16px;
  }

  .banner-overlay {
    background: linear-gradient(
      to top,
      rgba(255, 255, 255, 0.92) 18%,
      rgba(255, 255, 255, 0.68) 45%,
      rgba(255, 255, 255, 0.18) 100%
    );
  }
}

/* Celular grande */
@media (max-width: 768px) {
  .topbar {
    position: fixed;
    padding: 14px 16px;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .brand {
    font-size: 16px;
    letter-spacing: 2px;
    text-align: center;
    margin: 0 auto;
  }

  .icons {
    display: flex;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    gap: 12px;
  }

  .hero-inicio,
  .hero-imagen,
  .hero-imagen img,
  .hero-texto {
    min-height: 100vh;
  }

  .hero-texto {
    padding: 125px 22px 36px 22px;
    align-items: flex-start;
    text-align: left;
    background: linear-gradient(
      to right,
      rgba(248, 245, 244, 0.95) 0%,
      rgba(248, 245, 244, 0.82) 44%,
      rgba(248, 245, 244, 0.20) 100%
    );
  }

  .hero-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: 40px;
    margin-bottom: 6px;
  }

  .hero-title-sec {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .btn-colecciones {
    padding: 12px 24px;
    font-size: 14px;
  }

  .why-queens,
  .productos,
  .ocasiones {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .why-queens h2,
  .titulo-productos,
  .titulo-ocasiones {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .why-container {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .why-card {
    width: 100%;
    max-width: 330px;
    flex: none;
  }

  .productos-container {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .producto-card {
    width: 100%;
    max-width: 320px;
  }

  .producto-card img {
    width: 100%;
    height: 340px;
  }

  .producto-card h3 {
    font-size: 24px;
  }

  .texto-ocasiones {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  .ocasiones-container {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .ocasion-card {
    width: 100%;
    max-width: 320px;
    height: 350px;
  }

  .ocasion-titulo,
  .ocasion-back-titulo {
    font-size: 28px;
  }

  .ocasion-sub,
  .ocasion-back-texto {
    font-size: 13px;
  }

  .flower-loader {
    width: 135px;
    height: 135px;
  }

  .petal {
    width: 44px;
    height: 72px;
  }

  .loader-title {
    font-size: 38px;
    letter-spacing: 3px;
  }

  .loader-subtitle {
    font-size: 22px;
  }

  .fecha-especial-banner {
    width: 94%;
    min-height: 440px;
    border-radius: 24px;
  }

  .banner-content {
    padding: 26px 22px;
  }

  .banner-tag {
    font-size: 12px;
    padding: 7px 14px;
  }

  .banner-content h2 {
    font-size: 32px;
  }

  .banner-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .banner-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-banner {
    width: 100%;
    padding: 13px 22px;
    font-size: 14px;
  }

  #btnArriba {
    width: 46px;
    height: 46px;
    right: 18px;
    bottom: 18px;
    font-size: 20px;
  }
}

/* Celular pequeño */
@media (max-width: 480px) {
  .topbar {
    padding: 12px 12px;
    gap: 10px;
  }

  .brand {
    font-size: 15px;
    letter-spacing: 2px;
  }

  .menu {
    right: 12px;
    width: 210px;
    padding: 18px;
    gap: 14px;
  }

  .menu a {
    font-size: 11px;
    letter-spacing: 0.8px;
  }

  .hero-texto {
    padding: 115px 18px 28px 18px;
  }

  .hero-subtitle {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1;
  }

  .hero-title-sec {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .btn-colecciones {
    padding: 11px 20px;
    font-size: 13px;
  }

  .why-queens,
  .productos,
  .ocasiones {
    padding-left: 5%;
    padding-right: 5%;
  }

  .why-queens h2,
  .titulo-productos,
  .titulo-ocasiones {
    font-size: 28px;
  }

  .why-card {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .why-card h3 {
    font-size: 15px;
  }

  .why-card p {
    font-size: 13px;
    line-height: 1.6;
  }

  .producto-card {
    padding: 12px 12px 18px;
    border-radius: 18px;
  }

  .producto-card img {
    height: 300px;
    border-radius: 12px;
  }

  .producto-card h3 {
    font-size: 22px;
    margin-top: 14px;
  }

  .texto-ocasiones {
    font-size: 0.9rem;
    padding: 0 4px;
  }

  .ocasion-card {
    height: 335px;
  }

  .ocasion-front-info,
  .ocasion-back-info {
    padding: 16px;
  }

  .ocasion-titulo,
  .ocasion-back-titulo {
    font-size: 24px;
  }

  .ocasion-fecha,
  .ocasion-sub,
  .ocasion-back-texto {
    font-size: 12px;
  }

  .ocasion-btn {
    padding: 9px 16px;
    font-size: 11px;
  }

  .flower-loader {
    width: 120px;
    height: 120px;
    margin-bottom: 18px;
  }

  .petal {
    width: 40px;
    height: 64px;
  }

  .loader-title {
    font-size: 32px;
  }

  .loader-subtitle {
    font-size: 20px;
  }

  .fecha-especial-banner {
    width: 95%;
    min-height: 420px;
    margin: 40px auto;
  }

  .banner-content {
    padding: 22px 18px;
  }

  .banner-content h2 {
    font-size: 28px;
  }

  .banner-content p {
    font-size: 14px;
  }

  .btn-banner {
    font-size: 13px;
    padding: 12px 18px;
  }

  #btnArriba {
    width: 42px;
    height: 42px;
    right: 14px;
    bottom: 14px;
    font-size: 18px;
  }
}

.social-section {
  width: 100%;
  padding: 90px 20px;
  background: #f8f7f7;
}

.social-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.social-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: #493034;
  margin-bottom: 55px;
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
  justify-content: center;
  gap: 26px;
}

.social-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}

.social-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border: 1.5px solid #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.social-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #b76e79;
  margin-bottom: 14px;
}

.social-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #7a7a7a;
  margin-bottom: 22px;
}

.social-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 30px;
  background: #b76e79;
  color: #fff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.3s ease;
  margin-top: auto;
  width: fit-content;
  align-self: center;
}

.social-btn:hover {
  background: #b76e79;
}

/* RESPONSIVE SOCIAL */
@media (max-width: 992px) {
  .social-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .social-cards {
    grid-template-columns: 1fr;
  }

  .social-title {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .social-card {
    padding: 30px 20px;
  }
}

/* =========================
   SCROLL PERSONALIZADO
========================= */

* {
  scrollbar-width: thin;
  scrollbar-color: #b76e79 #f6f1f0;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f6f1f0;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e4c6cb, #b76e79);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b76e79;
}

/* FOOTER THE QUEENS */
.footer-the-queens {
  background: url('/images/footer-flores.jpg') center/cover no-repeat;
  margin-top: 80px;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}

.footer-overlay {
  background: #926971;
  padding: 55px 8% 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand h2,
.footer-links h3,
.footer-hours h3 {
  margin: 0 0 16px;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
}

.footer-brand h2 {
  font-size: 34px;
  letter-spacing: 2px;
}

.footer-links h3,
.footer-hours h3 {
  font-size: 24px;
}

.footer-brand p,
.footer-links a,
.footer-hours p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: #f3d9df;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.footer-social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: #d8a5af;
  color: #fff !important;
  text-decoration: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

.footer-btn:hover {
  background: #c58f9a;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contacto-hero-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contacto-hero-img img {
    max-width: 100%;
    min-height: 260px;
    border-radius: 28px;
  }

  .contacto-cards {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .contacto-bottom {
    grid-template-columns: 1fr;
  }

  .contacto-hero-texto h1 {
    font-size: 46px;
  }

  #map {
    min-height: 280px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .contacto-hero {
    padding: 50px 6% 40px;
  }

  .contacto-main {
    padding: 35px 6% 65px;
  }

  .contacto-hero-texto h1 {
    font-size: 38px;
  }

  .contacto-desc {
    font-size: 14px;
  }

  .contact-card,
  .contacto-info-box,
  .map-card,
  .social-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contacto-info-box h2,
  .map-card h2,
  .social-card h2 {
    font-size: 28px;
  }

  #map {
    min-height: 240px;
  }

  .footer-overlay {
    padding: 45px 6% 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand h2 {
    font-size: 28px;
  }

  .footer-links h3,
  .footer-hours h3 {
    font-size: 22px;
  }
}

/* PANEL USUARIO */
.user-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(60, 40, 46, 0.28);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1200;
}

.user-panel-overlay.active {
  opacity: 1;
  visibility: visible;
}

.user-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  height: 100vh;
  background: rgba(255, 250, 251, 0.96);
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  transform: translateX(100%);
  transition: 0.35s ease;
  z-index: 1300;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.user-panel.active {
  transform: translateX(0);
}

.user-panel-close {
  align-self: flex-end;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #8c6771;
}

.user-panel-header {
  text-align: center;
  margin-bottom: 20px;
}

.user-avatar {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  background: #f3e8eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-avatar img {
  width: 35px;
}

/* TITULOS */
.user-panel-header h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: #4b3b3f;
}

.user-panel-header p {
  margin: 6px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: #8c6771;
}

/* INFO */
.user-panel-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.user-info-box {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
}

.user-info-box span {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b8898d;
}

.user-info-box strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #4b3b3f;
}

/* BOTONES */
.user-panel-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.user-panel-btn {
  padding: 14px;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-panel-btn.primary {
  background: #b76e79;
  color: white;
  border: none;
}

.user-panel-btn.secondary {
  border: 1px solid #b76e79;
  color: #b76e79;
  background: transparent;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .user-panel {
    width: 100%;
  }
}