:root {
  --green-950: #0d241b;
  --green-900: #143528;
  --green-800: #1d4736;
  --green-700: #2f5d46;
  --green-100: #eaf3ee;
  --cream: #fffaf1;
  --cream-2: #f7efe2;
  --rose: #e8a0a8;
  --rose-dark: #b95567;
  --gold: #d7a94b;
  --ink: #17211c;
  --muted: #68756d;
  --line: rgba(23, 33, 28, .12);
  --shadow: 0 22px 70px rgba(13, 36, 27, .14);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--green-900);
  color: white;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 250, 241, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 33, 28, .08);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(13, 36, 27, .08); background: rgba(255, 250, 241, .96); }
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  font-weight: 800;
  letter-spacing: -.04em;
  background: radial-gradient(circle at 35% 25%, #f0b7c0, var(--rose-dark) 38%, var(--green-800) 100%);
  box-shadow: 0 10px 24px rgba(185, 85, 103, .28);
}
.brand strong { display: block; font-size: 1.05rem; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: .8rem; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--green-900);
  font-weight: 650;
  font-size: .95rem;
}
.nav-links a:hover, .nav-links a:focus-visible { background: var(--green-100); outline: none; }
.nav-call { background: var(--green-900) !important; color: white !important; box-shadow: 0 12px 24px rgba(13, 36, 27, .16); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) { width: 20px; height: 2px; background: var(--green-900); border-radius: 999px; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.hero {
  position: relative;
  min-height: 760px;
  padding: 142px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 14%, rgba(232, 160, 168, .40), transparent 34%),
    radial-gradient(circle at 12% 20%, rgba(215, 169, 75, .20), transparent 35%),
    linear-gradient(135deg, #fffaf1 0%, #f9ecdf 52%, #eaf3ee 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% 42%;
  height: 470px;
  border-radius: 999px;
  transform: rotate(-10deg);
  background: rgba(47, 93, 70, .12);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 48px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
h1, h2, h3 { line-height: 1.08; color: var(--green-950); margin: 0; letter-spacing: -.04em; }
h1 { font-size: clamp(3rem, 7vw, 5.9rem); max-width: 780px; }
h2 { font-size: clamp(2.1rem, 4vw, 3.55rem); }
h3 { font-size: 1.35rem; }
.lead { margin: 24px 0 0; max-width: 650px; color: #405047; font-size: clamp(1.05rem, 1.7vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 21px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green-900); color: white; box-shadow: 0 18px 38px rgba(13, 36, 27, .18); }
.btn-secondary { background: rgba(255, 255, 255, .72); color: var(--green-900); border-color: var(--line); box-shadow: 0 14px 30px rgba(13, 36, 27, .08); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  color: var(--green-800);
  border: 1px solid rgba(47, 93, 70, .12);
  font-weight: 650;
  font-size: .92rem;
}
.hero-trust span::before { content: "✓"; color: var(--rose-dark); font-weight: 900; }
.hero-card { position: relative; padding: 22px; border-radius: var(--radius-xl); background: rgba(255,255,255,.58); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.68); }
.hero-card img { border-radius: 24px; }
.floating-card {
  position: absolute;
  right: 0;
  bottom: 42px;
  transform: translateX(18px);
  max-width: 260px;
  padding: 18px 20px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 18px 48px rgba(13, 36, 27, .17);
  border: 1px solid var(--line);
}
.floating-card strong { display: block; color: var(--green-900); margin-bottom: 4px; }
.floating-card span { color: var(--muted); font-size: .94rem; }
.quick-contact { position: relative; margin-top: -38px; z-index: 5; }
.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 14px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(14px);
}
.contact-strip a { padding: 14px 16px; border-radius: 18px; border: 1px solid transparent; }
.contact-strip a:hover { background: var(--green-100); border-color: rgba(47, 93, 70, .12); }
.contact-strip strong { display: block; color: var(--green-900); font-size: .88rem; }
.contact-strip span { display: block; color: var(--muted); font-size: .96rem; margin-top: 2px; }
.section { padding: 88px 0; }
.section-head { text-align: center; max-width: 780px; }
.section-head p:last-child { color: var(--muted); margin: 16px auto 0; font-size: 1.05rem; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 42px; }
.product-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: 0 16px 48px rgba(13, 36, 27, .08);
  border: 1px solid var(--line);
}
.product-card img { width: 200px; border-radius: 22px; background: var(--cream-2); }
.product-card p { color: var(--muted); margin: 10px 0 16px; }
.product-card a { color: var(--rose-dark); font-weight: 850; }
.tag { display: inline-flex; margin-bottom: 10px; padding: 5px 9px; border-radius: 999px; background: var(--green-100); color: var(--green-800); font-size: .78rem; font-weight: 800; }
.compact-section { padding-top: 0; }
.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reasons-grid article {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 42px rgba(13, 36, 27, .07);
}
.reasons-grid span { display: inline-flex; margin-bottom: 14px; color: var(--rose-dark); font-weight: 900; }
.reasons-grid p { color: var(--muted); margin: 12px 0 0; }
.soft-section { background: linear-gradient(180deg, rgba(234, 243, 238, .74), rgba(255, 250, 241, .92)); }
.bulbs-layout { display: grid; grid-template-columns: 1fr 390px; gap: 40px; align-items: center; }
.bulbs-copy { max-width: 740px; }
.bulbs-copy > p:not(.eyebrow), .price-note { color: var(--muted); font-size: 1.05rem; }
.price-note {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  background: rgba(255,255,255,.65);
}
.bulbs-preview { padding: 18px; border-radius: var(--radius-xl); background: white; box-shadow: var(--shadow); }
.bulbs-panel {
  margin-top: 38px;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.bulbs-panel[hidden] { display: none !important; }
.bulbs-toolbar { display: grid; gap: 8px; max-width: 420px; margin-bottom: 22px; }
.bulbs-toolbar label { color: var(--green-900); font-weight: 800; }
.bulbs-toolbar input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 15px;
  background: var(--cream);
  outline: none;
}
.bulbs-toolbar input:focus { border-color: var(--green-700); box-shadow: 0 0 0 4px rgba(47, 93, 70, .12); }
.bulb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.bulb-card {
  overflow: hidden;
  border-radius: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  min-height: 100%;
}
.bulb-card img { width: 100%; aspect-ratio: 1.4; object-fit: cover; background: var(--cream-2); }
.bulb-card div { padding: 14px; }
.bulb-card strong { display: block; color: var(--green-900); line-height: 1.2; }
.bulb-card span { display: block; margin-top: 8px; color: var(--muted); font-size: .88rem; }
.bulb-card em { display: inline-flex; margin-top: 10px; color: var(--rose-dark); font-style: normal; font-weight: 800; font-size: .86rem; }
.bulb-card a { display: inline-flex; margin-left: 8px; color: var(--green-800); font-weight: 850; font-size: .86rem; }
.catalog-note { color: var(--muted); font-size: .92rem; margin: 20px 0 0; }
.catalog-note code { background: var(--green-100); padding: 2px 6px; border-radius: 6px; }
.split { display: grid; grid-template-columns: 1fr 430px; gap: 48px; align-items: start; }
.split p { color: var(--muted); font-size: 1.05rem; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 10px; color: var(--green-900); font-weight: 650; }
.check-list li::before { content: "✿"; color: var(--rose-dark); }
.quote-box { padding: 32px; border-radius: var(--radius-xl); background: var(--green-900); color: white; box-shadow: var(--shadow); }
.quote-box p { color: rgba(255,255,255,.86); margin: 0 0 24px; font-size: 1.4rem; line-height: 1.35; }
.quote-box .btn-secondary { background: white; }
.contact-section { background: var(--green-950); color: white; }
.contact-section h2 { color: white; }
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; align-items: stretch; }
.contact-card { padding: 34px; border-radius: var(--radius-xl); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.contact-card p { color: rgba(255,255,255,.74); }
.small-proof { font-size: .94rem; padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0; }
.contact-card .btn-secondary { background: transparent; color: white; border-color: rgba(255,255,255,.24); }
.info-list { display: grid; gap: 16px; margin: 0; }
.info-list div { display: grid; gap: 4px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); }
.info-list dt { font-weight: 850; color: white; }
.info-list dd { margin: 0; color: rgba(255,255,255,.72); }
.info-list a { color: white; font-weight: 800; }
.map-card { overflow: hidden; border-radius: var(--radius-xl); background: white; min-height: 490px; display: grid; grid-template-rows: 1fr auto; }
.map-card iframe { width: 100%; height: 100%; min-height: 430px; border: 0; filter: saturate(.92); }
.map-card a { display: block; padding: 16px 20px; color: var(--green-900); font-weight: 850; }
.site-footer { padding: 30px 0; background: #07130e; color: rgba(255,255,255,.72); }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer-grid strong { color: white; }
.footer-grid p { margin: 4px 0 0; }
.footer-grid div:last-child { display: flex; flex-wrap: wrap; gap: 12px 18px; justify-content: flex-end; }
.footer-grid a { color: white; font-weight: 800; }
.sticky-whatsapp {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1fb45a;
  color: white;
  font-weight: 900;
  box-shadow: 0 15px 38px rgba(0,0,0,.22);
}
@media (max-width: 980px) {
  .hero { min-height: auto; padding-top: 120px; }
  .hero-grid, .bulbs-layout, .split, .contact-grid, .reasons-grid { grid-template-columns: 1fr; }
  .bulbs-preview { max-width: 460px; }
  .contact-strip { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .bulb-grid { grid-template-columns: repeat(3, 1fr); }
  .floating-card { right: 20px; transform: none; }
}
@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 76px 16px auto;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 250, 241, .98);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: 13px 14px; }
  h1 { font-size: clamp(2.7rem, 15vw, 4.25rem); }
  .product-card { grid-template-columns: 1fr; }
  .product-card img { width: 100%; max-height: 260px; object-fit: cover; }
  .contact-strip { grid-template-columns: 1fr; }
  .bulb-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-grid div:last-child { justify-content: flex-start; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 22px, var(--container)); }
  .hero { padding-bottom: 58px; }
  .section { padding: 64px 0; }
  .hero-card { padding: 12px; }
  .floating-card { position: static; margin: 12px 0 0; }
  .bulb-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}


/* Final catalog upgrade - 2026 bulb list */
.bulbs-toolbar {
  max-width: none;
  grid-template-columns: minmax(240px, 420px) 1fr;
  align-items: end;
  gap: 18px;
}
.result-count {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 650;
}
.category-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 22px;
}
.category-chip {
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--green-900);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 800;
  font-size: .88rem;
}
.category-chip span {
  color: var(--muted);
  font-weight: 700;
  margin-left: 4px;
}
.category-chip.is-active {
  background: var(--green-900);
  color: white;
  border-color: var(--green-900);
}
.category-chip.is-active span { color: rgba(255,255,255,.78); }
.bulb-grid { grid-template-columns: repeat(5, 1fr); }
.bulb-card {
  background: #fffdf8;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.bulb-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 93, 70, .26);
  box-shadow: 0 14px 34px rgba(13, 36, 27, .10);
}
.bulb-card img {
  aspect-ratio: .72;
  object-fit: contain;
  padding: 10px;
  background: linear-gradient(180deg, #fff, var(--cream-2));
}
.mini-category {
  display: inline-flex !important;
  margin: 0 0 8px !important;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800) !important;
  font-size: .72rem !important;
  font-weight: 800;
}
.empty-state { grid-column: 1 / -1; padding: 18px; border-radius: 16px; background: var(--cream); }
@media (max-width: 1180px) { .bulb-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 940px) {
  .bulbs-toolbar { grid-template-columns: 1fr; }
  .bulb-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) { .bulb-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 430px) { .bulb-grid { grid-template-columns: 1fr; } }


/* Bouquet personalization - WhatsApp automatic order */
.bouquet-builder-section {
  background:
    radial-gradient(circle at top left, rgba(232, 160, 168, .24), transparent 34%),
    linear-gradient(180deg, #fffaf1 0%, rgba(232, 160, 168, .14) 100%);
}
.bouquet-builder {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  margin-top: 42px;
  align-items: start;
}
.bouquet-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.bouquet-options fieldset {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 42px rgba(13, 36, 27, .07);
}
.bouquet-options .wide-fieldset {
  grid-column: 1 / -1;
}
.bouquet-options legend {
  padding: 0 6px;
  color: var(--green-900);
  font-weight: 900;
}
.bouquet-options label {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  color: var(--green-900);
  font-weight: 650;
  cursor: pointer;
}
.bouquet-options input[type="radio"],
.bouquet-options input[type="checkbox"] {
  accent-color: var(--rose-dark);
  flex: 0 0 auto;
}
.bouquet-options input[type="text"],
.bouquet-options input[type="date"],
.bouquet-options select,
.bouquet-options textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 13px;
  background: #fffdf8;
  color: var(--green-900);
  font: inherit;
  outline: none;
}
.bouquet-options textarea {
  resize: vertical;
}
.bouquet-options input[type="text"]:focus,
.bouquet-options input[type="date"]:focus,
.bouquet-options select:focus,
.bouquet-options textarea:focus {
  border-color: var(--rose-dark);
  box-shadow: 0 0 0 4px rgba(177, 71, 89, .12);
}
.inline-select,
.date-row {
  margin-top: 14px;
}
.date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bouquet-summary-card {
  position: sticky;
  top: 96px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--green-900);
  color: white;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.15);
}
.bouquet-summary-card h3 { color: white; margin-bottom: 12px; }
.bouquet-summary-card p {
  margin: 0 0 18px;
  max-height: 520px;
  overflow: auto;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.88);
  white-space: pre-line;
  line-height: 1.58;
}
.bouquet-summary-card .btn { width: 100%; margin-top: 16px; background: #1fb45a; box-shadow: 0 16px 36px rgba(0,0,0,.22); }
.bouquet-summary-card small { display: block; margin-top: 12px; color: rgba(255,255,255,.68); }
.bouquet-summary-card .tag { background: rgba(255,255,255,.13); color: white; }
@media (max-width: 980px) {
  .bouquet-builder { grid-template-columns: 1fr; }
  .bouquet-summary-card { position: static; }
}
@media (max-width: 720px) {
  .bouquet-options { grid-template-columns: 1fr; }
  .date-row { grid-template-columns: 1fr; }
}
