:root {
  --pink: #E8A0BF;
  --pink-dark: #C77B9E;
  --green: #A8D8B9;
  --green-dark: #7CB891;
  --peach: #F5D6A8;
  --peach-dark: #E8C08A;
  --brown: #5D4037;
  --brown-light: #8D6E63;
  --cream: #FFF8F0;
  --white: #FFFFFF;
  --text: #3E2723;
  --text-light: #8D6E63;
  --shadow: rgba(93, 64, 55, 0.1);
  --shadow-lg: rgba(93, 64, 55, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--peach), var(--green));
  z-index: 9999;
  transition: width 0.05s linear;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px var(--shadow);
  border-bottom-color: rgba(232, 160, 191, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 600;
}
.logo-icon { font-size: 1.8rem; }
.logo-text { font-family: 'Playfair Display', serif; }
.logo-accent { color: var(--pink-dark); }

.nav-links { display: flex; gap: 24px; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--pink-dark); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  animation: float 10s ease-in-out infinite;
}
.shape-1 { width: 450px; height: 450px; background: var(--pink); top: -120px; right: -120px; animation-delay: 0s; }
.shape-2 { width: 350px; height: 350px; background: var(--green); bottom: -80px; left: -100px; animation-delay: 2s; }
.shape-3 { width: 220px; height: 220px; background: var(--peach); top: 35%; right: 8%; animation-delay: 4s; }
.shape-4 { width: 160px; height: 160px; background: var(--pink); bottom: 25%; left: 3%; animation-delay: 6s; opacity: 0.12; }
.shape-5 { width: 100px; height: 100px; background: var(--green); top: 20%; left: 15%; animation-delay: 3s; opacity: 0.2; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  33% { transform: translateY(-20px) scale(1.03) rotate(1deg); }
  66% { transform: translateY(10px) scale(0.97) rotate(-1deg); }
}

/* Hero particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.2;
  animation: particleFloat linear infinite;
  pointer-events: none;
  user-select: none;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.25; }
  90% { opacity: 0.25; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: var(--brown);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
  box-shadow: 0 4px 20px rgba(232, 160, 191, 0.3);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.text-accent {
  background: linear-gradient(135deg, var(--pink-dark), var(--peach-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200, 120, 150, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200, 120, 150, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--pink);
}
.btn-outline:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

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

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--pink-dark);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(135deg, var(--pink), var(--peach-dark));
  padding: 12px 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown);
  position: relative;
  z-index: 1;
}
.promo-banner a {
  text-decoration: underline;
  font-weight: 700;
  transition: var(--transition);
}
.promo-banner a:hover { color: var(--white); }

/* ===== SECTIONS ===== */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--peach));
  color: var(--brown);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===== PRODUCTOS ===== */
.productos { background: var(--white); }

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid rgba(93, 64, 55, 0.12);
  background: transparent;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.filter-btn:hover {
  border-color: var(--pink);
  color: var(--pink-dark);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  border-color: transparent;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(93, 64, 55, 0.06);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--shadow-lg);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(200, 120, 150, 0.3);
}

.product-img-placeholder {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  background: linear-gradient(135deg, var(--peach), var(--green));
  transition: var(--transition);
  position: relative;
}
.product-card:hover .product-img-placeholder { transform: scale(1.06); }

.product-info { padding: 20px; }

.product-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pink-dark);
  font-weight: 600;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin: 4px 0 6px;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(93, 64, 55, 0.08);
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pink-dark);
}

.product-order-btn {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pink-dark);
  padding: 6px 16px;
  border-radius: 50px;
  border: 2px solid var(--pink);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.product-order-btn:hover {
  background: var(--pink);
  color: var(--white);
}

.section-footer { text-align: center; margin-top: 40px; }

/* ===== CARACTERISTICAS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(93, 64, 55, 0.06);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px var(--shadow-lg);
}

.glass {
  background: rgba(255, 248, 240, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.feature-card.glass:hover {
  background: rgba(255, 255, 255, 0.9);
}

.feature-icon { font-size: 2.8rem; margin-bottom: 16px; }
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.feature-card p { font-size: 0.9rem; color: var(--text-light); }

/* ===== MATERIALES ===== */
.materiales { background: var(--white); }

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
}

.material-card {
  background: var(--cream);
  padding: 28px 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(93, 64, 55, 0.06);
}
.material-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px var(--shadow);
}

.material-icon { font-size: 2.2rem; margin-bottom: 12px; }
.material-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 6px;
}
.material-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }

/* ===== PROCESO ===== */
.proceso { background: var(--cream); }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  max-width: 280px;
  padding: 0 20px;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 6px 20px rgba(232, 160, 191, 0.3);
}

.step h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--text-light); }

.step-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--green));
  margin-top: 32px;
  flex-shrink: 0;
}

/* ===== TESTIMONIOS ===== */
.testimonios { background: var(--white); }

.testimonial-carousel {
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 44px 40px;
  background: var(--cream);
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(93, 64, 55, 0.06);
}

.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--pink), var(--peach));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}
.testimonial-author { font-weight: 600; color: var(--brown); }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(93, 64, 55, 0.12);
  background: var(--white);
  color: var(--brown);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}
.carousel-btn:hover {
  border-color: var(--pink);
  color: var(--pink-dark);
  background: rgba(232, 160, 191, 0.08);
}

.carousel-dots { display: flex; gap: 8px; }

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(93, 64, 55, 0.12);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--pink-dark);
  transform: scale(1.3);
}

/* ===== FAQ ===== */
.faq { background: var(--cream); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  border: 1px solid rgba(93, 64, 55, 0.06);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(232, 160, 191, 0.3);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: var(--white);
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--pink-dark); }

.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  transition: var(--transition);
  color: var(--pink-dark);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 18px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== CONTACTO ===== */
.contacto { background: var(--white); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info .section-title { text-align: left; }
.contact-info p { color: var(--text-light); margin-bottom: 28px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.contact-icon { font-size: 1.3rem; }

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(93, 64, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--pink);
  background: rgba(232, 160, 191, 0.08);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--cream);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid rgba(93, 64, 55, 0.06);
}

.form-group { margin-bottom: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(93, 64, 55, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-family: inherit;
  background: var(--white);
  transition: var(--transition);
  color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(232, 160, 191, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
  opacity: 0.7;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--shadow);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--pink-dark);
  transform: translateY(-3px);
}
.back-to-top.visible:hover { transform: translateY(-3px); }

/* ===== FOOTER ===== */
.footer {
  background: var(--brown);
  color: var(--cream);
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 248, 240, 0.1);
}

.footer-brand .logo-icon { font-size: 2rem; }
.footer-brand .logo-text { font-size: 1.3rem; }
.footer-brand p { margin-top: 12px; font-size: 0.9rem; opacity: 0.7; max-width: 280px; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  opacity: 0.5;
  font-size: 1.3rem;
  transition: var(--transition);
}
.footer-social a:hover { opacity: 1; transform: translateY(-2px); }

.footer-links h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
  font-size: 1rem;
}
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a {
  opacity: 0.6;
  transition: var(--transition);
  font-size: 0.88rem;
}
.footer-links ul li a:hover { opacity: 1; }
.footer-links ul li { font-size: 0.88rem; opacity: 0.6; }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  opacity: 0.5;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 3000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(124, 184, 145, 0.3);
  pointer-events: none;
  text-align: center;
  max-width: 90vw;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.open { display: flex; }

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(62, 39, 35, 0.6);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  animation: scaleIn 0.3s ease;
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(93, 64, 55, 0.08);
  color: var(--brown);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.modal-close:hover { background: rgba(93, 64, 55, 0.15); }

.modal-body { padding: 32px; }
.modal-body .product-img-placeholder {
  height: 300px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 6rem !important;
}
.modal-body .product-category { font-size: 0.8rem; }
.modal-body .product-name { font-size: 1.5rem; }
.modal-body .product-desc { font-size: 1rem; margin: 12px 0 20px; }

.modal-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink-dark);
  margin-bottom: 8px;
}

.modal-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.modal-meta span {
  font-size: 0.82rem;
  color: var(--text-light);
  background: var(--cream);
  padding: 6px 14px;
  border-radius: 50px;
}

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 968px) {
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 40px; margin: 16px 0; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-120%);
    transition: var(--transition);
    border-bottom: 1px solid rgba(93, 64, 55, 0.06);
  }
  .nav-links.open { transform: translateY(0); }
  .hamburger { display: flex; }

  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }

  .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .materials-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }

  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { max-width: 100%; text-align: center; }
  .footer-social { justify-content: center; }

  .filter-bar { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.78rem; }

  .form-row { grid-template-columns: 1fr; }

  .whatsapp-float { width: 52px; height: 52px; font-size: 1.6rem; bottom: 16px; right: 16px; }
  .back-to-top { width: 40px; height: 40px; font-size: 1.1rem; bottom: 16px; left: 16px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .product-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .modal-body { padding: 20px; }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
}
