/* ==========================================
   LIMA LIMÓN — BOUTIQUE INFANTIL
   style.css  (versión completa corregida)
   ========================================== */

/* ---- CSS Variables ---- */
:root {
  --amarillo:       #F5D76E;
  --amarillo-light: #FAF0C0;
  --azul-pastel:    #C8F2F0;
  --verde-oscuro:   #47bfa5;
  --verde-medio:    #8cbfd4;
  --verde-light:    #bfe5db;
  --blanco:         #FFFFFF;
  --crema:          #FFFDF5;
  --texto:          #3A3A3A;
  --texto-light:    #7A7A7A;
  --turquesa:       #4ECDC4;

  --font-display: 'Pacifico', cursive;
  --font-body:    'Nunito', sans-serif;
  --font-serif:   'Playfair Display', serif;

  --radius:    16px;
  --radius-lg: 28px;
  --shadow:    0 4px 24px rgba(106,149,31,.10);
  --shadow-md: 0 8px 40px rgba(106,149,31,.15);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--texto);
  background: var(--crema);
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--amarillo-light); }
::-webkit-scrollbar-thumb { background: var(--verde-oscuro); border-radius: 4px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .3px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--verde-oscuro);
  color: #fff;
}
.btn-primary:hover {
  background: #38a88e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(71,191,165,.35);
}
.btn-outline {
  border-color: var(--verde-oscuro);
  color: var(--verde-oscuro);
  background: transparent;
}
.btn-outline:hover {
  background: var(--verde-oscuro);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--verde-oscuro);
}
.btn-white:hover {
  background: var(--amarillo);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  margin-top: 12px;
}
.btn-whatsapp:hover {
  background: #1dbb5a;
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ---- Section commons ---- */
.section { padding: 90px 5vw; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--verde-oscuro);
  background: var(--verde-light);
  display: inline-block;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.2;
  color: var(--texto);
}
.section-header h2 em {
  font-style: normal;
  color: var(--verde-oscuro);
  font-family: var(--font-display);
  font-size: .9em;
}
.section-desc {
  margin-top: 12px;
  color: var(--texto-light);
  font-size: 1.05rem;
}

/* ==========================================
   NAVBAR
   ========================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,253,245,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
#navbar.scrolled {
  border-bottom-color: var(--amarillo);
  box-shadow: 0 4px 20px rgba(106,149,31,.12);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.logo-lima  { font-family: var(--font-display); font-size: 1.5rem; color: var(--texto); }
.logo-limon { font-family: var(--font-display); font-size: 1.5rem; color: var(--verde-oscuro); }
.logo-sub {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--texto-light);
  display: block;
  width: 100%;
  margin-top: -4px;
}

/* NAV DESKTOP */
nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
nav ul li a {
  padding: 7px 11px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .87rem;
  color: var(--texto);
  transition: var(--transition);
  white-space: nowrap;
}
nav ul li a:hover {
  background: var(--verde-light);
  color: var(--verde-oscuro);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--texto);
  transition: var(--transition);
}
.icon-btn:hover { background: var(--verde-light); color: var(--verde-oscuro); }
#menu-toggle { display: none; font-size: 1.2rem; }

/* ---- NAV MÓVIL ---- */
@media (max-width: 960px) {
  #menu-toggle { display: flex; }

  nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--crema);
    border-bottom: 2px solid var(--amarillo);
    padding: 16px 5vw 24px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s ease, opacity .3s ease;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
  }
  nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  nav ul li a {
    display: block;
    padding: 11px 16px;
    font-size: 1rem;
    border-radius: 12px;
  }
  nav ul li a:hover {
    background: var(--verde-light);
  }
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  padding: 100px 5vw 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--crema) 0%, var(--amarillo-light) 50%, var(--azul-pastel) 100%);
}
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .55;
}
.shape-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--amarillo) 0%, transparent 70%);
  top: -80px; right: 20%;
  animation: float1 8s ease-in-out infinite;
}
.shape-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--azul-pastel) 0%, transparent 70%);
  bottom: 80px; left: 10%;
  animation: float2 10s ease-in-out infinite;
}
.shape-3 {
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--verde-medio) 0%, transparent 70%);
  top: 40%; right: 5%;
  animation: float1 12s ease-in-out infinite reverse;
}
.shape-4 {
  width: 80px; height: 80px;
  background: var(--amarillo);
  top: 20%; left: 30%;
  animation: float2 7s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(20px) rotate(-8deg); }
}

.hero-content {
  flex: 1;
  max-width: 560px;
  z-index: 2;
  animation: slideUp .9s ease both;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-block;
  background: var(--amarillo);
  padding: 5px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 20px;
  color: #5A4A00;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--texto);
}
.hero-content h1 em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: .85em;
  color: var(--verde-oscuro);
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--texto-light);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image {
  flex: 1;
  max-width: 460px;
  z-index: 2;
  animation: slideUp .9s .2s ease both;
}
.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-md);
}
.hero-img-wrapper img { border-radius: var(--radius-lg); }
.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  font-weight: 700;
}
.hero-badge p { font-size: .9rem; color: var(--verde-oscuro); }
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--texto-light);
  z-index: 2;
}
.scroll-line {
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, var(--verde-oscuro), transparent);
  animation: scrollAnim 1.5s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.5); opacity: .5; }
}

@media (max-width: 860px) {
  .hero {
    flex-direction: column;
    padding-top: 88px;
    gap: 28px;
    min-height: auto;
    padding-bottom: 48px;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-image { max-width: 100%; width: 100%; }
  .hero-img-wrapper { height: 260px; }
  .hero-scroll { display: none; }
  .shape-1, .shape-3, .shape-4 { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 80px 5vw 36px; gap: 24px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-img-wrapper { height: 220px; }
  .hero-badge { bottom: 12px; left: 12px; padding: 8px 14px; }
  .hero-badge p { font-size: .82rem; }
}

/* ==========================================
   FEATURES BAR — corregida para responsive
   ========================================== */
.features-bar { background: var(--verde-oscuro); padding: 24px 5vw; }
.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.feature-item i { font-size: 1.4rem; color: var(--amarillo); flex-shrink: 0; }
.feature-item strong { display: block; font-size: .88rem; font-weight: 700; line-height: 1.2; }
.feature-item span  { font-size: .76rem; opacity: .85; line-height: 1.3; }

@media (max-width: 900px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 500px) {
  .features-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .feature-item i { font-size: 1.2rem; }
  .feature-item strong { font-size: .84rem; }
  .feature-item span { font-size: .74rem; }
}

/* ==========================================
   CATEGORÍAS
   ========================================== */
.categorias { background: var(--crema); }
.categorias-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 14px;
  max-width: 1300px;
  margin: 0 auto;
}
.cat-big { grid-column: span 2; grid-row: span 2; }

/* ========== CAMBIO AÑADIDO ========== */
.cat-deco-wide { grid-column: span 2; }
/* ==================================== */

.cat-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.cat-card img { transition: transform .5s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,60,10,.72) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  gap: 4px;
  transition: var(--transition);
}
.cat-overlay h3 { color: #fff; font-size: 1.3rem; font-weight: 800; }
.cat-overlay span { color: rgba(255,255,255,.82); font-size: .86rem; margin-bottom: 10px; }
.cat-overlay .btn { opacity: 0; transform: translateY(10px); transition: var(--transition); }
.cat-card:hover .btn { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .categorias-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 12px;
  }
  .cat-big { grid-column: span 2; grid-row: span 1; height: 220px; }
  .cat-deco-wide { grid-column: span 2; }
  .cat-card { height: 180px; }
  .cat-overlay .btn { opacity: 1; transform: translateY(0); }
}
@media (max-width: 520px) {
  .categorias-grid { grid-template-columns: 1fr; gap: 10px; }
  .cat-big { grid-column: span 1; height: 190px; }
  .cat-deco-wide { grid-column: span 1; }
  .cat-card { height: 160px; }
}

/* ==========================================
   CATÁLOGO
   ========================================== */
.catalogo { background: linear-gradient(180deg, var(--crema) 0%, var(--azul-pastel) 100%); }

.catalogo-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.cat-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .93rem;
  color: var(--texto);
  background: #fff;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.cat-tab i { font-size: 1rem; }
.cat-tab:hover { border-color: var(--azul-pastel); color: #3AADA8; transform: translateY(-2px); }
.cat-tab.active {
  background: #3AADA8;
  color: #fff;
  border-color: #3AADA8;
  box-shadow: 0 6px 20px rgba(58,173,168,.3);
}

@media (max-width: 560px) {
  .cat-tab { padding: 10px 16px; font-size: .83rem; }
  .cat-tab i { display: none; }
}

.catalogo-panel { display: none; }
.catalogo-panel.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

/* POR GÉNERO */
.catalogo-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1300px;
  margin: 0 auto;
}
.catalogo-col {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.catalogo-col:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.col-header { padding: 26px 18px 18px; text-align: center; }
.col-emoji { font-size: 2.2rem; display: block; margin-bottom: 8px; }
.col-header h3 { font-size: 1.25rem; font-weight: 800; color: #fff; }
.col-header p  { font-size: .78rem; color: rgba(255,255,255,.82); margin-top: 2px; }

.col-nina { background: linear-gradient(135deg, #FFB3C6 0%, #FF8FAB 100%); }
.col-nino { background: linear-gradient(135deg, var(--azul-pastel) 0%, #7DD8D4 100%); }
.col-bebe { background: linear-gradient(135deg, var(--amarillo) 0%, #F5C430 100%); }
.col-deco { background: linear-gradient(135deg, var(--verde-medio) 0%, var(--verde-oscuro) 100%); }

.col-subcats {
  padding: 14px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.col-subcats li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: .86rem;
  color: var(--texto);
  font-weight: 600;
  transition: var(--transition);
}
.col-subcats li a i { font-size: .65rem; color: var(--texto-light); transition: var(--transition); }
.col-subcats li a:hover { background: var(--verde-light); color: var(--verde-oscuro); padding-left: 16px; }
.col-subcats li a:hover i { color: var(--verde-oscuro); }

.btn-nina-cat, .btn-nino-cat, .btn-bebe-cat, .btn-deco-cat {
  margin: 0 16px 18px;
  justify-content: center;
  font-size: .83rem;
  padding: 10px 16px;
}
.btn-nina-cat { background: #FF8FAB; color: #fff; }
.btn-nina-cat:hover { background: #ff6b91; transform: translateY(-2px); }
.btn-nino-cat { background: #3AADA8; color: #fff; }
.btn-nino-cat:hover { background: #2e9490; transform: translateY(-2px); }
.btn-bebe-cat { background: var(--amarillo); color: #5A4A00; }
.btn-bebe-cat:hover { background: #e8c820; transform: translateY(-2px); }
.btn-deco-cat { background: var(--verde-oscuro); color: #fff; }
.btn-deco-cat:hover { background: #38a88e; transform: translateY(-2px); }

@media (max-width: 1080px) { .catalogo-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .catalogo-cols { grid-template-columns: 1fr; } }

/* POR TEMPORADA */
.temporadas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1300px;
  margin: 0 auto;
}
.temp-card {
  border-radius: var(--radius-lg);
  padding: 30px 22px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.temp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.temp-primavera { background: linear-gradient(160deg, #FFE8F4 0%, #FFC8E4 100%); }
.temp-verano    { background: linear-gradient(160deg, var(--amarillo-light) 0%, var(--amarillo) 100%); }
.temp-otono     { background: linear-gradient(160deg, #FFE8D0 0%, #FFCC99 100%); }
.temp-invierno  { background: linear-gradient(160deg, var(--azul-pastel) 0%, #A8E6E4 100%); }

.temp-icon { font-size: 2.8rem; line-height: 1; }
.temp-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--texto); }
.temp-card > p { font-size: .86rem; color: var(--texto-light); line-height: 1.6; }
.temp-card ul { list-style: none; text-align: left; width: 100%; display: flex; flex-direction: column; gap: 4px; margin: 4px 0; }
.temp-card ul li { font-size: .84rem; color: var(--texto); padding: 4px 8px; background: rgba(255,255,255,.5); border-radius: 8px; }
.temp-card ul li::before { content: '•  '; color: var(--verde-oscuro); font-weight: 900; }
.btn-temp {
  background: rgba(255,255,255,.75);
  color: var(--texto);
  border: 2px solid rgba(255,255,255,.9);
  font-weight: 700;
  font-size: .84rem;
  padding: 9px 22px;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.btn-temp:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.12); }

@media (max-width: 960px)  { .temporadas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .temporadas-grid { grid-template-columns: 1fr; } }

/* POR EDAD */
.edades-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: 1300px;
  margin: 0 auto;
}
.edad-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 14px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.edad-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.edad-card:nth-child(1) { border-top: 4px solid #FFB3C6; }
.edad-card:nth-child(2) { border-top: 4px solid var(--amarillo); }
.edad-card:nth-child(3) { border-top: 4px solid var(--azul-pastel); }
.edad-card:nth-child(4) { border-top: 4px solid var(--verde-medio); }
.edad-card:nth-child(5) { border-top: 4px solid #FFCC99; }
.edad-card:nth-child(6) { border-top: 4px solid var(--verde-oscuro); }

.edad-num { font-size: 1.9rem; font-weight: 800; color: var(--verde-oscuro); line-height: 1; }
.edad-label { font-size: .76rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--texto-light); margin-top: -4px; }
.edad-card > p { font-size: .86rem; font-weight: 700; color: var(--texto); }
.edad-card ul { list-style: none; text-align: left; width: 100%; display: flex; flex-direction: column; gap: 3px; flex: 1; }
.edad-card ul li { font-size: .76rem; color: var(--texto-light); padding: 3px 0; border-bottom: 1px dashed #E8E8E8; }
.edad-card ul li::before { content: '· '; color: var(--verde-oscuro); font-weight: 900; }
.edad-card .btn { padding: 8px 18px; font-size: .8rem; margin-top: 4px; }

@media (max-width: 1100px) { .edades-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .edades-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px)  { .edades-grid { grid-template-columns: 1fr; } }

/* ==========================================
   NOVEDADES / PRODUCTOS
   ========================================== */
.novedades { background: var(--amarillo-light); }

.productos-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .86rem;
  color: var(--texto-light);
  background: #fff;
  border: 2px solid transparent;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--verde-oscuro);
  color: #fff;
  border-color: var(--verde-oscuro);
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
  max-width: 1300px;
  margin: 0 auto;
}

.producto-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.producto-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
/* Cards ocultas por el "Ver más" */
.producto-card.card-hidden {
  display: none !important;
}

.prod-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.prod-img img { transition: transform .5s ease; }
.producto-card:hover .prod-img img { transform: scale(1.07); }

.prod-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ccc;
  transition: var(--transition);
  font-size: .9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.prod-wishlist.liked { color: #FF6B8A; }
.prod-wishlist:hover { color: #FF6B8A; transform: scale(1.1); }

.prod-info { padding: 15px 17px 18px; }
.prod-cat {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--verde-oscuro);
  margin-bottom: 4px;
}
.prod-info h4 { font-size: .97rem; font-weight: 700; margin-bottom: 6px; color: var(--texto); }
.prod-desc { font-size: .88rem; color: var(--texto-light); line-height: 1.4; margin-bottom: 5px; }
.prod-extra { font-size: .76rem; color: var(--texto-light); margin-bottom: 9px; opacity: .85; }
.prod-price-row { display: flex; align-items: center; justify-content: space-between; }
.prod-price { font-size: 1.12rem; font-weight: 800; color: var(--verde-oscuro); }

/* --- BOTÓN VER MÁS --- */
.ver-mas-wrap {
  text-align: center;
  margin-top: 28px;
  grid-column: 1 / -1;
}
.btn-ver-mas {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  background: var(--verde-oscuro);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(71,191,165,.3);
}
.btn-ver-mas:hover {
  background: #38a88e;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(71,191,165,.4);
}
.btn-ver-mas i { transition: transform .3s; }
.btn-ver-mas.abierto i { transform: rotate(180deg); }

@media (max-width: 640px) {
  .productos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .prod-img { height: 170px; }
  .prod-info { padding: 10px 12px 14px; }
  .prod-info h4 { font-size: .88rem; }
  .prod-desc { display: none; }
}
@media (max-width: 380px) {
  .productos-grid { grid-template-columns: 1fr; }
  .prod-img { height: 210px; }
  .prod-desc { display: block; }
}

/* ==========================================
   FAVORITOS
   ========================================== */
#favoritos { background: var(--crema); }
#favoritos.favoritos-vacio { display: none; }

/* ==========================================
   PROMO BANNER
   ========================================== */
.promo-banner {
  background: linear-gradient(135deg, var(--verde-oscuro) 0%, #acd170 100%);
  padding: 70px 5vw;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.promo-content { position: relative; z-index: 2; }
.promo-tag {
  display: inline-block;
  background: rgba(255,255,255,.2);
  padding: 4px 18px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.promo-content h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}
.promo-content h2 em {
  font-style: normal;
  font-family: var(--font-display);
  color: var(--amarillo);
  font-size: .85em;
}
.promo-content p { font-size: 1.05rem; margin-bottom: 28px; opacity: .9; }
.promo-content strong { background: var(--amarillo); color: #5A4A00; padding: 2px 10px; border-radius: 6px; }
.promo-shapes { position: absolute; inset: 0; pointer-events: none; }
.pshape { position: absolute; font-size: 3rem; opacity: .22; animation: float1 6s ease-in-out infinite; }
.p1 { top: 10%; left: 5%;  animation-delay: 0s; }
.p2 { top: 60%; left: 8%;  animation-delay: 1.5s; }
.p3 { top: 15%; right: 6%; animation-delay: .8s; }
.p4 { top: 65%; right: 5%; animation-delay: 2s; }

@media (max-width: 520px) {
  .promo-banner { padding: 48px 5vw; }
  .pshape { font-size: 1.8rem; }
}

/* ==========================================
   SOBRE NOSOTROS
   ========================================== */
.nosotros {
  background: var(--crema);
  display: flex;
  gap: 56px;
  align-items: center;
}
.nosotros-img {
  flex: 1;
  position: relative;
  max-width: 480px;
}
.nosotros-img img {
  border-radius: var(--radius-lg);
  height: 500px;
  box-shadow: var(--shadow-md);
}
.nosotros-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--amarillo);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 3px solid var(--azul-pastel);
}
.badge-num { font-size: 2.6rem; font-weight: 800; color: var(--texto); display: block; line-height: 1; }
.badge-txt { font-size: .86rem; font-weight: 600; color: var(--texto); }
.nosotros-content { flex: 1; }
.nosotros-content h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin: 12px 0 18px;
  line-height: 1.25;
}
.nosotros-content h2 em {
  font-style: normal;
  font-family: var(--font-display);
  color: var(--verde-oscuro);
  font-size: .85em;
}
.nosotros-content p { color: var(--texto-light); line-height: 1.75; margin-bottom: 14px; font-size: 1rem; }
.nosotros-values { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.value-item { display: flex; align-items: flex-start; gap: 14px; }
.value-icon {
  width: 46px; height: 46px;
  background: var(--verde-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.value-item strong { display: block; font-weight: 700; margin-bottom: 2px; }
.value-item p { font-size: .86rem; color: var(--texto-light); }

@media (max-width: 860px) {
  .nosotros { flex-direction: column; gap: 36px; }
  .nosotros-img { max-width: 100%; width: 100%; }
  .nosotros-img img { height: 280px; }
  .nosotros-badge { bottom: -10px; right: 10px; }
}
@media (max-width: 480px) {
  .nosotros-img img { height: 230px; }
  .nosotros-badge { padding: 12px 16px; bottom: -8px; right: 8px; }
  .badge-num { font-size: 2rem; }
}

/* ==========================================
   GALERÍA
   ========================================== */
.galeria { background: linear-gradient(160deg, var(--azul-pastel) 0%, #daf5f4 100%); }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }
.gal-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gal-item img { transition: transform .5s ease; }
.gal-item:hover img { transform: scale(1.07); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(71,191,165,.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: #fff;
  font-size: 1.8rem;
}
.gal-item:hover .gal-overlay { opacity: 1; }

@media (max-width: 768px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gal-tall { grid-row: span 1; }
  .gal-wide { grid-column: span 1; }
}
@media (max-width: 480px) {
  .galeria-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
}

/* ==========================================
   TESTIMONIOS SLIDER — rediseñado completo
   ========================================== */
.testimonios { background: var(--verde-light); }

.testimonios-slider {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
}

.testi-track {
  display: flex;
  gap: 22px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: calc(50% - 11px);
  max-width: calc(50% - 11px);
  box-sizing: border-box;
}

.testi-stars {
  font-size: .95rem;
  margin-bottom: 10px;
  color: var(--amarillo);
  letter-spacing: 2px;
}
.testi-card > p {
  font-size: .95rem;
  color: var(--texto);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--verde-light);
  padding-top: 16px;
  margin-top: auto;
}
.testi-avatar {
  width: 42px; height: 42px;
  background: var(--verde-oscuro);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-weight: 700; font-size: .93rem; color: var(--texto); }
.testi-author span  { font-size: .78rem; color: var(--texto-light); }

/* Controles */
.testi-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.testi-nav > button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  color: var(--verde-oscuro);
  transition: var(--transition);
  font-size: .95rem;
  flex-shrink: 0;
}
.testi-nav > button:hover { background: var(--verde-oscuro); color: #fff; }
.testi-dots { display: flex; gap: 8px; align-items: center; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--verde-medio);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  padding: 0;
}
.testi-dot.active { background: var(--verde-oscuro); width: 22px; border-radius: 4px; }

/* Móvil: 1 card visible */
@media (max-width: 680px) {
  .testi-card {
    min-width: 100%;
    max-width: 100%;
    padding: 22px 18px;
  }
  .testi-card > p { font-size: .9rem; }
}

/* ==========================================
   UBICACIÓN
   ========================================== */
.ubicacion { background: var(--crema); }
.ubicacion-wrapper {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.ubicacion-info {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}
.info-card i { font-size: 1.2rem; color: var(--verde-oscuro); margin-top: 2px; flex-shrink: 0; }
.info-card strong { display: block; font-weight: 700; margin-bottom: 3px; }
.info-card p { font-size: .86rem; color: var(--texto-light); line-height: 1.6; }
.mapa-wrapper {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
}
.mapa-wrapper iframe { display: block; width: 100%; height: 400px; }

@media (max-width: 860px) {
  .ubicacion-wrapper { flex-direction: column; }
  .ubicacion-info { flex: none; width: 100%; }
  .mapa-wrapper { min-height: 280px; width: 100%; }
  .mapa-wrapper iframe { height: 280px; }
}

/* ==========================================
   CONTACTO — centrado en responsive
   ========================================== */
.contacto { background: var(--amarillo-light); }
.contacto-wrapper {
  display: flex;
  gap: 44px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-form {
  flex: 1;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: .86rem; margin-bottom: 7px; color: var(--texto); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border-radius: var(--radius);
  border: 2px solid #E0E0E0;
  font-size: .93rem;
  transition: var(--transition);
  background: var(--crema);
  color: var(--texto);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--verde-oscuro);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(71,191,165,.12);
}
.form-group input.error,
.form-group textarea.error { border-color: #FF6B8A; }
.field-error { display: block; color: #FF6B8A; font-size: .79rem; margin-top: 4px; min-height: 16px; }
.form-success {
  background: var(--verde-light);
  color: var(--verde-oscuro);
  border-radius: var(--radius);
  padding: 13px 17px;
  font-weight: 700;
  text-align: center;
  margin-top: 14px;
  font-size: .93rem;
}
.contacto-social {
  flex: 0 0 320px;
}
.contacto-social h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 7px; }
.contacto-social > p { color: var(--texto-light); margin-bottom: 22px; font-size: .93rem; }
.social-links { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 17px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  font-size: .86rem;
}
.social-link i { font-size: 1.5rem; width: 30px; text-align: center; }
.social-link strong { display: block; font-weight: 700; margin-bottom: 2px; }
.social-link span  { color: var(--texto-light); font-size: .78rem; }
.social-link:hover { transform: translateX(6px); }
.social-link.instagram i { color: #E1306C; }
.social-link.facebook  i { color: #1877F2; }

/* Responsive contacto — centrado limpio */
@media (max-width: 900px) {
  .contacto-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .contact-form {
    width: 100%;
    max-width: 600px;
    padding: 26px 20px;
  }
  .contacto-social {
    flex: none;
    width: 100%;
    max-width: 600px;
    text-align: center;
  }
  .contacto-social h3 { text-align: center; }
  .contacto-social > p { text-align: center; }
  .social-links {
    align-items: center;
  }
  .social-link {
    width: 100%;
    max-width: 400px;
    justify-content: flex-start;
  }
  .social-link:hover { transform: translateY(-2px); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 480px) {
  .contact-form { padding: 20px 14px; border-radius: var(--radius); }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #2A3A1A;
  color: rgba(255,255,255,.85);
}
.footer-top {
  max-width: 1300px;
  margin: 0 auto;
  padding: 56px 5vw 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  border-top: 4px solid var(--azul-pastel);
}
.footer-brand .logo .logo-lima  { color: #fff; }
.footer-brand .logo .logo-limon { color: var(--amarillo); }
.footer-brand p { margin-top: 12px; font-size: .88rem; line-height: 1.7; max-width: 280px; opacity: .75; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
  transition: var(--transition);
  font-size: .88rem;
}
.footer-social a:hover { background: var(--verde-oscuro); color: #fff; }
.footer-links h4 { font-size: .86rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--amarillo); margin-bottom: 14px; }
.footer-links ul li { margin-bottom: 9px; font-size: .86rem; opacity: .75; display: flex; align-items: flex-start; gap: 8px; }
.footer-links ul li i { color: var(--verde-medio); margin-top: 2px; }
.footer-links ul li a { transition: var(--transition); }
.footer-links ul li a:hover { opacity: 1; color: var(--amarillo); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .8rem;
  opacity: .6;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; padding: 36px 5vw 28px; }
  .footer-brand { grid-column: span 1; }
}

/* ==========================================
   BACK TO TOP
   ========================================== */
#back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--verde-oscuro);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
  font-size: 1rem;
}
#back-top.visible { opacity: 1; transform: translateY(0); }
#back-top:hover { background: #38a88e; transform: translateY(-3px); }

@media (max-width: 520px) {
  #back-top { bottom: 86px; right: 14px; width: 42px; height: 42px; }
}

/* ==========================================
   WHATSAPP FLOTANTE
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 900;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { background: #1dbb5a; transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

@media (max-width: 520px) {
  .whatsapp-float { bottom: 86px; left: 14px; width: 48px; height: 48px; font-size: 1.3rem; }
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
#lightbox-close {
  position: absolute;
  top: 18px; right: 22px;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  background: rgba(255,255,255,.18);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
#lightbox-close:hover { background: rgba(255,255,255,.32); }

/* ==========================================
   UTILITIES
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.producto-card.hidden { display: none !important; }
.prod-meta { font-size: .88rem; color: #666; margin: 4px 0; }

/* ==========================================
   SECCIÓN GENERAL — responsive padding
   ========================================== */
@media (max-width: 768px) {
  .section { padding: 56px 4vw; }
  .section-header { margin-bottom: 32px; }
}
@media (max-width: 480px) {
  .section { padding: 44px 5vw; }
}