/* ===============================
   ALMA CARIBEÑA · THEME 2025
   Paleta: Naranja, Verde Azulado, Amarillo, Rosa
   =============================== */

/* Variables de color */
:root {
  --primary-orange: #FF8C42;
  --primary-teal: #117A8B;
  --primary-yellow: #FFD60A;
  --primary-pink: #E91E63;
  --bg-light: #faf5ef;
  --text-dark: #222325;
}

/* Reset básico */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Tipografía base */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Layout principal */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===============================
   NAVBAR
   =============================== */

.navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 40;
  background: rgba(250, 245, 239, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
  min-width: fit-content;
}

.logo-mark {
  display: block;
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.navbar-left:hover .logo-mark {
  transform: scale(1.05);
}

.logo-text-main {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  color: #27272a;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-pink);
  transition: width 0.18s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  flex-shrink: 0;
  min-width: fit-content;
  position: relative;
}

.nav-cart {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger Menu Button */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.hamburger-menu:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.hamburger-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #27272a;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Navigation */
.nav-links.mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #faf5ef 100%);
  z-index: 2001;
  flex-direction: column;
  padding: 90px 1.75rem 2rem;
  gap: 0.25rem;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
}

.nav-links.mobile.active {
  transform: translateX(0);
}

.nav-links.mobile a {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: #374151;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  letter-spacing: 0.01em;
}

.nav-links.mobile a:hover {
  background: rgba(233, 30, 99, 0.1);
  color: var(--primary-pink);
  transform: translateX(-6px);
  padding-left: 1.5rem;
}

.nav-links.mobile a:active {
  transform: scale(0.97) translateX(-6px);
  background: rgba(233, 30, 99, 0.15);
}

/* Mobile Menu Close Button */
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--primary-pink);
  transform: rotate(90deg);
}

/*  separador principal index */

.how-section {
    padding: 70px 20px;
    text-align: center;
}

.how-title {
    font-size: 2.4rem;
    margin-bottom: 50px;
    font-weight: 700;
    color: #2b2b2b;
}
.hero-bottom-strip2 {
    position: relative;
    width: 100%;
    padding: 80px 0; /* ← aumentado (antes era pequeño) */
    margin: 60px 0;
    border-radius: 10px;

    /* Fondo difuminado premium */
    background: linear-gradient(
        135deg,
       #e91e63 0%,
        rgba(28, 82, 123, 0.85) 50%,
        rgba(17, 24, 39, 1) 100%
    );
    color: #f9fafb;

    overflow: hidden;
}

/* Contenido interno centrado */
.hero-bottom-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;

    position: relative;
    z-index: 2;
}

/* Texto */
.hero-bottom-copy {
    max-width: 600px;
    font-size: 1.25rem;
    line-height: 1.5;
}

/* Imágenes de flores pequeñas dentro del strip */
.strip-flor {
    position: absolute;
    width: 90px;   /* tamaño ampliado */
    opacity: 0.35;
    filter: drop-shadow(0px 3px 5px rgba(0,0,0,0.3));
    z-index: 1;
}

/* Posiciones decorativas */
.flor-a {
    top: 20px;
    left: 10%;
    transform: rotate(-12deg);
}

.flor-b {
    bottom: 20px;
    right: 12%;
    transform: rotate(8deg);
}
.flor-c{
    bottom: 20px;
    right: 45%;
    transform: rotate(14deg);
}
/* ==============================


/* Botones principales */
.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary svg,
.btn-secondary svg,
.btn-ghost svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btn-primary {
  padding: 1rem 1.75rem;
  background: var(--primary-pink);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(233, 30, 99, 0.3);
  gap: 1.5rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
  cursor: pointer;
}

/* Hover SOLO en desktop */
@media (hover: hover) {
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.4);
    background: #b52451;
  }

  .btn-primary:hover svg {
    transform: scale(1.1);
    transition: transform .25s ease;
  }
}

/* ----------- */
/* RESPONSIVE  */
/* ----------- */

/* Móviles muy pequeños (360px o menos) */
@media (max-width: 480px) {
  .btn-primary {
    width: 100%;         /* Botón ancho completo */
    padding: 1.1rem 1.2rem;
    font-size: 1.05rem;  /* Texto más grande */
    border-radius: 14px;
    gap: 1rem;
    box-shadow: 0 4px 14px rgba(233, 30, 99, 0.35);
  }
}

/* Tablets */
@media (max-width: 768px) {
  .btn-primary {
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
    border-radius: 14px;
  }
}


.btn-ghost:hover svg {
  transform: translateX(2px);
}


.btn-secondary {
  padding: 1rem 1.75rem;
  border-color: rgba(15, 23, 42, 0.12);
  background: #fdf7f0;
  color: #374151;
}

.btn-secondary:hover {
  background: #f6eee5;
}

.btn-ghost {
  padding: 1rem 1.75rem;
  border: 2px solid rgba(233, 30, 99, 0.2);
  background: transparent;
  color: var(--primary-pink);
  gap: 0.5rem;
  font-weight: 600;
}

.btn-ghost:hover {
  background: rgba(233, 30, 99, 0.05);
  border-color: rgba(233, 30, 99, 0.3);
}

/* ===============================
   HERO
   =============================== */

.hero {
  margin-top: 64px;
  background: #faf5ef;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(233, 30, 99, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 550px;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 140, 66, 0.1);
  border: 1px solid rgba(255, 140, 66, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-orange);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.1);
  transition: all 0.3s ease;
}

.hero-badge-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 66, 0.2);
}

.hero-badge-top svg {
  color: var(--primary-orange);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.hero-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--primary-teal);
  margin: 0;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(17, 122, 139, 0.05);
}

.hero-title-highlight {
  display: inline-block;
  position: relative;
  color: var(--primary-teal);
  font-weight: 700;
}

.hero-title-emphasis {
  display: inline-block;
  color: var(--primary-pink);
  font-style: italic;
  font-weight: 800;
  position: relative;
}

.hero-title-emphasis::after {
  content: '';
  position: absolute;
  bottom: 0.2rem;
  left: 0;
  width: 100%;
  height: 0.3rem;
  background: rgba(233, 30, 99, 0.15);
  border-radius: 2px;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 520px;
  color: #6b7280;
  margin: 0;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding: 1.5rem 0;
  border-top: 2px solid rgba(233, 30, 99, 0.1);
  border-bottom: 2px solid rgba(233, 30, 99, 0.1);
  background: linear-gradient(90deg, 
    rgba(233, 30, 99, 0.02) 0%, 
    transparent 50%, 
    rgba(233, 30, 99, 0.02) 100%);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-pink);
  line-height: 1;
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-photo {
  display: none;
}

.hero-logo-display {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
}

.hero-logo-display::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(233, 30, 99, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(255, 140, 0, 0.06) 0%, transparent 50%);
  border-radius: 40px;
  z-index: 0;
}

.hero-logo-display::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.6;
}

.hero-logo-display img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(233, 30, 99, 0.25))
          drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: float 6s ease-in-out infinite;
}

.hero-logo-display img:hover {
  transform: scale(1.08) rotate(2deg);
  filter: drop-shadow(0 25px 70px rgba(233, 30, 99, 0.35))
          drop-shadow(0 15px 40px rgba(0, 0, 0, 0.15));
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(-2deg);
  }
}

.hero-bottom-strip {
  width: 100%;
  padding: 3rem 0;
  margin-bottom: 0;
  background-color: var(--bg-light);
}

.hero-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.info-card {
  background: white;
  border: 2px solid var(--primary-teal);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(17, 122, 139, 0.15);
  border-color: var(--primary-pink);
}

.info-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  background: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  transition: all 0.3s ease;
}

.info-card:hover .info-card-icon {
  background: var(--primary-pink);
  color: white;
  transform: rotate(10deg) scale(1.1);
}

.info-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.info-card:hover .info-card-title {
  color: var(--primary-pink);
}

.info-card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
  opacity: 0.85;
}

/* Imágenes de flores pequeñas dentro del strip */
.strip-flor {
    position: absolute;
    width: 90px;   /* tamaño ampliado */
    opacity: 0.35;
    filter: drop-shadow(0px 3px 5px rgba(0,0,0,0.3));
    z-index: 1;
}

/* Posiciones decorativas */
.flor-a {
    top: 20px;
    left: 10%;
    transform: rotate(-12deg);
}

.flor-b {
    bottom: 20px;
    right: 12%;
    transform: rotate(8deg);
}
.flor-c{
    bottom: 20px;
    right: 45%;
    transform: rotate(14deg);
}
/* ===============================
   TIPS TROPICAL – SECCIÓN DESTACADA
   =============================== */

/* ===============================
   SECCIÓN CONSEJOS PARA CUIDAR FLORES
   =============================== */

.tips-section {
  background: #fef8f3;
  padding: 3rem 0;
  margin: 2rem 0;
}

.tips-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.tip-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(233, 30, 99, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 12px 40px rgba(233, 30, 99, 0.15),
    0 0 0 1px rgba(233, 30, 99, 0.1);
}

.tip-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.tip-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(233, 30, 99, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-pink);
}

.tip-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(233, 30, 99, 0.15);
  line-height: 1;
}

.tip-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.tip-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 1.5rem;
  flex: 1;
}

.tip-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(233, 30, 99, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(233, 30, 99, 0.1);
  font-size: 0.85rem;
  color: #4b5563;
  font-weight: 500;
}

.tip-highlight svg {
  color: var(--primary-pink);
  flex-shrink: 0;
}

/* Banner extra */
.tips-banner {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  background: var(--primary-pink);
  border-radius: 28px;
  padding: 3rem;
  align-items: center;
  box-shadow: 0 12px 40px rgba(233, 30, 99, 0.25);
}

.tips-banner-content {
  color: #ffffff;
}

.tips-banner-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tips-banner-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.tips-banner-content strong {
  font-weight: 800;
  text-decoration: underline;
}

.tips-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #ffffff;
  color: var(--primary-pink);
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.tips-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  gap: 1rem;
}

.tips-cta-btn svg {
  transition: transform 0.3s ease;
}

.tips-cta-btn:hover svg {
  transform: translateX(4px);
}

.tips-banner-image {
  position: relative;
  height: 100%;
  min-height: 250px;
}

.tips-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ===============================
   SEPARADOR TROPICAL ENTRE SECCIONES
   =============================== */

.tropical-separator {
    margin: 2rem auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
}

.tropical-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(255,140,90,0.2),
        rgba(0,180,150,0.35),
        rgba(255,140,90,0.2)
    );
    border-radius: 10px;
}

.tropical-icon {
    font-size: 1.7rem;
    color: #ec6b4a; /* coral tropical */
    animation: separatorBounce 3.5s infinite ease-in-out;
}
/* ===============================
   NUESTRA FILOSOFÍA – ESTILO GRASSFED PREMIUM
   =============================== */

/* NUESTRA FILOSOFÍA – FONDO SÓLIDO */
/* ===============================
   SECCIÓN FILOSOFÍA
   =============================== */
.philosophy-section {
    padding: 3rem 1.5rem;
    margin: 2rem 0;
    background: #faf5ef;
}

.philosophy-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.philosophy-image:hover img {
    transform: scale(1.03);
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.philosophy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-orange);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}.philosophy-badge svg {
    width: 16px;
    height: 16px;
}

.philosophy-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.philosophy-title-main {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-teal);
  line-height: 1.1;
}.philosophy-title-sub {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-pink);
}.philosophy-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.philosophy-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--primary-pink);
    margin: 0;
}

.philosophy-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--primary-teal);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: var(--primary-pink);
  color: white;
}.social-link svg {
    width: 20px;
    height: 20px;
}

@keyframes separatorBounce {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-4px) scale(1.05); }
    100% { transform: translateY(0px); }
}

.hero-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: 0.82rem;
}

.hero-bottom-copy {
  max-width: 630px;
  color: #e5e7eb;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-badge-circle {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}
/* ===============================
   SECCIÓN ¿CÓMO COMPRAR? ESTILO GRASSFED
   =============================== */

/* ===============================
   SECCIÓN ¿CÓMO COMPRAR?
   =============================== */

.how-section {
  background: #faf5ef;
  padding: 3rem 0;
  margin: 2rem 0;
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.how-step-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 3rem 2rem;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.how-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 12px 40px rgba(233, 30, 99, 0.15),
    0 0 0 1px rgba(233, 30, 99, 0.1);
}

.how-step-featured {
  border: 2px solid var(--primary-pink);
  background: #fff5f8;
}

.how-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-pink);
  color: #ffffff;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.how-step-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(233, 30, 99, 0.15);
  line-height: 1;
}

.how-step-icon-wrapper {
  width: 140px;
  height: 140px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fef8f3;
  border-radius: 50%;
  padding: 1.5rem;
  box-shadow: 
    0 8px 24px rgba(233, 30, 99, 0.12),
    inset 0 0 0 1px rgba(233, 30, 99, 0.08);
}

.how-step-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.how-step-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.how-step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 2rem;
}

.how-step-features {
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.how-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.feature-icon {
  color: var(--primary-pink);
  flex-shrink: 0;
}

.how-btn-primary {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--primary-pink);
  color: #ffffff;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(233, 30, 99, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
}

.how-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.35);
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-orange) 100%);
}

.btn-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.how-btn-primary:hover .btn-icon {
  transform: translateX(2px);
  transition: transform 0.2s ease;
}

/* Información adicional */
.how-extra-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.how-info-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(233, 30, 99, 0.08);
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(232, 74, 122, 0.05) 100%);
  border-radius: 50%;
}

.info-icon svg {
  display: block;
}

.how-info-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.how-info-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.5;
}

.how-step-item {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.how-step-icon {
  margin-bottom: 1.5rem;
}

.how-img {
  width: 120px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0px 4px 12px rgba(0,0,0,0.1));
}

.how-step-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.how-step-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}

.how-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 12px;
  border: 2px solid var(--primary-pink);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--primary-pink);
  background: transparent;
  transition: all 0.25s ease;
  text-decoration: none;
}

.how-btn:hover {
  background: var(--primary-pink);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.how-btn:active {
  transform: translateY(0);
}

/* ===============================
   SECCIONES GENERALES
   =============================== */

.main-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
  margin-top: 5.5rem;
}

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

.section-header-center {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #c4a684;
  margin-bottom: 0.5rem;
}

.section-title-large {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #c4a684;
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1rem;
  color: #6b7280;
}

.section-sub-large {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
/* ===============================================
   CUSTOM BUILDER SECTION - Crea tu arreglo
   =============================================== */

.custom-builder-section {
    background: #faf5ef;
    padding: 4rem 1.5rem;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}

.custom-builder-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Header */
.builder-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.builder-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.builder-hero-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Content Layout */
.builder-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
}

/* Products Area */
.builder-products-area {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Filter Bar */
.builder-filter-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding: 1.25rem;
    background: #faf5ef;
    border-radius: 16px;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.filter-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}

.filter-select {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(233, 30, 99, 0.15);
    border-radius: 12px;
    font-size: 0.95rem;
    color: #333;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover {
    border-color: rgba(233, 30, 99, 0.3);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
}

/* Category Section */
.builder-category-section {
    margin-bottom: 3rem;
}

.category-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-flower {
    background: #fce4ec;
    color: #C2185B;
}

.badge-extra {
    background: #fff9e6;
    color: #F57C00;
}

.category-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Products Grid */
.builder-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
}

/* Product Card */
/* ===================== */
/* CARD BASE             */
/* ===================== */

.builder-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Hover SOLO en desktop */
@media (hover: hover) {
    .builder-product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(233, 30, 99, 0.15);
        border-color: rgba(233, 30, 99, 0.2);
    }
    .builder-product-card:hover .product-card-image img {
        transform: scale(1.05);
    }
}

/* ===================== */
/* IMÁGENES              */
/* ===================== */

.product-card-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: #faf5ef;
    overflow: hidden;
}

.product-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

/* ===================== */
/* CONTENIDO             */
/* ===================== */

.product-card-content {
    padding: 1.25rem;
}

.product-card-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    min-height: 2.6rem;
}

.product-card-description {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    min-height: 2.625rem;
}

/* ===================== */
/* FOOTER DE LA CARD     */
/* ===================== */

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.product-card-price {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-pink);
    white-space: nowrap;
}

/* ===================== */
/* BOTÓN                 */
/* ===================== */

.btn-add-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--primary-pink);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.25);
}

/* Solo desktop */
@media (hover: hover) {
    .btn-add-product:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(233, 30, 99, 0.35);
    }

    .btn-add-product:hover svg {
        transform: rotate(90deg);
    }
}

.btn-add-product:active {
    transform: translateY(0);
}


/* ===================== */
/*      RESPONSIVE       */
/* ===================== */

/* Celulares pequeños */
@media (max-width: 480px) {
    .builder-product-card {
        border-radius: 16px;
    }

    .product-card-content {
        padding: 1rem;
    }

    .product-card-name {
        font-size: 1rem;
        min-height: auto;
    }

    .product-card-description {
        font-size: 0.8rem;
        min-height: auto;
    }

    .product-card-price {
        font-size: 1.2rem;
    }

    .btn-add-product {
        padding: 0.85rem 1rem;
        width: 100%;
        font-size: 1rem;
        border-radius: 14px;
        box-shadow: 0 4px 14px rgba(233, 30, 99, 0.35);
    }

    .product-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .product-card-content {
        padding: 1.1rem;
    }

    .product-card-name {
        font-size: 1.05rem;
    }

    .product-card-price {
        font-size: 1.25rem;
    }
}


/* Cart Sidebar */
.builder-cart-sidebar {
    position: relative;
}

.cart-sticky {
    position: sticky;
    top: 100px;
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(233, 30, 99, 0.12);
    max-width: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cart-header {
    margin: 0;
    padding: 2rem 2rem 1.75rem;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.04) 0%, rgba(17, 122, 139, 0.03) 100%);
    border-bottom: 2px solid rgba(233, 30, 99, 0.08);
}

.cart-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

/* Cart Items List */
.cart-items-list {
    max-height: 420px;
    overflow-y: auto;
    margin: 0;
    padding: 1.5rem 2rem;
    background: #fafafa;
}

.cart-items-list::-webkit-scrollbar {
    width: 6px;
}

.cart-items-list::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.02);
    border-radius: 10px;
}

.cart-items-list::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.3) 0%, rgba(17, 122, 139, 0.3) 100%);
    border-radius: 10px;
}

.cart-items-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.5) 0%, rgba(17, 122, 139, 0.5) 100%);
}

.cart-item {
    display: block;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: 14px;
    margin-bottom: 1rem;
    border: 1.5px solid #e5e7eb;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.cart-item:hover {
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: 0 4px 16px rgba(233, 30, 99, 0.08);
    transform: translateY(-2px);
}

.cart-item:last-child {
    margin-bottom: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 0.875rem;
    color: var(--primary-pink);
    font-weight: 700;
}

.cart-item-remove {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    background: #dc3545;
    color: white;
    transform: scale(1.1);
}

/* Cart Summary */
.cart-summary-box {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-pink) 0%, #c2185b 100%);
    margin: 0;
    border-top: 3px solid rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}

.cart-summary-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent 70%);
    pointer-events: none;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.cart-total-amount {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Cart Action Buttons */
.cart-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.75rem 2rem 2rem;
    background: #fafafa;
}

.btn-cart-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.15rem 1.25rem;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
}

.btn-cart-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cart-action:hover::before {
    left: 100%;
}

.btn-pdf {
    background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
    color: white;
}

.btn-pdf:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.35);
}

.btn-pdf:active {
    transform: translateY(-1px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #0a4d59 100%);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(17, 122, 139, 0.35);
}

.btn-whatsapp:active {
    transform: translateY(-1px);
}

.btn-cart-action:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
    filter: grayscale(0.3);
}

.btn-cart-action:disabled:hover::before {
    left: -100%;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: #9ca3af;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.empty-state p {
    margin: 0;
    line-height: 1.5;
}

.empty-state::before {
    content: '🛒';
    font-size: 3rem;
    opacity: 0.3;
    display: block;
}

/* Responsive */
@media (max-width: 1200px) {
    .builder-content {
        grid-template-columns: 1fr 340px;
        gap: 2rem;
    }
    
    .builder-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .builder-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }
    
    .builder-product-card {
        border-radius: 14px;
    }
    
    .product-card-content {
        padding: 1rem;
    }
    
    .product-card-name {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .product-card-description {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .product-card-footer {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .product-card-price {
        font-size: 1.2rem;
    }
    
    .btn-add-product {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        flex: 1;
    }
}

@media (max-width: 1024px) {
    .builder-hero-title {
        font-size: 2.5rem;
    }
    
    .builder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .builder-cart-sidebar {
        position: static;
    }
    
    .cart-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .hero-logo-display {
        order: -1;
        padding: 2rem 1rem;
    }

    .hero-logo-display img {
        max-height: 280px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3rem);
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-photo {
        min-height: 350px;
        order: -1;
    }

    .custom-builder-section {
        padding: 2rem 1rem;
        margin-top: 64px;
    }
    
    .builder-hero {
        margin-bottom: 2rem;
        padding: 0;
    }
    
    .builder-hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .builder-hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .builder-products-area {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .builder-filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .filter-label {
        font-size: 0.9rem;
    }
    
    .filter-select {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .category-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .category-section-title {
        font-size: 1.5rem;
    }
    
    .builder-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cart-sticky {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-inner {
        padding: 2rem 1rem;
    }

    .hero-logo-display {
        padding: 1.5rem 0.5rem;
    }

    .hero-logo-display img {
        max-height: 220px;
    }

    .hero-badge-top {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions a {
        width: 100%;
        justify-content: center;
    }

    .hero-photo {
        min-height: 300px;
    }

    .builder-hero-title {
        font-size: 1.75rem;
    }
    
    .builder-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6rem;
    }
    
    .builder-product-card {
        border-radius: 10px;
    }
    
    .product-card-image {
        padding-bottom: 100%;
    }
    
    .product-card-content {
        padding: 0.8rem;
    }
    
    .product-card-name {
        font-size: 0.9rem;
        min-height: auto;
        margin-bottom: 0.35rem;
        line-height: 1.25;
    }
    
    .product-card-description {
        font-size: 0.75rem;
        min-height: auto;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.4;
    }
    
    .product-card-footer {
        flex-direction: column !important;
        gap: 0.5rem;
        padding-top: 0.5rem;
        margin-top: 0.5rem;
        align-items: stretch;
    }
    
    .product-card-price {
        font-size: 1.15rem;
        width: 100%;
        text-align: left;
        white-space: normal;
        order: 1;
    }
    
    .btn-add-product {
        padding: 0.65rem 1rem !important;
        font-size: 0.85rem !important;
        width: 100% !important;
        border-radius: 10px;
        gap: 0.4rem;
        justify-content: center;
        order: 2;
    }
    
    .btn-add-product svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    
    .cart-sticky {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .cart-title {
        font-size: 1.25rem;
    }
    
    .cart-subtitle {
        font-size: 0.8rem;
    }
    
    .cart-action-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-cart-action {
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .filter-select {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }
    
    .category-section-title {
        font-size: 1.25rem;
    }
    
    .category-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
}

/* ===============================
   LEGACY BUILDER STYLES (deprecated)
   =============================== */

.builder-section {
  max-width: 1200px;
  margin: 120px auto 40px;
  padding: 0 1.5rem;
}

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

.builder-header h1 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #111827;
  margin-bottom: 0.7rem;
}

.builder-header p {
  font-size: 0.95rem;
  color: #4b5563;
}

.builder-layout {
    display: grid;
    grid-template-columns: 5fr 1.5fr; /* Aún más ancho */
    gap: 2.5rem;
}



/* Lado productos */
.builder-products {
    background: #ffffff;
    border-radius: 22px;
    padding: 1.5rem 1.4rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);

    /* NUEVO */
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: auto;
}
.builder-products::-webkit-scrollbar {
    width: 8px;
}

.builder-products::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.builder-products::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 10px;
}

.builder-products::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}




.builder-category-block + .builder-category-block {
  margin-top: 1.6rem;
}

.builder-category-header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.builder-category-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    margin-top: 10px;
}

.builder-category-chip {
    padding: 3px 12px;
    font-size: 0.75rem;
    border-radius: 999px;
    background: #dbeafe;
    color: #1e40af;
}

.builder-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    align-items: start;
}


/* Tarjetas de producto */
.store-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
    transition: all .25s ease;
    cursor: pointer;
}
.store-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.18);
}

.store-card img {
    width: 100%;
    height: 220px;  /* Antes 180 → ahora equilibrado */
    object-fit: cover;
    background: white;
}


.store-card:hover img {
    transform: scale(1.06);
}
.store-card-placeholder {
    width: 100%;
    height: 260px;
    background: #f3f4f6;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}


.store-card-body {
    padding: 18px;
}

.store-card-body h3 {
    font-size: 1.2rem;
}
.store-card-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 10px;
}

.store-card-desc {
    font-size: 1rem;
    line-height: 1.4rem;
    color: #6b7280;
    margin-bottom: 12px;
}
.store-card-actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.store-card-actions .btn-sm {
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
}
.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
}
/* Lado carrito */
.builder-cart {
  background: #ffffff;
  border-radius: 22px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  position: sticky;
  top: 90px;
  align-self: flex-start;
}

.builder-cart h2 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.builder-cart-sub {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.cart-items {
  border-top: 1px solid #e5e7eb;
  padding-top: 0.7rem;
  max-height: 280px;
  overflow: auto;
}

.cart-empty {
  font-size: 0.85rem;
  color: #9ca3af;
  padding: 0.5rem 0;
}

.cart-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.cart-item-main {
  display: flex;
  flex-direction: column;
}

.cart-item-type {
  font-size: 0.75rem;
  color: #6b7280;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.cart-qty {
  min-width: 16px;
  text-align: center;
  font-size: 0.9rem;
}

.cart-btn {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  cursor: pointer;
  font-size: 0.9rem;
}

.cart-item-total {
  font-size: 0.88rem;
  font-weight: 600;
  text-align: right;
}

.cart-summary {
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px solid #e5e7eb;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
}




.category-filter {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.category-filter select {
    padding: 10px 16px;
    font-size: 0.95rem;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: white;
    cursor: pointer;
}

.category-filter label {
    font-size: 0.9rem;
    color: #374151;
}
.cart-actions {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.6rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Responsive */
@media (max-width: 950px) {
  .builder-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .builder-cart {
    position: static;
    max-height: none;
  }
  .builder-products {
    max-height: none;
  }
}


/* ===============================
   ¿CÓMO COMPRAR?
   =============================== */

.section-how {
  margin-top: 3rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}

.how-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.how-card h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.how-card p {
  font-size: 0.9rem;
  color: #4b5563;
}

/* ===============================
   COLECCIONES
   =============================== */

.section-collections {
  margin-top: 3.2rem;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

.collection-block {
  background: #fffdf9;
  border-radius: 20px;
  padding: 1.5rem 1.4rem 1.3rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.collection-block h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(217, 19%, 27%);
  margin-bottom: 0.7rem;
}

.collection-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.collection-tag {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: #f3e4d2;
  font-size: 0.8rem;
  color: #7c2d12;
}

/* ===============================
   FILTROS & CATÁLOGO
   =============================== */

.filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  justify-content: center;
  margin: 2.5rem auto;
  max-width: 800px;
}

.filter-form > div {
  flex: 1;
  min-width: 180px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.4rem;
}

.form-input,
select.form-input {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  border: 2px solid rgba(148, 163, 184, 0.3);
  font-size: 0.9rem;
  outline: none;
  background: #ffffff;
  transition: all 0.2s ease;
  cursor: pointer;
}

.form-input:focus,
select.form-input:focus {
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
  background: #ffffff;
}

.filter-form .btn-primary,
.filter-form .btn-secondary {
  margin-top: 1.6rem;
}

/* ===============================
   CATÁLOGO MODERNO - DISEÑO PREMIUM
   =============================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin: 3rem auto 0;
  max-width: 1200px;
  justify-items: center;
}

.product-card-modern {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 18px;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.product-card-link:active .product-card-inner {
  transform: scale(0.98);
  transition: transform 0.15s ease;
}

.product-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.12),
    0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-card-inner {
  position: relative;
}

/* Precio en esquina superior */
.product-price-tag {
  display: none;
}

.product-price-bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(233, 30, 99, 0.1);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-pink);
  text-align: center;
}

/* Wrapper de imagen con bordes redondeados */
.product-image-wrapper {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 214, 10, 0.15) 0%, rgba(17, 122, 139, 0.15) 100%);
  aspect-ratio: 1;
  margin-bottom: 16px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card-modern:hover .product-image {
  transform: scale(1.05);
}

.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, rgba(233, 30, 99, 0.1) 100%);
  font-size: 0.9rem;
  color: #999;
  font-weight: 500;
}

/* Badge de delivery/ocasión */
.product-delivery-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2d5016;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Información del producto */
.product-info {
  padding: 4px 8px;
}

.product-header {
  margin-bottom: 12px;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.01em;
}

.product-cta {
  display: none;
}

/* Tags/Badges de características */
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(200, 230, 201, 0.5);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #2d5016;
  border: 1px solid rgba(200, 230, 201, 0.8);
  transition: all 0.2s ease;
}

.product-tag:hover {
  background: rgba(200, 230, 201, 0.8);
  transform: translateY(-1px);
}

/* Mantener estilos antiguos para compatibilidad */
.badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-right: 0;
}

.badge-category {
  background: var(--primary-teal);
  color: white;
}

.badge-occasion {
  background: var(--primary-pink);
  color: white;
}

.empty-state {
  padding: 1.1rem 1rem;
  background: #fef3c7;
  border-radius: 14px;
  font-size: 0.9rem;
  color: #92400e;
}

/* ===============================
   SECCIÓN CONSEJOS TROPICAL
   =============================== */

.tips-tropical-section {
  margin: 6rem auto;
  padding: 0 2rem;
  max-width: 1200px;
}

.tips-tropical-wrapper {
  width: 100%;
}

.tips-tropical-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  background: linear-gradient(135deg, rgba(17, 122, 139, 0.1) 0%, rgba(255, 214, 10, 0.1) 100%);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.tips-tropical-content {
  display: grid;
  gap: 2rem;
}

.tip-item {
  background: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.tip-item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.tip-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.tip-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 0.5rem;
}

.tip-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

.tips-tropical-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tips-tropical-decoration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ===============================
   FOOTER
   =============================== */

.public-footer {
  background: var(--primary-teal);
  color: white;
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo .logo-text-main {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1rem 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-orange);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  color: rgba(255, 255, 255, 1);
  transform: translateX(3px);
}

.footer-contact-item:hover svg {
  color: var(--primary-orange);
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--primary-yellow);
  transition: color 0.3s ease;
}

.footer-social-links {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background: var(--primary-pink);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0.5rem 0;
}

.footer-dev {
  font-size: 0.85rem !important;
}

.footer-dev a {
  color: var(--primary-yellow);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-dev a:hover {
  color: var(--primary-orange);
}

.footer-dev strong {
  color: rgba(255, 255, 255, 0.9);
}

/* WhatsApp Flotante */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(17, 122, 139, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(17, 122, 139, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* ===============================
   PRODUCTO DETALLE PREMIUM
   =============================== */

.product-detail-premium {
  max-width: 1100px;
  margin: 120px auto 60px;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2.5rem;
}

/* Galería */
.gallery-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-main {
  background: #ffffff;
  padding: 1rem;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  height: auto;
  overflow: hidden;
}

.gallery-main img {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.35s ease;
}

.gallery-main img:hover {
  transform: scale(1.06);
}

.gallery-thumbs {
  display: flex;
  gap: 0.6rem;
  padding-bottom: 0.3rem;
  overflow-x: auto;
}

.thumb {
  min-width: 90px;
  height: 90px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.2);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.3);
}

/* Info del producto */
.product-info-box {
  background: #ffffff;
  padding: 2rem 1.8rem;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pd-title {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--primary-teal);
  line-height: 1.2;
}

.pd-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-pink);
  margin: 0;
}

.pd-description {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

.pd-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.5rem 0;
}

.pd-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.pd-actions .btn-primary,
.pd-actions .btn-secondary,
.pd-actions .btn-ghost {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ===============================
   WHATSAPP FLOAT BUTTON
   =============================== */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.45);
  color: #ffffff;
  font-size: 1.4rem;
  z-index: 60;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    background-color 0.16s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(34, 197, 94, 0.6);
  background: #16a34a;
}

/* ===============================
   ADMIN STYLES
   =============================== */

.bg-admin {
  background: radial-gradient(circle at top left, rgba(233, 30, 99, 0.1) 0, rgba(255, 140, 66, 0.1) 50%, rgba(255, 214, 10, 0.1) 100%);
  min-height: 100vh;
}

.admin-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.4rem 1.5rem 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header-right {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.86rem;
}

.admin-main {
  max-width: 1100px;
  margin: 0 auto 2.8rem;
  padding: 0 1.5rem 2.2rem;
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.admin-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.4rem 1.4rem;
  box-shadow: 0 18px 40px rgba(219, 39, 119, 0.18);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.admin-card h2 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.admin-card p {
  font-size: 0.86rem;
  color: #4b5563;
}

.admin-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(219, 39, 119, 0.28);
}

/* Admin cards generales / formularios */
.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 18px 42px rgba(244, 63, 94, 0.16);
  margin-top: 1.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.form-grid .full-width {
  grid-column: 1 / -1;
}

/* Tablas admin */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.86rem;
}

.table th,
.table td {
  padding: 0.55rem 0.5rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

.table th {
  background: #fce7f3;
  color: #6b7280;
  font-weight: 600;
}

.thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 14px;
}

/* Login admin */
.auth-container {
  max-width: 400px;
  margin: 5rem auto;
  padding: 2.1rem 1.9rem;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 24px 56px rgba(244, 63, 94, 0.32);
}

.auth-title {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 0.3rem;
}

.auth-subtitle {
  text-align: center;
  font-size: 0.86rem;
  color: #6b7280;
  margin-bottom: 1.1rem;
}

.auth-form {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.auth-footer {
  text-align: center;
  margin-top: 0.4rem;
}

/* QR */
.center {
  text-align: center;
}

.qr-image {
  margin-top: 1rem;
  width: 250px;
  height: 250px;
}


.small-text {
  font-size: 0.8rem;
  color: #6b7280;
}
/* ===============================
   BOTONES DE REDES SOCIALES PREMIUM
   =============================== */

.social-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(0,0,0,0.15);
}

/* INSTAGRAM */
.social-btn.instagram {
    background: linear-gradient(45deg, var(--primary-pink), var(--primary-orange));
}

.social-btn.instagram:hover {
    box-shadow: 0 14px 26px rgba(255, 111, 97, 0.45);
    transform: translateY(-2px);
}

/* FACEBOOK */
.social-btn.facebook {
    background: #1877f2;
}

.social-btn.facebook:hover {
    box-shadow: 0 14px 26px rgba(24, 119, 242, 0.45);
    transform: translateY(-2px);
}

/* ===============================
   RESPONSIVE
   =============================== */

/* Tablets y pantallas medianas - 1024px */
@media (max-width: 1024px) {
  .navbar-inner {
    padding: 0.85rem 1.5rem;
  }
  
  .nav-links {
    gap: 1.2rem;
    font-size: 0.8rem;
  }
  
  .hero-inner {
    padding: 3rem 1.5rem;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: clamp(2.4rem, 3.5vw, 3rem);
  }
  
  .how-grid-illustrated {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
  }
}

/* Tablets pequeñas - 900px */
@media (max-width: 900px) {
  .navbar-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.75rem 1.5rem;
  }
  
  .navbar-left {
    margin-right: auto;
  }
  
  .navbar-right {
    margin-left: auto;
  }
  
  .nav-links {
    width: 100%;
    justify-content: center;
    padding-top: 0.75rem;
    gap: 1rem;
    font-size: 0.75rem;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 2.5rem 2rem;
    gap: 2.5rem;
  }
  
  .hero-photo {
    order: -1;
    min-height: 300px;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
  }
  
  .hero-subtitle {
    max-width: 100%;
  }
  
  .hero-actions {
    justify-content: center;
    width: 100%;
  }
  
  .hero-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  
  .hero-bottom-copy {
    max-width: 100%;
  }
  
  .product-detail-premium {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 100px auto 40px;
    padding: 0 1rem;
  }

  .gallery-main {
    min-height: 350px;
    padding: 0.75rem;
  }

  .gallery-thumbs {
    gap: 0.5rem;
  }

  .thumb {
    min-width: 70px;
    height: 70px;
  }

  .product-info-box {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 16px;
}
@media (max-width: 1024px) {
    .product-info-box {
        padding: 1.75rem; /* un poco más para pantallas medianas */
        border-radius: 14px;
    }
}

  .pd-title {
    font-size: 1.75rem;
  }

  .pd-price {
    font-size: 1.75rem;
  }

  .pd-badges .badge {
    padding: 0.3rem 0.7rem;
    font-size: 0.65rem;
  }

  .pd-actions {
    gap: 0.6rem;
  }
  /* ============================= */
/*   DEFAULT (DESKTOP – 1024+)   */
/* ============================= */
.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* imagen izquierda, info derecha */
    gap: 3rem;
    margin-top: 120px;
    align-items: start;
}


/* ============================= */
/*   TABLET (768px – 1023px)     */
/* ============================= */
@media (max-width: 1024px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        margin-top: 90px;
    }
}


/* ============================= */
/*   CELULARES GRANDES (480–768) */
/* ============================= */
@media (max-width: 768px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;  /* una sola columna */
        gap: 2rem;
        margin-top: 80px;
        padding: 0 1rem;
    }
}


/* ============================= */
/*   CELULARES PEQUEÑOS (<480)   */
/* ============================= */
@media (max-width: 480px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 70px;
        padding: 0 0.75rem;
    }
}

  
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .philosophy-image {
    order: 1;
  }

  .philosophy-content {
    order: 2;
  }

  .philosophy-title-main {
    font-size: 2rem;
  }

  .philosophy-title-sub {
    font-size: 1.1rem;
  }

  .philosophy-social {
    flex-direction: column;
  }

  .social-link {
    width: 100%;
    justify-content: center;
  }
  
  .how-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tips-banner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tips-banner-image {
    min-height: 200px;
  }
  
  .how-steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .how-step-card {
    padding: 2.5rem 1.5rem;
  }
  
  .how-extra-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Móviles grandes - 768px */
@media (max-width: 768px) {
  .navbar-inner {
    padding: 0.75rem 1rem;
  }
  
  .nav-links:not(.mobile) {
    display: none;
  }
  
  .hamburger-menu {
    display: flex !important;
    order: -1;
    z-index: 60;
    background: transparent;
    border: none;
    padding: 6px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    margin-right: 8px;
    position: relative;
  }
  
  .navbar-right {
    position: static;
    transform: none;
    gap: 0.75rem;
    display: flex;
    align-items: center;
  }
  
  .navbar-right .btn-secondary {
    display: none !important;
  }

  .hamburger-menu span {
    background-color: var(--text-dark) !important;
  }
  
  .logo-text-main {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }
  
  .nav-cart {
    order: 1;
  }
  
  .hero {
    margin-top: 64px;
  }
  
  .hero-inner {
    padding: 2.5rem 1.25rem;
    gap: 2rem;
    min-height: auto;
  }
  
  .hero-photo {
    min-height: 280px;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.4rem);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  
  .hero-bottom-strip {
    padding: 2.5rem 0;
  }
  
  .hero-bottom-inner {
    padding: 0 1.5rem;
    gap: 1.5rem;
  }
  
  .info-card {
    padding: 1.75rem;
  }
  
  .hero-bottom-strip2 {
    padding: 60px 0;
  }
  
  .hero-bottom-inner {
    padding: 0 1.5rem;
    gap: 1.5rem;
  }
  
  .info-card {
    padding: 1.75rem;
  }
  
  .main-section {
    padding: 2rem 1rem;
    margin: 3rem auto;
  }
  
  .section-title-large {
    font-size: 2rem;
  }
  
  .section-sub-large {
    font-size: 1rem;
  }
  
  .how-section {
    padding: 4rem 0;
    margin: 4rem 0;
  }
  
  .how-container {
    padding: 0 1rem;
  }
  
  .how-steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .how-step-card {
    padding: 2.5rem 1.5rem;
  }
  
  .how-step-number {
    font-size: 2rem;
    top: 1.5rem;
    right: 1.5rem;
  }
  
  .how-step-icon-wrapper {
    width: 110px;
    height: 110px;
    margin-bottom: 1.5rem;
  }
  
  .how-step-title {
    font-size: 1.5rem;
  }
  
  .how-extra-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .tips-section {
    padding: 4rem 0;
    margin: 4rem 0;
  }
  
  .tips-container {
    padding: 0 1rem;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .tip-card {
    padding: 2rem 1.5rem;
  }
  
  .tip-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  
  .tip-icon-wrapper svg {
    width: 26px;
    height: 26px;
  }
  
  .tip-title {
    font-size: 1.25rem;
  }
  
  .tips-banner {
    grid-template-columns: 1fr;
    padding: 2.5rem 2rem;
    gap: 2rem;
  }
  
  .tips-banner-content h3 {
    font-size: 1.5rem;
  }
  
  .tips-banner-content p {
    font-size: 1rem;
  }
  
  .tips-banner-image {
    min-height: 200px;
    order: -1;
  }
  
  .tips-tropical-section {
    margin: 4rem auto;
    padding: 0 1rem;
  }
  
  .tips-tropical-card {
    padding: 2rem;
  }
  
  .philosophy-section {
    margin: 2rem 0;
    padding: 2rem 1rem;
  }

  .philosophy-badge {
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
  }
  
  .philosophy-title-main {
    font-size: 1.8rem;
  }

  .philosophy-title-sub {
    font-size: 1rem;
  }

  .philosophy-text p {
    font-size: 0.95rem;
  }
  
  .tropical-separator {
    margin: 3rem auto;
  }
  
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .filter-form {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .product-card-modern {
    padding: 14px;
  }
  
  .product-name {
    font-size: 1.1rem;
  }

  .product-tag {
    padding: 4px 10px;
    font-size: 0.7rem;
  }

  .product-delivery-badge {
    padding: 5px 10px;
    font-size: 0.65rem;
  }
  
  .product-price-tag {
    font-size: 1rem;
    padding: 6px 12px;
  }
  
  .how-section {
    margin: 3rem auto 1rem;
  }
  
  .section-title-large {
    font-size: 1.8rem;
  }
  
  .how-step-text h3 {
    font-size: 1.3rem;
  }
  
  .how-step-text p {
    font-size: 0.95rem;
  }
  
  .filosofia-title {
    font-size: 2rem;
  }
  
  .filosofia-text p {
    font-size: 1rem;
  }
  
  .social-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .social-btn {
    width: 100%;
    justify-content: center;
  }
  
  .tip-item h3 {
    font-size: 1rem;
  }
  
  .tip-item p {
    font-size: 0.9rem;
  }
  
  .how-steps {
    flex-direction: column;
    gap: 35px;
  }
  
  .how-step-item {
    max-width: 100%;
  }
  
  .featured-custom-section {
    margin: 3rem auto;
    padding: 2rem 1rem;
  }
  
  .featured-title {
    font-size: 1.6rem;
  }
  
  .floral-divider-inner {
    padding: 40px 15px;
  }
  
  .floral-left,
  .floral-right {
    width: 120px;
    opacity: 0.5;
  }
  
  .floral-divider-title {
    font-size: 2rem;
  }
  
  .floral-divider-navy {
    padding: 28px 0;
    margin: 40px 0 30px 0;
  }
  
  .flor-mini {
    width: 40px;
    opacity: 0.25;
  }
  
  .floral-divider-text h3 {
    font-size: 1.3rem;
  }
  
  .strip-flor {
    width: 60px;
    opacity: 0.25;
  }
  
  .modal-content {
    gap: 15px;
  }
}

/* Móviles medianos - 640px */
@media (max-width: 640px) {
  .btn-primary,
  .btn-secondary,
  .btn-ghost {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .product-card-modern {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .product-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .product-tag {
    padding: 3px 8px;
    font-size: 0.65rem;
  }

  .product-delivery-badge {
    padding: 4px 8px;
    font-size: 0.6rem;
    bottom: 8px;
    left: 8px;
  }

  .product-tags {
    gap: 6px;
  }
  
  .product-cta {
    align-self: flex-start;
  }
  
  .how-grid-illustrated {
    grid-template-columns: 1fr;
  }
  
  .social-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .social-btn {
    width: 100%;
  }
}

/* Móviles pequeños - 480px */
@media (max-width: 480px) {
  .logo-text-main {
    font-size: 0.7rem;
  }
  
  .navbar-inner {
    padding: 0.6rem 0.75rem;
  }
  
  .hero-inner {
    padding: 1.5rem 0.75rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-photo {
    min-height: 200px;
  }
  
  .hero-badge {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .how-title {
    font-size: 1.6rem;
  }
  
  .section-title-large {
    font-size: 1.5rem;
  }
  
  .how-img {
    width: 100px;
  }
  
  .filosofia-title {
    font-size: 1.8rem;
  }
  
  .tips-tropical-card {
    padding: 1.5rem;
  }
  
  .whatsapp-float {
    width: 52px;
    height: 52px;
  }
  
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
  
  /* Builder section mobile optimizations */
  .custom-builder-section {
    padding: 1.5rem 0.75rem;
  }
  
  .builder-hero-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  
  .builder-hero-subtitle {
    font-size: 0.875rem;
  }
  
  .builder-products-area {
    padding: 0.75rem;
    border-radius: 12px;
  }
  
  .builder-filter-bar {
    padding: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .category-section-header {
    margin-bottom: 1rem;
  }
  
  .builder-products-grid {
    gap: 0.5rem;
  }
  
  .btn-primary,
  .btn-ghost {
    font-size: 0.8rem;
    padding: 0.75rem 1.25rem;
  }

  .hero-bottom-strip {
    padding: 2rem 0;
  }

  .hero-bottom-inner {
    padding: 0 1rem;
    gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .info-card {
    padding: 1.5rem;
  }
  
  .info-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .info-card-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .info-card-title {
    font-size: 1.2rem;
  }
  
  .info-card-text {
    font-size: 0.95rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-social-links {
    justify-content: center;
  }
  
  .modal-box {
    width: 95%;
    padding: 15px;
  }
  
  .product-detail-wrapper {
    padding: 0 1rem;
    margin-top: 100px;
  }
  /* ============================= */
/*   DESKTOP (default)           */
/* ============================= */
.product-image-box {
    padding: 12px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1024px) {
    .product-image-box {
        padding: 16px;               /* un poco más de aire */
        border-radius: 14px;
    }
}

  
}

/* Móviles muy pequeños - 360px */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-kicker {
    font-size: 0.7rem;
  }
  
  .hero-bottom-copy {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
}
  /* ===============================
   SEPARADOR TROPICAL
   =============================== */

.tropical-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 5rem auto;
  max-width: 800px;
  padding: 0 2rem;
}

.tropical-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
}

.tropical-icon {
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --- SEPARADOR FLORAL NAVY --- */
.floral-divider-navy {
    position: relative;
    width: 100%;
    background: var(--navy-blue); /* azul marino del hero strip */
    padding: 35px 0; /* separador delgado */
    margin: 60px 0 40px 0;
    border-radius: 6px;
    overflow: hidden;
}

/* Texto (opcional) */
.floral-divider-text {
    text-align: center;
    position: relative;
    z-index: 3;
}

.floral-divider-text h3 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Mini flores */
.flor-mini {
    position: absolute;
    width: 55px;
    opacity: 0.35;
    filter: drop-shadow(0px 3px 5px rgba(0,0,0,0.3));
    z-index: 2;
}

/* Distribución estética */
.flor-1 { top: 8px; left: 10%; transform: rotate(-12deg); }
.flor-2 { top: 25px; left: 30%; transform: rotate(6deg); }
.flor-3 { top: 10px; right: 25%; transform: rotate(-6deg); }
.flor-4 { top: 22px; right: 8%; transform: rotate(10deg); }

/* MODAL DETALLE PRODUCTO */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-box {
    background: #fff;
    width: 90%;
    max-width: 720px;
    padding: 22px;
    border-radius: 22px;
    box-shadow: 0 22px 60px rgba(0,0,0,0.25);
    position: relative;
    animation: popUp 0.25s ease;
}

@keyframes popUp {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1.1rem;
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.modal-image-wrapper img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e91e63;
    margin: 8px 0;
}

.modal-actions {
    margin-top: 20px;
    display: grid;
    gap: 10px;
}

@media(max-width: 680px) {
  .modal-content {
    grid-template-columns: 1fr;
  }
  
  .modal-box {
    padding: 18px;
  }
  
  .modal-image-wrapper img {
    max-height: 300px;
  }
}

/* ---------------------------------------- */
/* BOTÓN PDF (Naranja iluminado)            */
/* ---------------------------------------- */
.btn-pdf-glow {
    width: 100%;
    padding: 14px 22px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 14px;
    border: none;
    cursor: pointer;

    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    color: white;

    box-shadow:
        0 0 10px rgba(255, 140, 0, 0.6),
        0 0 20px rgba(255, 140, 0, 0.4),
        0 0 40px rgba(255, 140, 0, 0.3);

    transition: all .25s ease-in-out;
}

.btn-pdf-glow:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 15px rgba(255, 140, 0, 0.8),
        0 0 30px rgba(255, 140, 0, 0.6),
        0 0 50px rgba(255, 140, 0, 0.4);
}

.btn-pdf-glow:active {
    transform: scale(.97);
}


/* ---------------------------------------- */
/* BOTÓN WHATSAPP (verde iluminado)         */
/* ---------------------------------------- */
.btn-wha-glow {
    width: 100%;
    padding: 14px 22px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 14px;
    border: none;
    cursor: pointer;

    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal));
    color: white;

    box-shadow:
        0 0 10px rgba(26, 141, 68, 0.6),
        0 0 20px rgba(17, 122, 139, 0.4),
        0 0 40px rgba(17, 122, 139, 0.3);

    transition: all .25s ease-in-out;
}

.btn-wha-glow:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 15px rgba(29, 167, 80, 0.9),
        0 0 30px rgba(17, 122, 139, 0.7),
        0 0 55px rgba(17, 122, 139, 0.55);
}

.btn-wha-glow:active {
    transform: scale(.97);
}
/* ======== DETALLE DE PRODUCTO – IMAGEN GRANDE ======== */

.product-detail-wrapper {
    max-width: 1100px;
    margin: 140px auto 60px;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2.5rem;
}

.product-image-box {
    background: #ffffff;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 22px 55px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ============================================
   BOTÓN "VER" – Glass Premium
=============================================== */
.btn-view {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 12px;

    font-size: 0.85rem;
    font-weight: 600;
    color: #005F6B;

    transition: all .25s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* HOVER (desktop) */
.btn-view:hover {
    background: rgba(255, 255, 255, 0.65);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* ----------- */
/* RESPONSIVE  */
/* ----------- */

/* Celulares pequeños */
@media (max-width: 480px) {
    .btn-view {
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 14px;
        width: 100%; /* Botón ancho en móvil */
        text-align: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }
}

/* Tablets */
@media (max-width: 768px) {
    .btn-view {
        padding: 12px 20px;
        font-size: 0.95rem;
        border-radius: 14px;
    }
}

/* ============================================
   BOTÓN "AGREGAR" – Glow Tropical
=============================================== */
.btn-add {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-teal));
    border-radius: 12px;
    border: none;

    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: white;

    cursor: pointer;
    transition: all .25s ease;

    box-shadow: 
        0 4px 10px rgba(6, 71, 114, 0.97),
        0 0 14px rgba(255, 15, 134, 0.25);
}

.btn-add:hover {
    transform: translateY(-3px);
    box-shadow:
        0 6px 18px rgba(255, 15, 134, 0.45),
        0 0 22px rgba(247, 112, 31, 0.45);
}

.btn-add:active {
    transform: scale(0.96);
}





/* Disable hover movement for builder cards */
.builder-product-card:hover {
    transform: none !important;
}

/* Re-enable pointer events for the add button */
.builder-product-card .add-to-cart {
    pointer-events: auto;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

/* ============================================
   CART ITEM - VERTICAL CARD DESIGN
   ============================================ */

/* Cart item container - card style */
.cart-item {
    background: #fef5f0;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.cart-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Header: name + remove button */
.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.cart-item-name {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    flex: 1;
    padding-right: 0.75rem;
}

.cart-item-remove {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    line-height: 1;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
    transform: scale(1.05);
}

.cart-item-remove:active {
    transform: scale(0.95);
}

/* Controls row: price × quantity */
.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid #f3f4f6;
}

.cart-item-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-pink);
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.cart-multiply {
    font-size: 0.9rem;
    font-weight: 600;
    color: #9ca3af;
}

/* Quantity control container */
.qty-control {
    display: inline-flex;
    align-items: center;
    background: #f9fafb;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    overflow: visible;
    padding: 3px;
    transition: all 0.2s ease;
}

.qty-control:hover {
    border-color: rgba(233, 30, 99, 0.3);
    background: #ffffff;
}

/* Quantity buttons */
.qty-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    user-select: none;
    -webkit-user-select: none;
    line-height: 1;
    box-sizing: border-box;
    border-radius: 6px;
}

.qty-btn:hover {
    background: rgba(233, 30, 99, 0.1);
    color: var(--primary-pink);
}

.qty-btn:active {
    background: rgba(233, 30, 99, 0.2);
    transform: scale(0.95);
}

.qty-minus:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: transparent;
}

.qty-minus:disabled:hover {
    background: transparent;
    color: #6b7280;
    transform: none;
}

/* Quantity input */
.cart-item-qty-input {
    width: 44px;
    height: 32px;
    min-width: 44px;
    padding: 0 6px;
    margin: 0 3px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    background: transparent;
    transition: all 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.cart-item-qty-input:hover {
    background: #ffffff;
    border-radius: 6px;
}

.cart-item-qty-input:focus {
    outline: none;
    background: #ffffff;
    border-radius: 6px;
}

/* Hide native spinner buttons */
.cart-item-qty-input::-webkit-inner-spin-button,
.cart-item-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.cart-item-qty-input {
    -moz-appearance: textfield;
    appearance: textfield;
}

.cart-item-qty-input::-moz-inner-spin-button,
.cart-item-qty-input::-moz-outer-spin-button {
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .cart-item {
        padding: 0.875rem;
    }
    
    .cart-item-name {
        font-size: 0.9rem;
    }
    
    .cart-item-price {
        font-size: 1rem;
    }
    
    .qty-control {
        padding: 1px;
    }
    
    .qty-btn {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 0.95rem;
    }
    
    .cart-item-qty-input {
        width: 36px;
        height: 26px;
        min-width: 36px;
        font-size: 0.9rem;
    }
    
    /* Cart sidebar adjustments */
    .cart-sticky {
        padding: 1.25rem;
        border-radius: 16px;
    }
    
    .cart-title {
        font-size: 1.2rem;
    }
    
    .cart-subtitle {
        font-size: 0.8rem;
    }
    
    .cart-items-list {
        max-height: 300px;
    }
    
    .cart-summary-box {
        padding: 1rem;
    }
    
    .cart-total-amount {
        font-size: 1.5rem;
    }
    
    .btn-cart-action {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
}
