/* WildGarden 2026 - visual system based on the brandbook. */
:root {
  --wg-ink: #253020;
  --wg-moss: #4c6443;
  --wg-cream: #eddecb;
  --wg-linen: #f2ece7;
  --wg-pollen: #ccca9e;
  --wg-white: #fffdf9;
  --wg-line: rgba(37, 48, 32, .16);
  --wg-shadow: 0 18px 48px rgba(37, 48, 32, .12);
  --wg-serif: "EB Garamond", Garamond, Georgia, serif;
  --wg-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }
body {
  color: var(--wg-ink);
  background: var(--wg-white);
  font-family: var(--wg-sans);
  font-size: 16px;
  line-height: 1.55;
}
body::selection { background: var(--wg-pollen); color: var(--wg-ink); }
body.wg-admin-page { background: var(--wg-linen); }
h1, h2, h3, h4, .section-title, .page-title, .hero-title {
  font-family: var(--wg-serif);
  color: var(--wg-ink);
  font-weight: 500;
  line-height: .98;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, .btn-auth, .btn-link, .hero-btn, .add-to-cart, .btn-checkout, .btn-continue {
  min-height: 46px;
  border-radius: 999px;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--wg-pollen);
  outline-offset: 3px;
}
.container, .header-content { max-width: 1240px; padding-left: 28px; padding-right: 28px; }

/* Header and navigation */
.header {
  background: rgba(255, 253, 249, .92);
  border-bottom: 1px solid var(--wg-line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 18px rgba(37, 48, 32, .04);
}
.header-content { min-height: 72px; }
.logo img { width: 42px !important; height: 42px !important; border-radius: 50%; }
.menu-toggle, .search-btn, .cart-btn { color: var(--wg-ink); }
.menu-toggle { border-radius: 50%; }
.menu-toggle span { background: currentColor; }
.header-actions { gap: 10px; }
.header-actions button { width: 44px; min-height: 44px; border-radius: 50%; }
.cart-btn[data-count]::after { background: var(--wg-moss); color: var(--wg-white); }
.nav-menu { background: var(--wg-white); border-bottom: 1px solid var(--wg-line); }
.nav-links a { font-family: var(--wg-serif); font-size: 1.15rem; letter-spacing: .02em; }
.nav-links a::after { background: var(--wg-moss); }

/* Homepage */
.wg-utility-bar {
  /* El header móvil mide 84 px (72 px de contenido + 12 px de padding). */
  margin-top: 84px;
  padding: 9px 24px;
  text-align: center;
  background: var(--wg-ink);
  color: var(--wg-white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero {
  height: min(760px, calc(100svh - 72px));
  min-height: 620px;
  margin-top: 0;
  align-items: flex-end;
  text-align: left;
  padding: clamp(40px, 8vw, 112px) 0;
  background: var(--wg-ink);
}
.hero::before {
  background: linear-gradient(90deg, rgba(24, 31, 21, .84) 0%, rgba(24, 31, 21, .50) 44%, rgba(24, 31, 21, .10) 78%), linear-gradient(0deg, rgba(24, 31, 21, .35), transparent 48%);
}
.hero .hero-content {
  width: min(650px, calc(100% - 56px));
  margin: 0 auto;
  margin-left: max(28px, calc((100vw - 1184px) / 2));
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.hero .hero-kicker, .hero .hero-subtitle {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--wg-cream);
  font-family: var(--wg-sans);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.35;
  text-shadow: none;
}
.hero h1, .hero .hero-title {
  max-width: 12ch;
  margin: 0 0 22px;
  color: var(--wg-white);
  font-size: clamp(3.4rem, 7.5vw, 6.3rem);
  letter-spacing: -.04em;
}
.hero .hero-description {
  max-width: 43ch;
  margin: 0 0 30px;
  color: rgba(255, 253, 249, .94);
  font-family: var(--wg-serif);
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  font-weight: 400;
  line-height: 1.2;
  text-shadow: none;
}
.hero-actions { justify-content: flex-start; gap: 12px; }
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--wg-white);
  background: var(--wg-white);
  color: var(--wg-ink);
  box-shadow: none;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-btn:last-child { background: transparent; color: var(--wg-white); }
.hero-btn:hover { transform: translateY(-2px); background: var(--wg-pollen); border-color: var(--wg-pollen); color: var(--wg-ink); }
.hero-btn:last-child:hover { background: rgba(255,255,255,.16); color: var(--wg-white); }

.shop-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--wg-line);
  border-top: 1px solid var(--wg-line);
  border-bottom: 1px solid var(--wg-line);
}
.shop-benefit { padding: 28px clamp(20px, 4vw, 56px); background: var(--wg-white); }
.shop-benefit__icon { display: block; margin-bottom: 8px; color: var(--wg-moss); font-size: 1.45rem; }
.shop-benefit strong { display: block; font-family: var(--wg-serif); font-size: 1.4rem; font-weight: 500; }
.shop-benefit p { margin: 4px 0 0; color: rgba(37, 48, 32, .75); font-size: .9rem; }

.productos { padding: clamp(72px, 9vw, 128px) 0; }
.section-eyebrow, .suscripciones-subtitle {
  margin: 0 0 12px;
  color: var(--wg-moss);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
.section-title, .section-title-center { margin: 0; font-size: clamp(2.6rem, 5vw, 4.5rem); letter-spacing: -.045em; }
.section-link { color: var(--wg-moss); font-size: .84rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.section-link:hover { color: var(--wg-ink); text-decoration: underline; text-underline-offset: 5px; }
.productos-grid.home-alternating {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 22px;
  margin: 0;
}
.home-alternating .home-spacer { display: none; }
.productos-grid.home-alternating .producto-card,
.productos-grid.home-alternating .home-spacer + .producto-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  border: 0;
  background: transparent;
}
.productos-grid.home-alternating .producto-image {
  flex: none;
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0;
  background: var(--wg-linen) !important;
}
.productos-grid.home-alternating .producto-info,
.productos-grid.home-alternating .home-spacer + .producto-card .producto-info {
  display: block;
  width: 100%;
  padding: 16px 2px 0;
  text-align: left;
}
.producto-nombre, .catalog-item h2 {
  margin: 0;
  font-family: var(--wg-serif);
  font-size: clamp(1.55rem, 2vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -.02em;
}
.producto-precio, .catalog-price { margin: 3px 0 0; color: var(--wg-moss); font-size: .92rem; font-weight: 700; }
.producto-card:hover .producto-image img, .catalog-item:hover .catalog-image img { transform: scale(1.035); }

.wg-carousel, .wg-carousel-track, .wg-carousel-slide { height: 100%; }
.wg-carousel-track { scroll-snap-type: x mandatory; }
.wg-carousel-slide { background: var(--wg-linen); scroll-snap-align: start; }
.wg-carousel-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.wg-carousel-nav { width: 36px; min-height: 36px; border: 0; border-radius: 50%; background: rgba(255, 253, 249, .9); color: var(--wg-ink); }

.brand-story { padding: 0 0 clamp(72px, 10vw, 132px); }
.brand-story-grid { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 580px; background: var(--wg-linen); }
.brand-story-media { min-height: 420px; background: var(--wg-moss); }
.brand-story-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.brand-story-copy { display: grid; align-content: center; padding: clamp(42px, 7vw, 98px); }
.brand-story-copy h2 { max-width: 10ch; margin: 0 0 22px; font-size: clamp(3rem, 5vw, 5.2rem); letter-spacing: -.05em; }
.brand-story-copy p { max-width: 40ch; margin: 0; font-family: var(--wg-serif); font-size: 1.36rem; line-height: 1.25; }
.brand-story-copy .btn-auth { width: max-content; margin-top: 28px; }

.experience-section { padding: clamp(72px, 9vw, 128px) 0; background: var(--wg-ink); color: var(--wg-white); }
.experience-section .section-eyebrow, .experience-section h2 { color: var(--wg-cream); }
.experience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.experience-card { min-height: 280px; padding: 34px; border: 1px solid rgba(237, 222, 203, .35); background: rgba(255, 255, 255, .05); }
.experience-card h3 { margin: 0 0 12px; color: var(--wg-white); font-size: clamp(2rem, 3vw, 2.9rem); }
.experience-card p { max-width: 38ch; margin: 0; color: rgba(255, 253, 249, .85); }
.experience-card a { display: inline-block; margin-top: 22px; color: var(--wg-pollen); font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.local-guide { padding: clamp(72px, 9vw, 116px) 0; }
.local-guide__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 8vw, 116px); align-items: start; }
.local-guide h2 { margin: 0 0 18px; font-size: clamp(3rem, 5vw, 4.7rem); letter-spacing: -.05em; }
.local-guide p { max-width: 47ch; margin: 0; font-size: 1.03rem; }
.local-guide ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 0; padding: 0; list-style: none; background: var(--wg-line); }
.local-guide li { padding: 18px; background: var(--wg-linen); font-family: var(--wg-serif); font-size: 1.35rem; }

.faq-section { padding: 0 0 clamp(72px, 9vw, 120px); }
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-wrap h2 { margin: 0 0 26px; text-align: center; font-size: clamp(2.8rem, 5vw, 4.5rem); letter-spacing: -.05em; }
.faq-item { border-top: 1px solid var(--wg-line); }
.faq-item:last-child { border-bottom: 1px solid var(--wg-line); }
.faq-item summary { display: flex; justify-content: space-between; gap: 20px; padding: 19px 0; cursor: pointer; font-family: var(--wg-serif); font-size: 1.5rem; list-style: none; }
.faq-item summary::after { content: '+'; color: var(--wg-moss); font-family: var(--wg-sans); font-size: 1.3rem; }
.faq-item[open] summary::after { content: '–'; }
.faq-item p { max-width: 68ch; margin: 0; padding: 0 0 20px; }

/* Catalog and product detail */
.page-header {
  margin-top: 72px;
  padding: clamp(70px, 10vw, 132px) 0 clamp(48px, 7vw, 88px);
  text-align: left;
  background: var(--wg-linen);
}
.page-header .page-title { max-width: 12ch; margin: 0 0 12px; font-size: clamp(3.4rem, 7vw, 6rem) !important; letter-spacing: -.055em !important; }
.page-header .page-subtitle { max-width: 52ch; margin: 0; color: var(--wg-moss); font-family: var(--wg-serif); font-size: 1.35rem; }
.productos-catalog { padding: clamp(58px, 8vw, 104px) 0; }
.catalog-controls { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 0 0 28px; }
.catalog-count { color: var(--wg-moss); font-size: .84rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.catalog-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.catalog-filter { min-height: 38px; padding: 0 15px; border: 1px solid var(--wg-line); background: transparent; color: var(--wg-ink); font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.catalog-filter.is-active, .catalog-filter:hover { border-color: var(--wg-ink); background: var(--wg-ink); color: var(--wg-white); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 20px; }
.catalog-item { display: flex; min-width: 0; flex-direction: column; }
.catalog-link { text-decoration: none; }
.catalog-image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--wg-linen) !important; }
.catalog-item h2 { margin-top: 16px; }
.catalog-item .add-to-cart, .btn-add-detail, .btn-checkout, .btn-auth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wg-ink);
  background: var(--wg-ink);
  color: var(--wg-white);
  box-shadow: none;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}
.catalog-item .add-to-cart { width: 100%; margin-top: 15px; }
.catalog-item .add-to-cart:hover, .btn-add-detail:hover, .btn-checkout:hover, .btn-auth:hover { transform: translateY(-2px); background: var(--wg-moss); border-color: var(--wg-moss); }
.catalog-item.is-filtered-out { display: none; }

.product-detail-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(35px, 7vw, 112px); align-items: start; }
.product-detail-image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--wg-linen) !important; }
.product-detail-info { position: sticky; top: 100px; padding-top: 12px; }
.product-detail-title { margin: 0 0 10px; font-size: clamp(3.1rem, 5vw, 4.8rem); letter-spacing: -.055em; }
.product-detail-price { margin: 0 0 24px; color: var(--wg-moss); font-size: 1.05rem; font-weight: 800; }
.product-detail-description { max-width: 50ch; margin: 0 0 24px; color: rgba(37, 48, 32, .82); font-size: 1.03rem; white-space: pre-line; }
.product-detail-message { padding: 20px 0; border-top: 1px solid var(--wg-line); }
.product-detail-message label { display: block; margin-bottom: 8px; font-family: var(--wg-serif); font-size: 1.25rem; }
.product-detail-message textarea { width: 100%; resize: vertical; border: 1px solid var(--wg-line); border-radius: 0; background: var(--wg-white); padding: 12px; }
.product-detail-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.product-detail-actions > * { flex: 1 1 210px; min-height: 50px; }
.wsp-availability { display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--wg-ink); color: var(--wg-ink); font-size: .78rem; font-weight: 800; letter-spacing: .09em; text-decoration: none; text-transform: uppercase; }
.wsp-availability:hover { background: var(--wg-linen); }
.product-assurances { display: grid; gap: 9px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--wg-line); color: var(--wg-moss); font-size: .88rem; }

/* Checkout */
.carrito-section { padding: clamp(48px, 8vw, 96px) 0; }
.carrito-content { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: clamp(28px, 6vw, 74px); align-items: start; }
.carrito-items { min-width: 0; }
.carrito-item { margin: 0 !important; padding: 18px 0; border-bottom: 1px solid var(--wg-line); }
.carrito-item img { width: 88px !important; height: 102px !important; margin: 0 !important; border-radius: 0 !important; }
.item-details h3 { margin: 0; font-size: 1.5rem; }
.item-price, .item-message { margin: 3px 0 0; font-size: .9rem; }
.item-quantity { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--wg-line); padding: 3px; }
.qty-btn, .item-remove { min-height: 30px; width: 30px; border: 0; border-radius: 50%; background: var(--wg-linen); color: var(--wg-ink); }
.item-remove { background: transparent; color: #8a3c35; }
.carrito-resumen { position: sticky; top: 100px; padding: clamp(24px, 4vw, 36px); border: 1px solid var(--wg-line); background: var(--wg-linen); }
.carrito-resumen h3 { margin: 0 0 22px; font-size: 2.2rem; }
.checkout-details { margin: 0 !important; padding: 0 0 19px; border: 0 !important; background: transparent !important; }
.checkout-details-title { margin: 17px 0 12px; color: var(--wg-moss); font-family: var(--wg-sans); font-size: .73rem; font-weight: 800; letter-spacing: .12em; }
.checkout-field { margin-bottom: 14px; }
.checkout-field label { display: block; margin-bottom: 6px; font-family: var(--wg-serif); font-size: 1.14rem; }
.checkout-field input, .checkout-field textarea, .checkout-field select, #discountCode {
  width: 100%; min-height: 44px; border: 1px solid var(--wg-line); border-radius: 0; background: var(--wg-white); padding: 10px 11px; color: var(--wg-ink);
}
.checkout-checkbox { display: flex; align-items: center; gap: 9px; }
.checkout-checkbox label { margin: 0; }
.checkout-checkbox input { width: 18px; min-height: 18px; accent-color: var(--wg-moss); }
.field-help { display: block; margin-top: 5px; color: var(--wg-moss); font-size: .78rem; line-height: 1.35; }
.resumen-line, .resumen-total { padding: 10px 0; border-top: 1px solid var(--wg-line); }
.resumen-total { margin-top: 6px; border-bottom: 1px solid var(--wg-line); font-family: var(--wg-serif); font-size: 1.7rem; }
.btn-checkout, .btn-continue { width: 100%; margin-top: 18px; }
.btn-continue { display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--wg-ink); background: transparent; color: var(--wg-ink); font-size: .78rem; font-weight: 800; letter-spacing: .09em; text-decoration: none; text-transform: uppercase; }
.btn-continue:hover { background: var(--wg-white); }

/* Administration */
.admin-dashboard { padding: clamp(36px, 6vw, 80px) 0; }
.admin-dashboard .cuenta-box, .admin-dashboard .orders-list, .admin-dashboard .auth-card { border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.admin-tools { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0 0 32px; }
.admin-tool { min-height: 112px; padding: 20px; border: 1px solid var(--wg-line); background: var(--wg-white); text-decoration: none; }
.admin-tool strong { display: block; font-family: var(--wg-serif); font-size: 1.75rem; font-weight: 500; }
.admin-tool span { color: var(--wg-moss); font-size: .8rem; }
.admin-tool:hover { background: var(--wg-cream); }
.orders-list { display: grid; gap: 16px; }
.order-card { border: 1px solid var(--wg-line); border-radius: 0; background: var(--wg-white); box-shadow: none; padding: 20px; }
.order-row { align-items: baseline; gap: 18px; }
.order-status, .wg-email-status { display: inline-flex; align-items: center; min-height: 25px; padding: 2px 9px; border-radius: 999px; background: var(--wg-linen); color: var(--wg-moss); font-size: .74rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.wg-email-status--error { background: #fae5df; color: #8a3c35; }
.wg-email-status--sent { background: #e1ecd8; color: #365934; }
.admin-status-select { min-height: 44px; border: 1px solid var(--wg-line); border-radius: 0; padding: 0 8px; background: var(--wg-white); }
.admin-order-delete { border-color: #8a3c35; background: transparent; color: #8a3c35; }
.admin-email-retry { border-color: var(--wg-moss); background: var(--wg-white); color: var(--wg-moss); }
.admin-email-retry:hover { color: var(--wg-white); }
.admin-product-layout, .admin-form-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 30px; }
.admin-products-list, .admin-form, .admin-product-form { padding: 24px; border: 1px solid var(--wg-line); background: var(--wg-white); }
.wg-import-queue { margin: 0 0 26px; padding: clamp(22px, 4vw, 36px); border: 1px solid var(--wg-line); background: var(--wg-cream); }
.wg-import-queue__heading { display: flex; align-items: start; justify-content: space-between; gap: 24px; }
.wg-import-queue h2 { margin: 3px 0 9px; font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -.04em; }
.wg-import-queue__heading p:not(.wg-eyebrow) { max-width: 62ch; margin: 0; }
.wg-import-queue__heading .btn-auth { flex: 0 0 auto; min-height: 46px; padding: 0 16px; }
.wg-import-queue__items { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin: 25px 0 14px; padding: 1px; list-style: none; background: var(--wg-line); }
.wg-import-queue__items li { display: grid; gap: 4px; padding: 15px; background: var(--wg-white); }
.wg-import-queue__items strong { font-family: var(--wg-serif); font-size: 1.25rem; font-weight: 500; }
.wg-import-queue__items span, .wg-import-queue__notice, .wg-import-queue__status { color: var(--wg-moss); font-size: .82rem; line-height: 1.45; }
.wg-import-queue__notice, .wg-import-queue__status { margin: 10px 0 0; }
.wg-import-queue__status { min-height: 1.5em; font-weight: 700; }

/* Contact and footer */
.contacto { padding: clamp(76px, 9vw, 128px) 0; background: var(--wg-cream); }
.contacto-content { align-items: stretch; gap: clamp(36px, 8vw, 110px); }
.contacto-info { display: grid; align-content: start; }
.contacto .section-title-center { text-align: left; }
.contacto-details { gap: 18px; }
.contacto-item h3 { margin: 0 0 3px; font-family: var(--wg-sans); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contacto-item p { margin: 0; font-family: var(--wg-serif); font-size: 1.35rem; }
.contacto-form { padding: clamp(25px, 4vw, 42px); background: var(--wg-white); }
.contacto-form input, .contacto-form textarea { border: 0; border-bottom: 1px solid var(--wg-line); border-radius: 0; background: transparent; padding: 14px 0; color: var(--wg-ink); }
.contacto-form .btn-link { width: 100%; margin-top: 18px; border: 1px solid var(--wg-ink); background: var(--wg-ink); color: var(--wg-white); font-size: .78rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.footer { padding: 56px 0 18px; background: var(--wg-ink); color: var(--wg-white); }
.footer a { color: var(--wg-cream); text-decoration: none; }
.footer a:hover { text-decoration: underline; text-underline-offset: 5px; }
.footer-content { align-items: start; }
.footer-title { color: var(--wg-pollen); font-family: var(--wg-sans); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-bottom { margin-top: 44px; padding-top: 16px; border-color: rgba(255,255,255,.15); color: rgba(255,253,249,.65); font-size: .77rem; }
.whatsapp-float { right: 22px; bottom: 22px; width: 54px; height: 54px; border: 1px solid var(--wg-ink); background: var(--wg-cream); color: var(--wg-ink); box-shadow: var(--wg-shadow); }
.whatsapp-float:hover { transform: translateY(-3px); background: var(--wg-pollen); }
.search-overlay { background: rgba(37,48,32,.94); }
.search-content { background: var(--wg-white); }

@media (min-width: 900px) {
  .header { display: grid; grid-template-columns: 1fr; padding: 0; }
  .header-content { width: 100%; }
  .header .menu-toggle { display: none; }
  .nav-menu { position: static; display: block; width: 100%; height: auto; max-height: none; overflow: visible; padding: 0; border-top: 1px solid var(--wg-line); border-bottom: 0; transform: none; opacity: 1; visibility: visible; }
  .nav-links { display: flex; width: min(1184px, calc(100% - 56px)); margin: 0 auto; padding: 0; flex-direction: row; align-items: center; gap: 30px; }
  .nav-links li { border-bottom: 0; }
  .nav-links a { padding: 8px 0; }
  .nav-links li:last-child { margin-left: auto; }
  /* El header de escritorio tiene dos filas: acciones y navegación. */
  .wg-utility-bar, .page-header { margin-top: 119px; }
}

@media (max-width: 820px) {
  .container, .header-content { padding-left: 20px; padding-right: 20px; }
  .wg-utility-bar { margin-top: 84px; padding: 8px 16px; font-size: .66rem; }
  .hero { min-height: 620px; height: calc(100svh - 70px); }
  .hero .hero-content { width: calc(100% - 40px); margin-left: 20px; }
  .shop-benefits, .experience-grid, .local-guide__grid, .brand-story-grid, .carrito-content, .product-detail-grid { grid-template-columns: 1fr; }
  .shop-benefit { padding: 21px 20px; }
  .productos-grid.home-alternating, .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 13px; }
  .section-heading-row { align-items: start; flex-direction: column; }
  .brand-story-media { min-height: 380px; }
  .brand-story-copy { padding: 42px 24px; }
  .local-guide ul { grid-template-columns: 1fr; }
  .product-detail-info, .carrito-resumen { position: static; }
  .contacto-content { grid-template-columns: 1fr; }
  .admin-tools, .admin-product-layout, .admin-form-grid, .wg-import-queue__items { grid-template-columns: 1fr; }
  .wg-import-queue__heading { flex-direction: column; }
}

@media (max-width: 520px) {
  .hero { min-height: 590px; }
  .hero h1, .hero .hero-title { font-size: clamp(3.25rem, 16vw, 4.6rem); }
  .hero-actions { width: 100%; }
  .hero-btn { flex: 1 1 100%; }
  .shop-benefits { grid-template-columns: 1fr; }
  .productos-grid.home-alternating, .catalog-grid { gap: 26px 11px; }
  .producto-nombre, .catalog-item h2 { font-size: 1.35rem; }
  .catalog-item .add-to-cart { min-height: 42px; padding: 0 8px; font-size: .68rem; }
  .page-header .page-title { font-size: 3.35rem !important; }
  .carrito-item { flex-wrap: wrap; }
  .carrito-item .item-total { margin-left: auto; }
  .order-row { align-items: flex-start; flex-direction: column; gap: 5px; }
}
