/* ============================================================
   FRYSSIFLOWER — Design System v3
   Femenino · Elegante · Premium
   Paleta: #1F4D3D · #123930 · #F7D6DC · #E8A8B4 · #F9EEF0
   Tipografía: Cormorant Garamond + Jost
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500&display=swap');

/* ── TOKENS ── */
:root {
  --g1: #1F4D3D;
  --g2: #123930;
  --r1: #D4A5A5;
  --r2: #C47A7A;
  --r3: #F9EEF0;
  --ink: #1a1a1a;
  --muted: #7a8a84;
  --line: #ede6e0;
  --cream: #FDFAF7;
  --warm: #FAF5F0;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
  --shadow-sm: 0 2px 12px rgba(31,77,61,.06);
  --shadow-md: 0 8px 30px rgba(31,77,61,.10);
  --shadow-lg: 0 16px 50px rgba(31,77,61,.14);
  --radius: 16px;
  --max: 1160px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── CONTAINER ── */
.container { width: 92%; max-width: var(--max); margin: 0 auto; }

/* ── TYPOGRAPHY HELPERS ── */
.display { font-family: var(--font-display); }
.eyebrow {
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--r2); font-weight: 400; display: block;
}

/* ── BUTTONS ── */
.btn-rose {
  background: var(--r2); color: var(--g2); border: none;
  border-radius: 100px; padding: .78rem 2rem;
  font-family: var(--font-body); font-size: .8rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: all .25s var(--ease);
  display: inline-block;
}
.btn-rose:hover { background: var(--r1); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-ghost {
  background: transparent; color: var(--g1); border: none;
  padding: .78rem 0; font-family: var(--font-body);
  font-size: .8rem; font-weight: 400; letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; display: inline-flex; align-items: center; gap: .4rem;
  border-bottom: 1px solid var(--g1); transition: all .2s;
}
.btn-ghost:hover { color: var(--r2); border-color: var(--r2); }

.btn-green {
  background: var(--g1); color: var(--white); border: none;
  border-radius: 100px; padding: .78rem 2rem;
  font-family: var(--font-body); font-size: .8rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: all .25s;
}
.btn-green:hover { background: var(--g2); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--g1); border: 1px solid var(--g1);
  border-radius: 100px; padding: .75rem 1.8rem;
  font-family: var(--font-body); font-size: .8rem; font-weight: 400;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: all .2s; display: inline-block;
}
.btn-outline:hover { background: var(--g1); color: var(--white); }

.btn-outline-white {
  background: transparent; color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.3); border-radius: 100px;
  padding: .65rem 1.5rem; font-family: var(--font-body);
  font-size: .78rem; font-weight: 400; letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(253,250,247,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0;
}

.logo {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none;
}
.logo-img {
  height: 44px; width: auto;
  object-fit: contain; flex-shrink: 0;
}
.logo-text .brand {
  font-family: var(--font-display);
  font-style: italic; font-size: 1.5rem;
  color: var(--g1); letter-spacing: .02em;
  font-weight: 400; line-height: 1;
}
.logo-text .brand span { color: var(--r2); }
.logo-text .tagline {
  font-size: .68rem; color: var(--muted);
  letter-spacing: .06em; text-transform: uppercase;
  font-weight: 300; margin-top: .1rem;
}

.main-nav ul {
  list-style: none;
  display: flex; align-items: center; gap: .1rem;
}
.main-nav a {
  display: block; padding: .45rem .9rem;
  font-size: .8rem; font-weight: 400;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
  border-radius: 6px;
}
.main-nav a:hover, .main-nav a.activo { color: var(--g1); }

/* Dropdown */
li.dropdown { position: relative; }
.submenu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 210px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: .5rem;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .22s var(--ease); z-index: 100;
}
li.dropdown:hover > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a {
  display: block; padding: .55rem .9rem;
  border-radius: 8px; font-size: .82rem;
  color: var(--ink); text-transform: none; letter-spacing: 0;
}
.submenu a:hover { background: var(--r3); color: var(--g1); }

/* Cart button */
.cart-btn {
  display: flex; align-items: center; gap: .5rem;
  background: transparent; border: 1px solid var(--g1);
  border-radius: 100px; padding: .45rem 1.1rem;
  font-family: var(--font-body); font-size: .78rem; font-weight: 400;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--g1); cursor: pointer; transition: all .2s;
}
.cart-btn:hover { background: var(--g1); color: var(--white); }
.cart-count {
  background: var(--r2); color: var(--g2);
  border-radius: 100px; padding: 1px 8px;
  font-size: .72rem; font-weight: 600;
}

/* Mobile toggle */
.menu-toggle {
  display: none; border: 1px solid var(--line);
  background: transparent; padding: .45rem .7rem;
  border-radius: 8px; color: var(--g1); font-size: 1.1rem;
  transition: all .2s;
}
.menu-toggle:hover { background: var(--r3); }

/* ── CART PANEL ── */
#cart-panel {
  position: fixed; right: 1rem; top: 82px;
  width: 340px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1.4rem;
  display: none; z-index: 1200;
  max-height: calc(100vh - 100px); overflow-y: auto;
}
#cart-panel.visible { display: block; }
.cart-panel-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem; padding-bottom: .8rem; border-bottom: 1px solid var(--line);
}
.cart-panel-header h4 {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.2rem; color: var(--g1); font-weight: 400;
}
.cart-item {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: .7rem 0; border-bottom: 1px solid var(--line);
}
.cart-item img { width: 58px; height: 58px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.cart-item-name { font-size: .88rem; font-weight: 500; color: var(--g1); }
.cart-item-price { font-size: .78rem; color: var(--muted); font-weight: 300; }
.cart-item-controls { display: flex; align-items: center; gap: .4rem; margin-top: .4rem; }
.qty-btn {
  width: 24px; height: 24px; border: 1px solid var(--line);
  background: var(--cream); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--g1); transition: all .18s;
}
.qty-btn:hover { background: var(--g1); color: var(--white); border-color: var(--g1); }
.qty-display { min-width: 24px; text-align: center; font-size: .88rem; font-weight: 500; }
.remove-btn {
  margin-left: auto; background: transparent; border: none;
  color: var(--muted); font-size: 1rem; transition: color .18s; padding: 0;
}
.remove-btn:hover { color: #c0392b; }
.cart-footer { margin-top: .8rem; padding-top: .8rem; border-top: 1px solid var(--line); }
.cart-total-row {
  display: flex; justify-content: space-between;
  font-weight: 500; color: var(--g1); margin-bottom: .8rem;
  font-size: .9rem;
}
.cart-actions { display: flex; gap: .5rem; }
.cart-empty-msg { text-align: center; padding: 1.5rem 0; color: var(--muted); font-size: .88rem; }
.shipping-info { font-size: .78rem; margin: .5rem 0; }

/* ── PAGE BANNER ── */
.page-banner {
  background: linear-gradient(160deg, var(--cream) 0%, var(--r3) 100%);
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid var(--line);
  text-align: center;
  position: relative;
}
.page-banner::after {
  content: ''; display: block;
  width: 50px; height: 1px; background: var(--r2);
  margin: 1rem auto 0;
}
.page-banner h1 {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2.2rem,5vw,3.4rem);
  color: var(--g1); font-weight: 300;
}
.page-banner p { color: var(--muted); margin-top: .5rem; font-size: .93rem; font-weight: 300; }

/* ── SECTION ── */
.section { padding: 5rem 0; }
.section-alt { background: var(--warm); }
.section-rose { background: var(--r3); }
.section-green { background: var(--g1); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .eyebrow { margin-bottom: .6rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--g1); font-weight: 300; line-height: 1.15;
}
.section-title em { font-style: italic; font-weight: 400; }
.section-title-white { color: var(--white); }
.section-desc { color: var(--muted); margin-top: .5rem; font-size: .92rem; font-weight: 300; }

/* Decorative rule */
.rule {
  display: flex; align-items: center; gap: .8rem; margin-bottom: 1.8rem;
}
.rule::before, .rule::after {
  content: ''; flex: 1; height: 1px; background: var(--r2); max-width: 40px;
}
.rule-text {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--r2); font-weight: 400; white-space: nowrap;
}

/* ── GRID ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.3rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.3rem; }

/* ── PRODUCT CARD ── */
.card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  cursor: pointer;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--r2); }
.card-img-wrap { position: relative; overflow: hidden; }
.card-img-wrap img { width: 100%; height: 240px; object-fit: cover; transition: transform .5s; }
.card:hover .card-img-wrap img { transform: scale(1.04); }
.card-badges { position: absolute; top: .8rem; left: .8rem; display: flex; gap: .4rem; flex-wrap: wrap; }
.badge {
  display: inline-block; padding: .2rem .65rem;
  border-radius: 100px; font-size: .68rem; font-weight: 500; letter-spacing: .03em;
}
.badge-green { background: rgba(31,77,61,.1); color: var(--g1); }
.badge-rose  { background: rgba(247,214,220,.85); color: var(--g2); }
.badge-offer { background: var(--g1); color: var(--white); }
.badge-easy  { background: rgba(232,168,180,.25); color: var(--g2); }
.badge-unavailable { background: #fff3cd; color: #856404; border: 1px solid #ffc107; }
.planta-unavailable { opacity: .82; }
.card-body { padding: 1.2rem; }
.card-title {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.15rem; color: var(--g1); margin-bottom: .3rem; font-weight: 400;
}
.card-title a { color: inherit; }
.card-desc { font-size: .8rem; color: var(--muted); margin-bottom: .9rem; line-height: 1.55; font-weight: 300; }
.card-footer {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-top: .8rem; border-top: 1px solid var(--line);
}
.card-price { font-size: 1.05rem; font-weight: 500; color: var(--g1); }
.card-price .old { font-size: .78rem; color: var(--muted); text-decoration: line-through; margin-right: .3rem; }
.card-ship { font-size: .7rem; color: var(--muted); margin-top: .15rem; font-weight: 300; }

/* ── FEATURES STRIP ── */
.feats-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  background: var(--line);
}
.feat {
  background: var(--cream); padding: 1.8rem 1.4rem;
  transition: background .22s;
}
.feat:hover { background: var(--r3); }
.feat-icon { font-size: 1.3rem; margin-bottom: .8rem; }
.feat h4 {
  font-family: var(--font-display); font-size: 1.05rem;
  font-style: italic; color: var(--g1); margin-bottom: .3rem; font-weight: 400;
}
.feat p { font-size: .78rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ── MARQUEE ── */
.marquee { background: var(--g1); padding: .65rem 0; overflow: hidden; }
.marquee-track {
  display: flex; width: max-content;
  animation: marqueeScroll 22s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: .6rem;
  padding: 0 2.2rem; font-size: .68rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.7); white-space: nowrap;
}
.marquee-sep { color: var(--r2); font-size: .5rem; }

/* ── HERO ── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: var(--max); margin: 0 auto;
  padding: 0 5vw; min-height: 92vh;
  gap: 4rem; align-items: center;
}
.hero-left { padding: 5rem 0; }
.hero-h1 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(3.2rem, 5.5vw, 5.4rem);
  line-height: 1.03; color: var(--g1); margin-bottom: 1.6rem;
}
.hero-h1 em { font-style: italic; font-weight: 400; display: block; }
.hero-h1 .accent { font-style: italic; color: var(--r2); }
.hero-desc {
  font-size: .97rem; line-height: 1.85; color: var(--muted);
  font-weight: 300; max-width: 380px; margin-bottom: 2.2rem;
}
.hero-btns { display: flex; gap: .8rem; align-items: center; flex-wrap: wrap; margin-bottom: 2.8rem; }
.hero-stats {
  display: flex; gap: 1.5rem;
}
.hstat { display: flex; flex-direction: column; gap: .2rem; }
.hstat-n { font-family: var(--font-display); font-size: 1.8rem; font-style: italic; color: var(--g1); line-height: 1; }
.hstat-l { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 300; }
.stat-sep { width: 1px; background: var(--line); }

/* Hero right */
.hero-right { position: relative; display: flex; align-items: center; justify-content: center; padding: 3rem 0; }
.hero-img-frame {
  width: min(420px,100%); aspect-ratio: 3/4;
  border-radius: 200px 200px 120px 120px;
  background: linear-gradient(170deg, var(--r3) 0%, #d8ede3 60%, #b8d8c4 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 11rem; position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(60,80,50,.12);
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-frame::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(170deg,rgba(247,214,220,.25) 0%,transparent 60%);
  pointer-events: none; z-index: 1;
}
.hero-float {
  position: absolute; bottom: 12%; right: -8%;
  background: var(--white); border-radius: 16px;
  box-shadow: var(--shadow-md); padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: .8rem;
  border: 1px solid var(--line);
  animation: floatCard 4s ease-in-out infinite;
  min-width: 180px;
}
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.fc-dot {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--r3); display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.fc-label { font-size: .68rem; color: var(--muted); letter-spacing: .04em; }
.fc-val { font-size: .88rem; font-weight: 500; color: var(--g1); }
.hero-pill {
  position: absolute; top: 15%; left: -6%;
  background: var(--g1); color: var(--white);
  border-radius: 100px; padding: .55rem 1.1rem;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 400; box-shadow: var(--shadow-md);
}
.hero-circle {
  position: absolute; top: 8%; right: 5%;
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--r1); opacity: .5;
}

/* ── ABOUT SECTION ── */
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.about-visual { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--r3) 0%, #c0dece 60%, #a8ccbc 100%);
  border-radius: 120px 20px 120px 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10rem; overflow: hidden;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-stat {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--g1); color: var(--white);
  border-radius: 20px; padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-lg); text-align: center;
}
.about-stat .n { font-family: var(--font-display); font-size: 2.4rem; font-style: italic; line-height: 1; }
.about-stat .l { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; opacity: .7; margin-top: .2rem; }
.about-deco {
  position: absolute; top: -1rem; left: -1rem;
  width: 80px; height: 80px; border-radius: 50%;
  border: 1px solid var(--r2); opacity: .4;
}
.about-text h2 {
  font-family: var(--font-display); font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 300; color: var(--g1); margin: .6rem 0 1.1rem; line-height: 1.15;
}
.about-text h2 em { font-style: italic; font-weight: 400; }
.about-text p { font-size: .93rem; color: var(--muted); line-height: 1.85; margin-bottom: .8rem; font-weight: 300; }
.about-list { list-style: none; margin: 1.3rem 0 2rem; display: flex; flex-direction: column; gap: .55rem; }
.about-list li { display: flex; align-items: center; gap: .7rem; font-size: .87rem; color: var(--ink); font-weight: 400; }
.about-list li::before { content: ''; width: 20px; height: 1px; background: var(--r2); flex-shrink: 0; }

/* ── CARE CARDS ── */
.care-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
.care-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
  transition: border-color .2s, transform .2s;
}
.care-card:hover { border-color: var(--r2); transform: translateY(-3px); }
.care-card h3 {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.2rem; color: var(--g1); margin-bottom: .5rem; font-weight: 400;
}
.care-card p { font-size: .85rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ── TESTIMONIALS ── */
.testi-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.6rem; border: 1px solid var(--line);
  transition: border-color .2s, transform .2s;
}
.testi-card:hover { border-color: var(--r2); transform: translateY(-3px); }
.testi-stars { display: flex; gap: .25rem; margin-bottom: .8rem; }
.testi-star { width: 11px; height: 11px; fill: var(--r2); }
.testi-text {
  font-family: var(--font-display); font-size: 1.05rem; color: var(--ink);
  line-height: 1.7; font-style: italic; margin-bottom: 1rem; font-weight: 400;
}
.testi-author { font-size: .82rem; font-weight: 500; color: var(--g1); }
.testi-date { font-size: .72rem; color: var(--muted); font-weight: 300; }

/* ── CATALOG (dark section) ── */
.catalog-dark { background: var(--g1); padding: 5rem 0; position: relative; overflow: hidden; }
.catalog-dark::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(247,214,220,.07) 0%, transparent 70%);
  pointer-events: none;
}
.catalog-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.catalog-head h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.8rem);
  color: var(--white); font-weight: 300; line-height: 1.1;
}
.catalog-head h2 em { font-style: italic; font-weight: 400; color: var(--r2); }
.catalog-head p { color: rgba(255,255,255,.5); font-size: .83rem; font-weight: 300; margin-top: .2rem; }

/* Filter pills */
.filter-pills { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.pill {
  padding: .32rem .9rem; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.6); font-size: .72rem;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: all .2s; font-weight: 400;
}
.pill:hover, .pill.active { background: var(--r2); border-color: var(--r2); color: var(--g2); }

/* ── FORMS ── */
.form-wrapper {
  max-width: 600px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: .8rem; font-weight: 400;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--g1); margin-bottom: .4rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .72rem 1rem;
  border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: .9rem; color: var(--ink);
  background: var(--white); outline: none; font-weight: 300;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--g1); box-shadow: 0 0 0 3px rgba(31,77,61,.07);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── MODALS ── */
.modal {
  display: none; position: fixed; inset: 0;
  background: rgba(10,21,16,.5); backdrop-filter: blur(4px);
  z-index: 2000; align-items: center; justify-content: center;
  padding: 1rem; overflow-y: auto;
}
.modal.show { display: flex; }
.modal-box {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); width: 100%; max-width: 540px;
  max-height: 88vh; overflow-y: auto; padding: 2rem;
  animation: modalIn .25s var(--ease);
}
@keyframes modalIn { from { opacity:0; transform: translateY(12px) scale(.98); } to { opacity:1; transform: translateY(0) scale(1); } }
.modal-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.4rem; }
.modal-header h2 { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--g1); font-weight: 400; }
.modal-close {
  background: var(--cream); border: 1px solid var(--line);
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--muted); transition: all .18s; flex-shrink: 0;
}
.modal-close:hover { background: var(--r1); color: var(--g2); }
.kit-item { display: flex; gap: .8rem; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.kit-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.kit-item-info h4 { font-size: .92rem; font-weight: 500; color: var(--g1); }
.kit-item-info p { font-size: .78rem; color: var(--muted); font-weight: 300; }
.modal-footer { margin-top: 1.3rem; display: flex; gap: .6rem; justify-content: flex-end; flex-wrap: wrap; }

/* ── NEWSLETTER ── */
.newsletter-section { background: var(--g2); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.newsletter-section::before {
  content: ''; position: absolute; top: -60px; left: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  border: 1px solid rgba(247,214,220,.12);
}
.newsletter-section::after {
  content: ''; position: absolute; bottom: -80px; right: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  border: 1px solid rgba(247,214,220,.08);
}
.nl-inner { position: relative; z-index: 1; }
.nl-inner h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-style: italic; font-weight: 300; color: var(--white); margin: .6rem 0 .5rem;
}
.nl-inner p { color: rgba(255,255,255,.45); font-size: .88rem; font-weight: 300; margin-bottom: 2rem; }
.nl-form { display: flex; gap: .6rem; max-width: 400px; margin: 0 auto; }
.nl-input {
  flex: 1; padding: .78rem 1.2rem;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07); border-radius: 100px;
  color: var(--white); font-family: var(--font-body); font-size: .88rem; font-weight: 300;
  outline: none; transition: border-color .2s;
}
.nl-input::placeholder { color: rgba(255,255,255,.3); }
.nl-input:focus { border-color: rgba(247,214,220,.5); }
.nl-btn {
  background: var(--r2); color: var(--g2); border: none;
  border-radius: 100px; padding: .78rem 1.5rem;
  font-family: var(--font-body); font-size: .76rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap; transition: all .2s;
}
.nl-btn:hover { background: var(--r1); }

/* ── CAROUSEL ── */
.shipping-carousel { position: relative; max-width: 720px; margin: 0 auto; overflow: hidden; }
.carousel-container { display: flex; transition: transform .5s var(--ease); }
.carousel-slide {
  flex: 0 0 100%; padding: 2rem 1rem;
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 1.1rem;
}
.carousel-slide img { width: 150px; height: 150px; object-fit: cover; border-radius: 50%; border: 2px solid var(--r1); }
.carousel-slide h3 { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--g1); font-weight: 400; }
.carousel-slide p { color: var(--muted); font-size: .9rem; max-width: 360px; font-weight: 300; }
.carousel-nav { display: flex; justify-content: center; gap: .5rem; margin-top: 1.2rem; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); border: none; cursor: pointer; transition: all .2s; padding: 0; }
.carousel-dot.active { background: var(--r2); transform: scale(1.25); }
.carousel-button {
  position: absolute; top: 44%; transform: translateY(-50%);
  background: var(--white); border: 1px solid var(--line);
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--g1); font-size: .9rem;
  box-shadow: var(--shadow-sm); cursor: pointer; z-index: 2;
  transition: all .2s;
}
.carousel-button:hover { background: var(--g1); color: var(--white); border-color: var(--g1); }
.carousel-prev { left: .5rem; }
.carousel-next { right: .5rem; }

/* ── PRODUCT DETAIL ── */
.product-layout { display: grid; grid-template-columns: 72px 1fr 1fr; gap: 2rem; align-items: start; margin: 2rem 0; }
.thumb-list { display: flex; flex-direction: column; gap: .6rem; }
.thumb { width: 72px; height: 72px; border-radius: 10px; overflow: hidden; border: 1.5px solid var(--line); cursor: pointer; transition: border-color .2s; }
.thumb.active, .thumb:hover { border-color: var(--r2); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-main-img { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; }
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-info h1 { font-family: var(--font-display); font-style: italic; font-size: 2.2rem; color: var(--g1); font-weight: 300; }
.product-price { font-size: 1.5rem; font-weight: 500; color: var(--g1); margin: .8rem 0; }
.product-desc { color: var(--muted); line-height: 1.8; margin-bottom: 1.2rem; font-weight: 300; }
.product-feats { background: var(--cream); border-radius: var(--radius); padding: 1.2rem; margin-bottom: 1.2rem; }
.product-feat { display: flex; gap: .8rem; align-items: flex-start; padding: .5rem 0; border-bottom: 1px solid var(--line); }
.product-feat:last-child { border-bottom: none; padding-bottom: 0; }
.feat-label { font-size: .72rem; font-weight: 500; color: var(--g1); text-transform: uppercase; letter-spacing: .06em; min-width: 90px; }
.feat-val { font-size: .85rem; color: var(--muted); font-weight: 300; }
.qty-selector { display: flex; align-items: center; gap: .6rem; border: 1px solid var(--line); border-radius: 10px; padding: .38rem .6rem; width: fit-content; margin-bottom: 1rem; }
.qty-selector button { width: 30px; height: 30px; background: var(--cream); border: none; border-radius: 6px; font-weight: 500; font-size: 1rem; color: var(--g1); transition: all .18s; }
.qty-selector button:hover { background: var(--g1); color: var(--white); }
.qty-selector input { width: 40px; text-align: center; border: none; outline: none; font-family: inherit; font-size: .92rem; font-weight: 500; background: transparent; }

/* ── BACK LINK ── */
.back-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--muted); font-size: .82rem; margin-bottom: 1.5rem; transition: color .18s; letter-spacing: .04em; }
.back-link:hover { color: var(--g1); }

/* ── DISCORD ── */
.discord-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; margin: 2rem 0; }
.discord-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; transition: border-color .2s, transform .2s; }
.discord-card:hover { border-color: var(--r2); transform: translateY(-3px); }
.discord-card h3 { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--g1); margin-bottom: .8rem; font-weight: 400; }
.discord-channels { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.discord-channels li { display: flex; align-items: center; gap: .5rem; font-size: .84rem; font-weight: 300; }
.discord-channels code { background: var(--cream); padding: .18rem .5rem; border-radius: 4px; font-size: .78rem; color: var(--g1); }
.btn-discord {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #5865F2; color: var(--white);
  padding: .8rem 1.8rem; border-radius: 100px;
  font-weight: 400; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
  transition: all .2s; border: none; cursor: pointer;
}
.btn-discord:hover { background: #4752C4; transform: translateY(-2px); }

/* ── FOOTER ── */
.site-footer { background: #0a1510; padding: 3.5rem 0 1.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2.5rem; margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: var(--white); margin-bottom: .5rem; font-weight: 300; }
.footer-desc { font-size: .8rem; color: rgba(255,255,255,.38); line-height: 1.7; font-weight: 300; margin-bottom: 1rem; }
.footer-socials { display: flex; gap: .8rem; }
.footer-socials a { font-size: .78rem; color: rgba(255,255,255,.38); transition: color .2s; }
.footer-socials a:hover { color: var(--r1); }
.footer-col h5 { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--r2); margin-bottom: .9rem; font-weight: 400; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.footer-col ul li a { font-size: .8rem; color: rgba(255,255,255,.38); transition: color .2s; font-weight: 300; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .74rem; color: rgba(255,255,255,.22); flex-wrap: wrap; gap: .5rem; }

/* ── UTILS ── */
.divider { border: none; border-top: 1px solid var(--line); margin: 2rem 0; }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.toast { position: fixed; bottom: 1.5rem; right: 1.5rem; background: var(--g1); color: var(--white); padding: .8rem 1.3rem; border-radius: var(--radius); font-size: .88rem; font-weight: 400; box-shadow: var(--shadow-lg); z-index: 9999; display: flex; align-items: center; gap: .5rem; animation: toastIn .3s ease; letter-spacing: .02em; }
@keyframes toastIn { from { opacity:0; transform: translateY(10px); } to { opacity:1; transform: translateY(0); } }

/* ── SEARCH ── */
.search-wrap { margin-left: auto; display: flex; align-items: center; gap: .4rem; background: var(--white); border: 1px solid var(--line); border-radius: 100px; padding: .38rem .9rem; transition: border-color .2s; }
.search-wrap:focus-within { border-color: var(--g1); }
.search-wrap input { border: none; outline: none; font-family: inherit; font-size: .84rem; background: transparent; color: var(--ink); min-width: 150px; font-weight: 300; }

/* ── FILTERS (tienda) ── */
.filters { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; margin-bottom: 2rem; }
.filter-btn { padding: .38rem .95rem; border-radius: 100px; border: 1px solid var(--line); background: var(--white); color: var(--muted); font-size: .78rem; font-weight: 400; letter-spacing: .04em; cursor: pointer; transition: all .2s; }
.filter-btn:hover, .filter-btn.active { background: var(--g1); color: var(--white); border-color: var(--g1); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); }
  .feats-strip { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 1.5rem; padding: 3rem 5vw; }
  .hero-right { padding: 0; }
  /* Imagen hero en tablet/móvil: formato landscape, no ocupa toda la pantalla */
  .hero-img-frame {
    max-width: 360px;
    aspect-ratio: 4/3;
    border-radius: 20px;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(60,80,50,.15);
  }
  .hero-pill { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  /* Imagen "sobre" en tablet/móvil: también más compacta */
  .about-img {
    aspect-ratio: 16/9;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
  }
  .product-layout { grid-template-columns: 60px 1fr; }
  .product-layout .product-info { grid-column: 1/-1; }
  .discord-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .feats-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.8rem; }
  .nl-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .hero-float, .hero-circle { display: none; }
  .product-layout { grid-template-columns: 1fr; }
  .thumb-list { flex-direction: row; flex-wrap: wrap; }
  .menu-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 0; left: -100%;
    width: min(300px,85vw); height: 100vh;
    background: var(--white); border-right: 1px solid var(--line);
    z-index: 1100; overflow-y: auto;
    padding: 5rem 1rem 2rem;
    transition: left .3s var(--ease);
    display: flex !important; flex-direction: column;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { left: 0; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { border-bottom: 1px solid var(--line); }
  .main-nav a { padding: .9rem 1rem; border-radius: 0; font-size: .88rem; }
  .main-nav a.activo { background: var(--r3); border-left: 2px solid var(--r2); }
  .submenu { position: static !important; opacity: 1 !important; visibility: visible !important; transform: none !important; box-shadow: none !important; border: none !important; padding: 0 !important; display: none; background: var(--cream) !important; }
  li.dropdown.open > .submenu { display: block !important; }
  .submenu a { padding: .6rem 1rem .6rem 2rem !important; font-size: .84rem; }
  body.nav-open { overflow: hidden; }
  .filters { flex-direction: column; align-items: flex-start; }
  .search-wrap { width: 100%; }
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--g2); color: rgba(255,255,255,.85);
  padding: 1.1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { font-size: .82rem; font-weight: 300; margin: 0; max-width: 600px; }
#cookie-banner a { color: var(--r1); border-bottom: 1px solid var(--r2); }
.cookie-actions { display: flex; gap: .6rem; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--r2); color: var(--g2); border: none;
  border-radius: 100px; padding: .5rem 1.2rem;
  font-family: var(--font-body); font-size: .78rem; font-weight: 500;
  cursor: pointer; transition: background .2s; white-space: nowrap;
}
.btn-cookie-accept:hover { background: var(--r1); }
.btn-cookie-reject {
  background: transparent; color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2); border-radius: 100px;
  padding: .5rem 1.2rem; font-family: var(--font-body);
  font-size: .78rem; cursor: pointer; transition: all .2s; white-space: nowrap;
}
.btn-cookie-reject:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* ══════════════════════════════════════════════════════
   MEJORAS MÓVIL — v4
   ══════════════════════════════════════════════════════ */

/* Carrito — botón Finalizar compra con estilo coherente */
#checkout-btn {
  background: var(--g1);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: .65rem 1.2rem;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s, opacity .2s;
  width: 100%;
}
#checkout-btn:hover { background: var(--g2); }

/* Carrito — items con enlace a detalles */
.cart-item img { cursor: pointer; transition: opacity .15s; }
.cart-item img:hover { opacity: .82; }

/* Carrito — ancho mínimo mayor en móvil */
@media (max-width: 640px) {
  #cart-panel {
    width: min(95vw, 380px) !important;
    right: 0 !important;
    left: 0 !important;
    margin: auto !important;
  }
}

/* Filtros tienda — scroll horizontal en móvil */
@media (max-width: 640px) {
  .filters {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .5rem;
    align-items: center;
    gap: .4rem;
  }
  .filters::-webkit-scrollbar { height: 3px; }
  .filters::-webkit-scrollbar-thumb { background: var(--r2); border-radius: 3px; }
  .filter-btn { flex-shrink: 0; }
  .search-wrap { flex-shrink: 0; min-width: 140px; margin-left: 0; }
  .price-dropdown-wrap { flex-shrink: 0; }
  .price-range-inputs { flex-shrink: 0; }
}

/* Tarjetas — texto más legible en móvil */
@media (max-width: 640px) {
  .card-title { font-size: 1rem; }
  .card-desc  { font-size: .8rem; }
  .card-price { font-size: 1rem; }
  .card-body  { padding: .9rem; }
}

/* Hero — reducir padding en móvil muy pequeño */
@media (max-width: 400px) {
  .hero { padding: 2rem 4vw; }
  .hero-h1 { font-size: 2.2rem; }
  .hero-stats { gap: .6rem; }
  .hstat-n { font-size: 1.3rem; }
  /* En móvil muy pequeño la imagen es aún más compacta */
  .hero-img-frame {
    max-width: 280px;
    aspect-ratio: 16/9;
  }
}

/* Producto detalle — layout móvil */
@media (max-width: 640px) {
  .product-layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .thumb-list {
    flex-direction: row;
    overflow-x: auto;
    gap: .5rem;
  }
  .thumb { width: 56px; height: 56px; flex-shrink: 0; }
}

/* Modales — ocupar más pantalla en móvil */
@media (max-width: 640px) {
  .modal-box {
    width: 96vw !important;
    max-width: 96vw !important;
    max-height: 90vh;
    overflow-y: auto;
    padding: 1.3rem !important;
  }
}

/* Galería de kit — scroll en móvil */
@media (max-width: 640px) {
  #kit-items { max-height: 50vh; overflow-y: auto; }
  .kit-item { flex-direction: column; }
  .kit-item img { width: 100%; height: 140px; object-fit: cover; border-radius: 8px; }
}

/* Botón "btn-green" (solicitar planta) */
.btn-green {
  background: var(--g1);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: .75rem 1.8rem;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  display: inline-block;
  text-align: center;
}
.btn-green:hover { background: var(--g2); }

/* Newsletter — input más grande en móvil */
@media (max-width: 640px) {
  .nl-form { flex-direction: column; gap: .7rem; }
  .nl-input { width: 100%; }
  .nl-btn { width: 100%; }
}

/* ══════════════════════════════════════════════
   MEJORAS MÓVIL — v4 update
   ══════════════════════════════════════════════ */

/* Touch targets mínimo 44px en botones clave */
.add-to-cart,
.cart-btn,
.btn-rose,
.btn-green,
.btn-ghost,
.qty-btn,
.filter-btn {
  min-height: 44px;
}

/* Scroll suave en toda la web */
html {
  scroll-behavior: smooth;
}

/* Carrito: scroll interno en móvil */
#cart-list {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Imagen hero: no layout shift */
.hero img {
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* Navbar sticky: ya definida, refuerzo backdrop en Safari */
.site-header {
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
}

/* Links en móvil: área de toque más grande */
@media (max-width: 640px) {
  .main-nav a {
    padding: .75rem 1rem;
    display: block;
  }
  .cart-btn {
    padding: .6rem .9rem;
  }
}
