/* ============================================================
   STICKERS PRINT — Stylesheet
   Paleta: Rojo #E8323A / Amarillo #FFD93D / Cyan #00B4E0 / Verde #00E676
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Inter:wght@400;500&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ul { list-style: none; }
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
html { scroll-behavior: smooth; }

/* ── Variables ── */
:root {
  --primary:       #E8323A;
  --primary-dark:  #C0272E;
  --primary-light: #FFF0F0;
  --secondary:     #FFD93D;
  --accent:        #00B4E0;
  --accent2:       #00E676;
  --dark:          #1A1A1A;
  --gray:          #6B7280;
  --light:         #F9F9F9;
  --white:         #FFFFFF;
  --whatsapp:      #25D366;
  --gradient:      linear-gradient(135deg, #E8323A 0%, #FFD93D 100%);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-pill:50px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.18);
  --shadow-glow:0 0 24px rgba(232,50,58,.40);

  --t: .3s ease;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

section { padding: 80px 0; }

/* ── Containers ── */
.nav-container,
.hero-container,
.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Fade-in ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Botones ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: var(--white);
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary:hover { transform: scale(1.03); box-shadow: var(--shadow-glow); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-size: .95rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,.75);
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.btn-secondary:hover { background: var(--white); color: var(--dark); border-color: var(--white); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t), background var(--t);
}
.nav.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
  border-bottom-color: rgba(232,50,58,.10);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav-toggle.nav-toggle-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.nav-toggle-open span:nth-child(2) { opacity: 0; }
.nav-toggle.nav-toggle-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  transition: color var(--t);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--primary); }

/* Nav CTA button */
.nav .btn-primary.btn-whatsapp {
  background: var(--whatsapp);
  margin-left: auto;
  padding: 10px 20px;
  font-size: .88rem;
  flex-shrink: 0;
}
.nav .btn-primary.btn-whatsapp svg { width: 16px; height: 16px; }
.nav .btn-primary.btn-whatsapp:hover { box-shadow: 0 4px 14px rgba(37,211,102,.45); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1A1A1A 0%, #E8323A 65%, #FFD93D 100%);
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 70px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 660px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.hero-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-highlight {
  display: block;
  background: linear-gradient(90deg, #FFD93D, #FFB800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 520px;
}
.hero-subtitle strong { color: var(--secondary); font-weight: 700; }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Hero CTA WhatsApp */
.hero-ctas .btn-primary.btn-whatsapp {
  background: var(--whatsapp);
  font-size: 1rem;
  padding: 14px 28px;
}
.hero-ctas .btn-primary.btn-whatsapp svg { width: 20px; height: 20px; }
.hero-ctas .btn-primary.btn-whatsapp:hover { box-shadow: 0 6px 20px rgba(37,211,102,.50); }

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 500;
  white-space: nowrap;
}
.badge-icon { font-size: 1rem; }

/* Hero visual (right side cards) */
.hero-visual {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  position: absolute;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
}
.sticker-mock { font-size: 2.2rem; margin-bottom: 6px; }
.hero-card-1 { top: 10px;   left: 0;    transform: rotate(-8deg); }
.hero-card-2 { top: 60px;   right: 0;   transform: rotate(5deg); }
.hero-card-3 { bottom: 20px;left: 20px; transform: rotate(-3deg); }
.hero-price-tag {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--secondary);
  color: var(--dark);
  font-weight: 700;
  font-size: .85rem;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transform: rotate(4deg);
}

/* ============================================================
   SECTION HEADER (shared)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-eyebrow {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-section { background: var(--white); }
.products-section .section-title {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Card ── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid #E5E7EB;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card-featured { border-color: var(--primary); border-width: 2px; }

/* ── Product image area ── */
.product-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #F5F5F5;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }

.product-new-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  z-index: 3;
  line-height: 1.5;
}

/* ── Scene helpers ── */
.pimg-scene {
  position: absolute;
  inset: 0;
}
.pimg-shape {
  position: absolute;
  box-shadow: 0 5px 16px rgba(0,0,0,.14);
}

/* Label row (etiquetas escolares) */
.pimg-label {
  position: absolute;
  background: var(--white);
  border: 2px solid #00B4E0;
  border-radius: 6px;
  padding: 6px 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bolsa cierre */
.pimg-bolsa {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -54%);
  width: 120px; height: 100px;
  background: var(--white);
  border: 2px solid #C8F5E0;
  border-radius: 8px 8px 4px 4px;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}
.pimg-bolsa::after {
  content: 'STICKERS PRINT';
  position: absolute;
  bottom: -22px; left: 50%; transform: translateX(-50%);
  width: 116px; height: 20px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 0 0 4px 4px;
  font-family: 'Poppins', sans-serif;
  font-size: .45rem;
  font-weight: 800;
  letter-spacing: .5px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Etiqueta estructurada */
.pimg-etiq {
  position: absolute;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.13);
  overflow: hidden;
}

/* Caja packaging */
.pimg-caja {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -56%) rotate(-4deg);
  width: 120px; height: 90px;
  background: var(--white);
  border: 2px solid #FFD8A0;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}
.pimg-caja::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 6px 6px 0 0;
}
.pimg-caja::after {
  content: 'TU MARCA';
  font-family: 'Poppins', sans-serif;
  font-size: .6rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* ── Product info ── */
.product-info {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-family: 'Poppins', sans-serif;
  font-size: .93rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-price {
  font-size: .88rem;
  color: var(--gray);
  margin-bottom: 14px;
  font-weight: 500;
}
.product-price strong {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 700;
}

.product-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  padding: 10px 0;
  border-radius: var(--radius-pill);
  width: 100%;
  letter-spacing: .6px;
  margin-top: auto;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.product-buy-btn span { font-size: 1.1rem; line-height: 1; }
.product-buy-btn:hover { background: var(--primary-dark); transform: scale(1.02); box-shadow: var(--shadow-glow); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--primary-light); }

.steps-grid {
  display: flex;
  gap: 0;
  justify-content: center;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 35px; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.step-card {
  flex: 1;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 24px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(232,50,58,.30);
  position: relative;
  z-index: 2;
  background-color: var(--white);
  border: 3px solid var(--primary);
  color: var(--primary);
}

.step-icon { font-size: 1.8rem; margin-bottom: 10px; }

.step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.step-desc { font-size: .88rem; color: var(--gray); line-height: 1.65; }

/* ============================================================
   MATERIALS
   ============================================================ */
.materials-section { background: var(--light); }

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

.material-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #EBEBEB;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.material-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.material-swatch {
  height: 8px;
  width: 100%;
}
.material-swatch-brillante  { background: linear-gradient(90deg, var(--primary), #FF6B6B); }
.material-swatch-mate       { background: linear-gradient(90deg, var(--dark), #555); }
.material-swatch-transparente{ background: linear-gradient(90deg, var(--accent), #00D4FF); }
.material-swatch-holo       { background: linear-gradient(90deg, #FF6EFF, #00B4E0, #00E676); }

.material-content { padding: 20px 18px; }

.material-name {
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.material-desc {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 12px;
}
.material-features {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.material-features li {
  font-size: .8rem;
  color: var(--gray);
  padding-left: 14px;
  position: relative;
}
.material-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent2);
  font-weight: 700;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section { background: var(--dark); padding: 72px 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  display: block;
  transition: transform .4s ease;
}
.stat-item:hover .stat-number { transform: scale(1.08); }
.stat-item:nth-child(1) .stat-number { color: var(--secondary); }
.stat-item:nth-child(2) .stat-number { color: var(--accent); }
.stat-item:nth-child(3) .stat-number { color: var(--secondary); }
.stat-item:nth-child(4) .stat-number { color: var(--accent2); }
.stat-label {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid #EBEBEB;
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--t), box-shadow var(--t);
}
.testimonial-card:nth-child(2) { border-top-color: var(--accent); }
.testimonial-card:nth-child(3) { border-top-color: var(--secondary); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testimonial-stars { color: var(--secondary); font-size: 1.1rem; letter-spacing: 2px; }

.testimonial-text {
  font-size: .92rem;
  color: var(--dark);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  font-style: normal;
  margin-bottom: 2px;
}
.testimonial-role {
  font-size: .8rem;
  color: var(--gray);
}

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

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

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,.09);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,.09); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: .98rem;
  font-weight: 600;
  color: var(--dark);
  gap: 16px;
  transition: color var(--t);
}
.faq-question:hover { color: var(--primary); }

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--t);
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-item.active .faq-question { color: var(--primary); }

.faq-icon { display: none; } /* controlado por ::after */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer p {
  font-size: .92rem;
  color: var(--gray);
  line-height: 1.8;
  padding-bottom: 20px;
}
.faq-item.active .faq-answer { max-height: 400px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--white); }
.contact-section .section-title {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Info lado izquierdo */
.contact-info { display: flex; flex-direction: column; gap: 0; padding-top: 4px; }
.contact-info .section-eyebrow { align-self: flex-start; }
.contact-info .section-title { text-align: left; font-size: 1.8rem; }
.contact-desc { font-size: .95rem; color: var(--gray); line-height: 1.7; margin: 12px 0 28px; }

.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 14px; }

.contact-detail-icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-label {
  display: block;
  font-size: .78rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 2px;
}
.contact-detail-value {
  font-size: .95rem;
  color: var(--dark);
  font-weight: 600;
  transition: color var(--t);
}
.contact-detail-value:hover { color: var(--primary); }

/* Formulario */
.contact-form-wrapper {
  background: var(--light);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.contact-form { display: flex; flex-direction: column; gap: 0; }

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.form-row .form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: #9CA3AF; }
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,50,58,.12);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 110px; }

.btn-form-submit {
  width: 100%;
  background: var(--gradient);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  margin-top: 4px;
}
.btn-form-submit:hover { transform: scale(1.02); box-shadow: var(--shadow-glow); }

.form-note {
  font-size: .82rem;
  color: var(--gray);
  text-align: center;
  margin-top: 12px;
}
.form-note a { color: var(--whatsapp); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.72);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-col-brand {}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}
.footer-logo img { height: 44px; width: auto; }

.footer-desc {
  font-size: .875rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
}
.footer-social-link svg { width: 16px; height: 16px; color: rgba(255,255,255,.70); }
.footer-social-link:hover { background: var(--primary); }
.footer-social-link:hover svg { color: var(--white); }

.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 16px;
  display: block;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--secondary); }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-icon { font-size: .9rem; margin-top: 1px; flex-shrink: 0; }
.footer-contact-list a {
  font-size: .84rem;
  color: rgba(255,255,255,.55);
  transition: color var(--t);
}
.footer-contact-list a:hover { color: var(--secondary); }
.footer-contact-list span { font-size: .84rem; color: rgba(255,255,255,.55); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copyright { font-size: .78rem; color: rgba(255,255,255,.40); }
.footer-made      { font-size: .78rem; color: rgba(255,255,255,.40); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
}
.floating-whatsapp svg { width: 26px; height: 26px; color: var(--white); }
.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.60); }

.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: ping 2.2s cubic-bezier(0,0,.2,1) infinite;
  z-index: -1;
}
@keyframes ping {
  0%   { transform: scale(1);   opacity: .7; }
  75%  { transform: scale(1.85);opacity: 0;  }
  100% { transform: scale(1.85);opacity: 0;  }
}

.floating-whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.floating-whatsapp:hover .floating-whatsapp-tooltip { opacity: 1; }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .section-title { font-size: 1.9rem; }
  .hero-visual { display: none; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before { display: none; }
  .steps-grid { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .step-card { max-width: 260px; }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info .section-title { text-align: center; }
  .contact-info { align-items: center; text-align: center; }
  .contact-detail-item { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============================================================
   RESPONSIVE — MÓVIL (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .section-title { font-size: 1.65rem; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-container { flex-wrap: wrap; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 6px;
    padding: 8px 0 16px;
    border-top: 1px solid #EBEBEB;
    margin-top: 8px;
  }
  .nav-links.nav-links-open { display: flex; }
  .nav-links a { padding: 6px 0; font-size: .95rem; }
  .nav .btn-primary.btn-whatsapp { margin-left: auto; }

  /* Hero */
  .hero-section { padding: 110px 0 90px; min-height: 100svh; }
  .hero-headline { font-size: 2.1rem; letter-spacing: -.5px; }
  .hero-subtitle { font-size: 1rem; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { width: 100%; justify-content: center; }
  .hero-badges { gap: 7px; }
  .hero-badge { font-size: .78rem; padding: 6px 11px; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Steps */
  .steps-grid { flex-direction: column; align-items: center; }
  .step-card { max-width: 100%; width: 100%; flex-direction: row; text-align: left; gap: 16px; padding: 14px 0; }
  .step-number { margin-bottom: 0; flex-shrink: 0; width: 52px; height: 52px; font-size: 1.2rem; }
  .step-icon { display: none; }

  /* Materials */
  .materials-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: 2.2rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

  /* FAQ */
  .faq-question { font-size: .92rem; }

  /* Contact */
  .contact-form-wrapper { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Floating WA */
  .floating-whatsapp { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .floating-whatsapp svg { width: 22px; height: 22px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.85rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-eyebrow { font-size: .75rem; }
  .products-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CART NAV BUTTON
   ============================================================ */
.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--primary);
  transition: background var(--t), transform var(--t);
}
.nav-cart-btn:hover { background: var(--primary); color: var(--white); transform: scale(1.06); }
.nav-cart-btn svg { width: 20px; height: 20px; }

.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.nav-cart-btn:hover .cart-count { background: var(--white); color: var(--primary); }
.cart-count.bump { transform: scale(1.4); }

/* ============================================================
   CART OVERLAY
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.cart-overlay.active { opacity: 1; pointer-events: auto; }

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  max-width: 400px;
  height: 100dvh;
  background: var(--white);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform .38s cubic-bezier(.32,.72,0,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.18);
}
.cart-sidebar.open { transform: translateX(0); }

/* ── Cart Header ── */
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #F0F0F0;
  flex-shrink: 0;
}
.cart-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
}
.cart-header-title h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.cart-close-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #F3F4F6;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: background var(--t), color var(--t);
}
.cart-close-btn:hover { background: var(--primary); color: var(--white); }

/* ── Cart Body ── */
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}
.cart-body::-webkit-scrollbar { width: 4px; }
.cart-body::-webkit-scrollbar-track { background: transparent; }
.cart-body::-webkit-scrollbar-thumb { background: #E5E7EB; border-radius: 2px; }

/* Empty state */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  min-height: 260px;
  padding: 40px 24px;
  text-align: center;
}
.cart-empty p { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--dark); }
.cart-empty span { font-size: .88rem; color: var(--gray); }

/* Items list */
.cart-items-list { list-style: none; padding: 0; margin: 0; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid #F5F5F5;
  animation: slideInItem .25s ease;
}
@keyframes slideInItem {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.cart-item-thumb {
  width: 52px; height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.cart-item-price {
  font-size: .82rem;
  color: var(--primary);
  font-weight: 600;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-controls button {
  width: 28px; height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), color var(--t);
}
.cart-item-controls button:hover { background: var(--primary); color: var(--white); }
.cart-item-controls .cart-qty {
  min-width: 28px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
  pointer-events: none;
}

.cart-item-remove {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
  color: #D1D5DB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color var(--t), background var(--t);
}
.cart-item-remove:hover { color: var(--primary); background: var(--primary-light); }

/* ── Cart Footer ── */
.cart-footer {
  border-top: 1px solid #F0F0F0;
  padding: 16px 20px 20px;
  flex-shrink: 0;
  display: none;
}
.cart-footer.visible { display: block; }

.cart-summary { margin-bottom: 14px; }
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .92rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
#cartSubtotal {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}
.cart-note {
  font-size: .76rem;
  color: var(--gray);
  line-height: 1.5;
  background: #FFFDE8;
  border-left: 3px solid var(--secondary);
  padding: 7px 10px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 14px;
}

/* Customer form */
.cart-customer-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.cart-form-title {
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 2px;
}
.cart-input {
  width: 100%;
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.cart-input::placeholder { color: #9CA3AF; }
.cart-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,50,58,.10);
}
.cart-input-error {
  font-size: .75rem;
  color: var(--primary);
  font-weight: 600;
  min-height: 16px;
}

/* Email checkout button */
.cart-btn-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  padding: 13px;
  border-radius: var(--radius-pill);
  width: 100%;
  border: none;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  margin-bottom: 12px;
}
.cart-btn-email:hover { transform: scale(1.02); box-shadow: var(--shadow-glow); }

/* Payment strip */
.cart-payment-strip {
  border-top: 1px solid #F0F0F0;
  padding-top: 12px;
}
.cart-payment-label {
  font-size: .72rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  display: block;
  margin-bottom: 8px;
}
.cart-payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cpay-pill {
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
}
.cpay-mp   { background: #009EE3; color: #fff; }
.cpay-flow { background: #FF4B4B; color: #fff; }
.cpay-wp   { background: #0068C8; color: #fff; }
.cpay-tf   { background: #E5E7EB; color: var(--dark); }

/* Responsive cart */
@media (max-width: 480px) {
  .cart-sidebar { max-width: 100%; }
}

/* ============================================================
   PRODUCT MODAL
   ============================================================ */
.pmodal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.pmodal-overlay.active { opacity: 1; pointer-events: auto; }

.pmodal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-48%) scale(.97);
  z-index: 1201;
  width: 92%;
  max-width: 860px;
  max-height: 90dvh;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s cubic-bezier(.32,.72,0,1);
  display: flex;
  flex-direction: column;
}
.pmodal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}

.pmodal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 10;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,.08);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: background var(--t), color var(--t);
}
.pmodal-close:hover { background: var(--primary); color: var(--white); }

/* Two-column layout */
.pmodal-inner {
  display: grid;
  grid-template-columns: 42% 58%;
  overflow-y: auto;
  max-height: 90dvh;
}
.pmodal-inner::-webkit-scrollbar { width: 4px; }
.pmodal-inner::-webkit-scrollbar-thumb { background: #E5E7EB; border-radius: 2px; }

/* Image column */
.pmodal-img-col {
  position: relative;
  background: #F5F5F5;
  min-height: 320px;
}
.pmodal-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pmodal-img-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* Options column */
.pmodal-options-col {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.pmodal-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 6px;
  display: block;
}
.pmodal-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 8px;
}
.pmodal-desc {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 0;
}
.pmodal-divider {
  border: none;
  border-top: 1px solid #F0F0F0;
  margin: 16px 0;
}

/* Sections */
.pmodal-section { margin-bottom: 18px; }
.pmodal-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 10px;
}

/* Format options grid */
.pmodal-opt-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pmodal-opt {
  flex: 1;
  min-width: 80px;
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  text-align: center;
  background: var(--white);
  transition: border-color var(--t), background var(--t);
}
.pmodal-opt:hover { border-color: var(--primary); background: var(--primary-light); }
.pmodal-opt.selected { border-color: var(--primary); background: var(--primary-light); }
.pmodal-opt-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.pmodal-opt-spec {
  display: block;
  font-size: .72rem;
  color: var(--gray);
  line-height: 1.3;
}
.pmodal-opt.selected .pmodal-opt-label { color: var(--primary); }

/* Pack options (full width) */
.pmodal-opt.pack-opt {
  flex: 1 1 calc(50% - 4px);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
}
.pmodal-opt.pack-opt .pmodal-opt-price {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

/* Quantity grid */
.pmodal-qty-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.pmodal-qty-btn {
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  cursor: pointer;
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--dark);
  transition: border-color var(--t), background var(--t), color var(--t);
  white-space: nowrap;
}
.pmodal-qty-btn:hover  { border-color: var(--primary); color: var(--primary); }
.pmodal-qty-btn.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.pmodal-qty-btn .qty-price {
  font-size: .7rem;
  font-weight: 400;
  opacity: .85;
  display: block;
}

/* Price box */
.pmodal-price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--light);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  gap: 12px;
}
.pmodal-price-info { display: flex; flex-direction: column; gap: 2px; }
.pmodal-price-label {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
}
.pmodal-price-note { font-size: .7rem; color: var(--gray); }
.pmodal-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

/* Add to cart button */
.pmodal-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--gradient);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), opacity var(--t);
  margin-bottom: 10px;
}
.pmodal-add-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none !important;
}
.pmodal-add-btn:not(:disabled):hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
}

.pmodal-disclaimer {
  font-size: .76rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.5;
}

/* Responsive modal */
@media (max-width: 680px) {
  .pmodal {
    top: auto; bottom: 0;
    left: 0; right: 0;
    transform: translateY(10px);
    max-width: 100%;
    width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 93dvh;
  }
  .pmodal.open { transform: translateY(0); }
  .pmodal-inner {
    grid-template-columns: 1fr;
    max-height: 93dvh;
  }
  .pmodal-img-col { min-height: 200px; max-height: 220px; }
  .pmodal-options-col { padding: 20px 18px 30px; }
  .pmodal-title { font-size: 1.1rem; }
  .pmodal-price { font-size: 1.3rem; }
  .pmodal-opt.pack-opt { flex: 1 1 100%; }
}
