/* =====================================================
   MAISON PASTEL — Café & Boutique
   Premium Pastelería Web · Santiago, Chile
   ===================================================== */

/* --- Variables de diseño --- */
:root {
  --cream:       #FDF6F0;
  --cream-mid:   #F5EBE0;
  --cream-deep:  #EDD9C8;
  --rose:        #F4A7B9;
  --rose-light:  #FADADD;
  --rose-dark:   #D9708A;
  --rose-deep:   #C4596E;
  --sky:         #B8E0F7;
  --sky-light:   #E0F2FB;
  --sky-dark:    #72BADF;
  --white:       #FFFFFF;
  --text-dark:   #2B1A1A;
  --text-mid:    #7A5A5A;
  --text-light:  #A88888;
  --green-wa:    #25D366;
  --green-wa-dk: #1DA852;

  --shadow-xs:   0 2px 8px  rgba(180, 90, 120, 0.08);
  --shadow-sm:   0 4px 20px rgba(180, 90, 120, 0.10);
  --shadow-md:   0 8px 32px rgba(180, 90, 120, 0.14);
  --shadow-lg:   0 20px 60px rgba(180, 90, 120, 0.22);

  --radius:      24px;
  --radius-sm:   14px;
  --radius-xs:   8px;
  --radius-pill: 50px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  all 0.35s var(--ease);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-w: 1200px;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.65;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul { list-style: none; }
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
address { font-style: normal; }

/* Scrollbar */
::-webkit-scrollbar         { width: 6px; }
::-webkit-scrollbar-track   { background: var(--cream); }
::-webkit-scrollbar-thumb   { background: var(--rose); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--rose-dark); }
::selection { background: var(--rose-light); color: var(--text-dark); }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196, 89, 110, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(196, 89, 110, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--rose-deep);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-white {
  background: var(--white);
  color: var(--rose-deep);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn-full {
  width: 100%;
  border-radius: var(--radius-sm);
  padding: 16px;
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
  padding: 0 20px;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose-deep);
  background: var(--rose-light);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 700;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* Light variant (for dark backgrounds) */
.section-header.light .section-label {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.section-header.light .section-title  { color: var(--white); }
.section-header.light .section-subtitle { color: rgba(255, 255, 255, 0.85); }

/* =====================================================
   CARD ANIMATIONS (Intersection Observer)
   ===================================================== */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(253, 246, 240, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 28px rgba(180, 90, 120, 0.10);
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-logo { display: flex; flex-direction: column; gap: 1px; }
.logo-main {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  line-height: 1;
  transition: var(--transition);
}
.navbar.scrolled .logo-main { color: var(--text-dark); text-shadow: none; }
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}
.navbar.scrolled .logo-sub { color: var(--text-light); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 9px 16px;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
.navbar.scrolled .nav-link { color: var(--text-mid); }
.navbar.scrolled .nav-link:hover {
  background: var(--rose-light);
  color: var(--rose-deep);
}
.nav-cta {
  padding: 10px 24px;
  background: var(--white);
  color: var(--rose-deep) !important;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 24px rgba(0, 0, 0, 0.18);
}
.navbar.scrolled .nav-cta {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
  color: var(--white) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xs);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle            { background: var(--rose-light); }
.navbar.scrolled .nav-toggle span       { background: var(--rose-deep); }
.nav-toggle.active span:nth-child(1)    { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2)    { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3)    { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -25% 0;
  background-image: url('https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(43, 26, 26, 0.60) 0%,
    rgba(196, 89, 110, 0.45) 45%,
    rgba(43, 26, 26, 0.65) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px 28px;
  max-width: 860px;
  animation: heroIn 1.2s var(--ease) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(44px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.8rem, 7.5vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  line-height: 1.08;
}
.hero-title em {
  font-style: italic;
  color: var(--rose-light);
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.22rem);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 300;
  margin-bottom: 44px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}
.scroll-arrow { font-size: 1.1rem; }

/* =====================================================
   STRIP DE ÍCONOS
   ===================================================== */
.strip {
  background: var(--white);
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(180, 90, 120, 0.07);
}
.strip-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 0;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.2px;
}
.strip-icon { font-size: 1.3rem; }
.strip-divider {
  width: 1px;
  height: 28px;
  background: var(--cream-deep);
  flex-shrink: 0;
}

/* =====================================================
   NUESTRAS DELICIAS — Products
   ===================================================== */
.products {
  padding: 100px 24px;
  background: var(--cream);
}
.products-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.08); }
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--rose-deep);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 12px rgba(196, 89, 110, 0.4);
}
.product-badge.popular {
  background: linear-gradient(135deg, #F4A738, #E06B38);
  box-shadow: 0 2px 12px rgba(224, 107, 56, 0.4);
}
.product-info { padding: 24px; }
.product-name {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.product-desc {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.68;
  margin-bottom: 20px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--rose-deep);
}
.product-btn {
  padding: 9px 22px;
  background: var(--rose-light);
  color: var(--rose-deep);
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  transition: var(--transition);
  border: 2px solid transparent;
}
.product-btn:hover {
  background: var(--rose-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196, 89, 110, 0.35);
}

/* =====================================================
   RINCÓN INSTAGRAMEABLE
   ===================================================== */
.instagram-section {
  position: relative;
  padding: 110px 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
}
.ig-parallax {
  position: absolute;
  inset: -25% 0;
  background-image: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.ig-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(196, 89, 110, 0.82) 0%,
    rgba(140, 80, 170, 0.72) 50%,
    rgba(80, 150, 200, 0.78) 100%
  );
  z-index: 1;
}
.ig-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 10px;
  margin: 44px 0 44px;
}
.ig-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.ig-item:hover img { transform: scale(1.1); }
.ig-tall  { grid-row: span 2; }
.ig-wide  { grid-column: span 2; }
.ig-hover {
  position: absolute;
  inset: 0;
  background: rgba(196, 89, 110, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  border-radius: var(--radius-sm);
}
.ig-hover span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.ig-item:hover .ig-hover { opacity: 1; }

/* =====================================================
   PEDIDOS PERSONALIZADOS
   ===================================================== */
.orders {
  padding: 100px 24px;
  background: var(--white);
}
.orders-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.orders-info .section-title { text-align: left; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.orders-info .section-label { display: inline-block; }
.orders-text {
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 24px;
}
.orders-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--rose-dark);
  border-left: 3px solid var(--rose);
  padding-left: 20px;
  margin-bottom: 36px;
  line-height: 1.5;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose-light);
  border-radius: var(--radius-sm);
}
.feature-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.feature-text p { font-size: 0.86rem; color: var(--text-mid); }

/* Form */
.form-wrap {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--cream-deep);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.select-wrap { position: relative; }
.select-wrap select {
  width: 100%;
  padding: 13px 42px 13px 18px;
  border: 2px solid var(--cream-deep);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  background: var(--white);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: var(--text-light);
  pointer-events: none;
}
.form-group input:focus,
.form-group textarea:focus,
.select-wrap select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(244, 167, 185, 0.18);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
}

/* Form success state */
.form-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 48px 20px;
}
.form-success:not([hidden]) { display: flex; }
.success-emoji { font-size: 4.5rem; }
.form-success h3 { font-size: 1.8rem; color: var(--text-dark); }
.form-success p  { font-size: 1rem; color: var(--text-mid); line-height: 1.6; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: #1E1010;
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 24px 0;
}
.footer-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.4fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1;
}
.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
}
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.72;
  max-width: 300px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  font-size: 1.35rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--rose-deep);
  transform: translateY(-3px);
}
.footer-contact h4,
.footer-nav h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-contact address p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  line-height: 1.65;
}
.footer-contact a { transition: color 0.25s; }
.footer-contact a:hover { color: var(--rose); }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: inline-block;
}
.footer-nav a:hover {
  color: var(--rose);
  padding-left: 6px;
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 0;
}
.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

/* =====================================================
   WHATSAPP FLOATING BUTTON
   ===================================================== */
.wa-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: var(--white);
  padding: 14px 22px 14px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.42);
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: waFloat 3s ease-in-out infinite;
}
.wa-btn:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 14px 42px rgba(37, 211, 102, 0.58);
  animation: none;
  background: var(--green-wa-dk);
}
.wa-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* =====================================================
   RESPONSIVE — Tablet 1024px
   ===================================================== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .orders-container { gap: 48px; }
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .ig-tall { grid-row: span 1; }
  .ig-wide { grid-column: span 1; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* =====================================================
   RESPONSIVE — Mobile 768px
   ===================================================== */
@media (max-width: 768px) {
  /* Navbar mobile */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(253, 246, 240, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
    gap: 2px;
    border-top: 1px solid var(--rose-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease), padding 0.3s;
    pointer-events: none;
  }
  .nav-menu.open {
    max-height: 420px;
    padding: 16px 20px 24px;
    pointer-events: all;
  }
  .nav-link {
    color: var(--text-mid) !important;
    padding: 12px 16px;
    border-radius: var(--radius-xs);
  }
  .nav-link:hover { background: var(--rose-light) !important; }
  .nav-cta {
    margin-top: 8px;
    text-align: center;
    padding: 14px;
    background: linear-gradient(135deg, var(--rose-deep), var(--rose)) !important;
    color: var(--white) !important;
    border-radius: var(--radius-sm) !important;
  }

  /* Hero */
  .hero-bg { background-attachment: scroll; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-subtitle br { display: none; }

  /* Products */
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Instagram */
  .instagram-section { min-height: auto; padding: 80px 20px; }
  .ig-parallax { background-attachment: scroll; }
  .ig-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 8px;
  }
  .ig-tall, .ig-wide {
    grid-row: span 1;
    grid-column: span 1;
  }
  .ig-item { height: 160px; }

  /* Orders */
  .orders-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .orders-info .section-title { text-align: center; }
  .orders-info .section-label { display: block; text-align: center; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: span 1; }

  /* WhatsApp: compact icon-only on mobile */
  .wa-label { display: none; }
  .wa-btn {
    bottom: 24px;
    right: 24px;
    padding: 16px;
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.48);
  }
  .wa-btn svg { width: 26px; height: 26px; }
}

/* =====================================================
   RESPONSIVE — Small mobile 480px
   ===================================================== */
@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn { width: 100%; max-width: 300px; }
  .strip-divider { display: none; }
  .strip-item { padding: 0 16px; }
  .products       { padding: 72px 16px; }
  .instagram-section { padding: 72px 16px; }
  .orders         { padding: 72px 16px; }
  .form-wrap      { padding: 28px 20px; }
  .footer         { padding: 60px 16px 0; }
}
