:root {
  --bg: #f5f0e6;
  /* fondo crema suave (igual que topbar) */
  --card: #ffffff;
  /* tarjetas blancas */
  --muted: #5d6d65;
  --text: #15201b;
  /* texto oscuro */
  --brand: #7ba86a;
  /* oliva suave */
  --brand-2: #d8c9a6;
  /* beige */
  --brand-3: #b0c4a4;
  /* oliva claro */
  --danger: #d94b4b;

  --text-2: #3c4a42;
  /* gris-verde medio para subtítulos */

  /* Acento dorado/bronce — código visual de lujo, usado con moderación */
  --gold: #a98545;
  --gold-2: #c9a96a;
  --gold-soft: rgba(169, 133, 69, .12);

  --border: rgba(14, 22, 18, .12);
  --shadow: 0 10px 24px rgba(0, 0, 0, .10);
  --shadow-soft: 0 4px 14px rgba(20, 32, 27, .06);
  --shadow-lifted: 0 18px 44px rgba(20, 32, 27, .14);

  --radius: 16px;
  --max: 1100px;
  --pad: 18px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans";
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
}


* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(1200px 700px at 10% 0%, rgba(111, 159, 99, .22), transparent 55%),
    radial-gradient(1000px 600px at 90% 10%, rgba(216, 201, 166, .22), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad)
}

.spacer {
  height: 22px
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(10px);
  background: rgba(245, 240, 230, 0.85); /* Crema/beige clarito */
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .3px;
}

.brand-logo {
  width: 220px;
  height: 110px;
  object-fit: contain;
  border-radius: 7px;
  padding: 1px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
}

.navlinks {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.navlinks a {
  padding: 8px 10px;
  border-radius: 12px;
  color: rgba(14, 22, 18, .78);
}

.navlinks a:hover {
  background: rgba(14, 22, 18, .05);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14, 22, 18, .04);
  border: 1px solid var(--border);
}

.pill strong {
  font-weight: 800
}

/* --- HERO REDESIGN --- */
.hero {
  padding: 60px 0 40px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
}

/* --- HERO FULL WIDTH --- */
.hero-full {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 75px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px var(--pad);
  overflow: hidden;
  color: white;
  text-align: center;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .hero-full {
    min-height: calc(100vh - 65px);
  }
}

.hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.hero-content-full {
  position: relative;
  z-index: 2;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-full .h1 {
  color: white;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-full .hero-desc {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-full .kicker {
  position: absolute;
  top: 20px; /* Mas arriba del cartel */
  left: 50%;
  transform: translateX(-50%);
  color: rgba(216, 201, 166, 0.95); /* Menos difuminado */
  font-weight: 800;
  width: max-content;
  z-index: 10;
}

.hero-full .kicker .dot {
  background: rgba(216, 201, 166, 0.95);
  box-shadow: 0 0 0 4px rgba(216, 201, 166, 0.3);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-desc {
  font-size: 18px;
  max-width: 480px;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-desc {
    margin: 0 auto;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.bottle-wrapper {
  position: relative;
  width: 200px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.bottle-hero {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.bottle-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 20px;
  background: rgba(0, 0, 0, 0.1);
  filter: blur(10px);
  border-radius: 50%;
  z-index: 1;
  animation: shadow-pulse 6s ease-in-out infinite;
}

@keyframes shadow-pulse {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translateX(-50%) scale(0.8);
    opacity: 0.4;
  }

  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.8;
  }
}

.visual-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.visual-badge {
  padding: 10px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.price-tag {
  font-weight: 900;
  font-size: 20px;
  color: var(--text);
  margin-top: 4px;
}

.mini-benefits {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.benefit-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--brand);
}

.btn-lite {
  background: transparent;
  border-color: var(--border);
}

.btn-lite:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* --- Common UI --- */
.card {
  background: var(--card);
  border: 1px solid rgba(14, 22, 18, .08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card-inner {
  padding: 22px
}

.h1 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  color: #0e1612;
}

.h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

.p {
  color: rgba(0, 0, 0, 0.82);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 14px;
  background: rgba(14, 22, 18, .04);
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
  transition: all .2s ease;
}

.btn:hover {
  background: rgba(14, 22, 18, .07);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--text);
  color: white;
  border-color: transparent;
}

.btn-primary:hover {
  background: #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-small {
  padding: 8px 14px;
  font-size: 14px;
}

.trust-row {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.trust-item .icon {
  width: 20px;
  height: 20px;
  color: var(--brand);
}

/* Trust-row sobre el hero (glassmorphism) */
.hero-trust {
  justify-content: center;
  margin-top: 30px;
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(5px);
}

.hero-trust .trust-item {
  color: #fff;
}

.hero-trust .trust-item .icon {
  color: var(--brand-2);
}

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

@media (max-width: 980px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* Grilla de tienda: se centra sola (ideal para catálogos chicos) */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 340px));
  gap: 22px;
  justify-content: center;
}

.product {
  overflow: hidden;
}

.product-media {
  display: block;
  position: relative;
  height: 300px;
  overflow: hidden;
  background:
    radial-gradient(140px 100px at 50% 35%, rgba(122, 168, 106, .14), transparent 70%),
    linear-gradient(135deg, #f5f0e6 0%, #eef1ec 100%);
}

.product-category-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: transparent;
  color: white;
  font-weight: 800;
  font-size: 14px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  z-index: 10;
  pointer-events: none;
  letter-spacing: 0.03em;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.product:hover .product-img {
  transform: scale(1.05);
}

.product-body {
  padding: 20px
}

.detail-img {
  width: 100%;
  display: block;
  max-height: 420px;
  object-fit: cover;
}


.row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center
}

.price {
  font-size: 18px;
  font-weight: 900
}

.badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(14, 22, 18, .04);
  color: rgba(14, 22, 18, .78);
}

.footer {
  margin-top: 60px;
  border-top: 1px solid var(--border);
  padding: 40px 0;
  color: var(--muted);
  font-size: 14px;
}

/* Evitar que se pise con algo del contenido */
main {
  position: relative;
  z-index: 1;
}

/* --- Premium tweaks --- */
.badge-num {
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  padding: 0 7px;
  font-weight: 900;
  font-size: 12px;
}

/* Botones en formularios */
form {
  margin: 0;
}

/* Inputs minimal */
input[type="number"],
input[type="text"],
input[type="email"],
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(14, 22, 18, .14);
  color: var(--text);
  outline: none;
  font-size: 15px;
}

input:focus,
select:focus {
  border-color: var(--brand);
}

.table-wrap {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .75);
  border: 1px solid var(--border);
}

.table th,
.table td {
  padding: 16px;
  border-bottom: 1px solid rgba(14, 22, 18, .10);
  vertical-align: middle;
  text-align: left;
}

.table thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-weight: 800;
}

.navlinks a.is-active {
  background: rgba(122, 168, 106, .10);
  border: 1px solid rgba(122, 168, 106, .28);
  color: var(--text);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
}

.kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(122, 168, 106, .10);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.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;
}

.alerts {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.alert {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 600;
}

.alert-success {
  background: #f0f7ef;
  border-color: #d1e7dd;
  color: #0f5132;
}

.search-form {
  display: flex;
  gap: 8px;
  align-items: center
}

.search-input {
  width: 200px;
  padding: 8px 12px;
  border-radius: 12px;
}

/* ── Pages: About & Contact ── */

.page-header {
  padding: 40px 0 20px 0;
}

.page-header-inner {
  max-width: 680px;
}

.page-subtitle {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.content-section {
  margin-bottom: 20px;
}

/* Feature grid (About page) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  transition: all .3s ease;
  padding: 24px;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 168, 106, .12);
  border: 1px solid rgba(122, 168, 106, .18);
  color: var(--brand);
  margin-bottom: 16px;
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  padding: 24px;
  transition: all .3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 168, 106, .12);
  border: 1px solid rgba(122, 168, 106, .18);
  color: var(--brand);
  margin-bottom: 16px;
}

.navlink {
  white-space: nowrap;
}

/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: white;
  font-weight: 700;
  font-size: 18px;
}

/* --- Shop Filter Refinements --- */
.filter-section {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.filter-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filter-group {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 20px;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .filter-group {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.filter-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon .icon {
  position: absolute;
  left: 14px;
  color: var(--muted);
  width: 18px;
  height: 18px;
}

.input-with-icon input[type="search"] {
  width: 100%;
  padding: 8px 14px 8px 36px !important;
  border-radius: 20px;
  background: rgba(14, 22, 18, 0.03);
  border: 1px solid transparent;
  color: var(--text);
  outline: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.input-with-icon input[type="search"]:focus {
  background: rgba(14, 22, 18, 0.05);
  border-color: rgba(14, 22, 18, 0.1);
}

.filter-select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(14, 22, 18, 0.02);
  font-weight: 600;
  cursor: pointer;
}

.checkbox-wrap {
  height: 46px;
  /* Match input height */
  justify-content: center;
}

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: white;
  border: 2px solid var(--border);
  border-radius: 6px;
  transition: all 0.2s;
}

.checkbox-container:hover input~.checkmark {
  border-color: var(--brand);
}

.checkbox-container input:checked~.checkmark {
  background-color: var(--brand);
  border-color: var(--brand);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked~.checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filter-actions {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.bottle-link {
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.bottle-link:hover {
  transform: scale(1.02);
}

/* ============================================================
   PREMIUM DESIGN SYSTEM — componentes compartidos y flujos
   (serif editorial + acento dorado, coherente con el home)
   ============================================================ */

/* --- Acentos / detalles de marca --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
}

.divider-gold {
  height: 1px;
  border: 0;
  margin: 14px 0 0;
  background: linear-gradient(to right, var(--gold-2), rgba(201, 169, 106, 0) 70%);
}

.gold {
  color: var(--gold);
}

/* --- Encabezado de sección --- */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.page-intro {
  margin: 16px 0 4px;
}

/* --- Botones (variantes faltantes) --- */
.btn-primary:hover {
  background: #0c1a13;
  box-shadow: 0 10px 24px rgba(20, 32, 27, .22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.32);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #946f33 100%);
  color: #fff;
  border-color: transparent;
}

.btn-gold:hover {
  box-shadow: 0 12px 26px rgba(169, 133, 69, .34);
  transform: translateY(-2px);
}

.btn-danger {
  background: rgba(217, 75, 75, .08);
  border-color: rgba(217, 75, 75, .22);
  color: var(--danger);
}

.btn-danger:hover {
  background: var(--danger);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 22px rgba(217, 75, 75, .26);
}

.btn-disabled,
.btn[disabled] {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-block {
  width: 100%;
}

/* --- Helpers de layout --- */
.stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stack-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.num {
  text-align: right;
}

.tiny {
  font-size: 12px;
}

.muted {
  color: var(--muted);
}

.mt-6 {
  margin-top: 6px;
}

.mb-4 {
  margin-bottom: 16px;
}

.label-sm {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-2);
  margin-bottom: 8px;
}

/* --- Formularios --- */
.field-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.field-wrap label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(122, 168, 106, .16);
}

.errorlist {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  color: var(--danger);
  font-size: 13px;
  font-weight: 600;
}

/* --- Lista de datos (checkout / transferencia) --- */
.result-list {
  display: flex;
  flex-direction: column;
}

.result-list .row {
  padding: 12px 0;
  border-bottom: 1px solid rgba(14, 22, 18, .08);
}

.result-list .row:last-child {
  border-bottom: 0;
}

/* --- Tabla premium (carrito) --- */
.table tbody tr {
  transition: background .2s ease;
}

.table tbody tr:hover {
  background: rgba(122, 168, 106, .05);
}

.table th.num,
.table td.num {
  text-align: right;
}

.name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.name-row .icon {
  color: var(--brand);
  flex: none;
}

.cart-thumb {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #f5f0e6, #eef1ec);
  flex: none;
}

.qtyform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

.qty {
  width: 76px !important;
  padding: 9px 10px !important;
  text-align: center;
}

.stock-off {
  background: rgba(217, 75, 75, .08);
  border-color: rgba(217, 75, 75, .22);
  color: var(--danger);
}

.cart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.cart-footer .stack {
  flex-direction: row;
}

.cart-total {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

/* Estado vacío genérico */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 48px 20px;
}

.empty-state .empty-ic {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  color: var(--gold);
}

.empty-state .empty-ic .icon {
  width: 30px;
  height: 30px;
}

/* --- Tienda: cards, filtros activos, paginación --- */
.product {
  transition: transform .25s ease, box-shadow .25s ease;
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lifted);
}

.ph {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(120px 80px at 30% 25%, rgba(122, 168, 106, .18), transparent 70%),
    linear-gradient(135deg, #f5f0e6 0%, #eef1ec 100%);
}

.product-body .price {
  color: var(--gold);
  font-family: var(--font-serif);
}

.price-meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-2);
}

.active-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid rgba(169, 133, 69, .25);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.filter-chip-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(14, 22, 18, .08);
  font-weight: 800;
  line-height: 1;
}

.filter-chip-clear:hover {
  background: var(--danger);
  color: #fff;
}

.results-meta {
  color: var(--text-2);
}

.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* --- Detalle de producto (enriquecido) --- */
.product-detail {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  overflow: hidden;
}

@media (max-width: 860px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
}

.detail-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  background:
    radial-gradient(160px 120px at 50% 30%, rgba(122, 168, 106, .16), transparent 70%),
    linear-gradient(135deg, #f5f0e6 0%, #eef1ec 100%);
  border-right: 1px solid var(--border);
}

@media (max-width: 860px) {
  .detail-media {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}

.detail-media .detail-img {
  max-height: 460px;
  width: auto;
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 24px 44px rgba(20, 32, 27, .18);
  transition: transform .5s ease;
}

.product-detail:hover .detail-media .detail-img {
  transform: scale(1.03);
}

.product-detail > .card-inner {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.product-head {
  align-items: flex-start;
}

.product-title-wrap {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.product-title-wrap > .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex: none;
  background: var(--gold-soft);
  color: var(--gold);
  padding: 9px;
}

.product-intro {
  margin: 8px 0 6px;
}

.detail-price {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 600;
  color: var(--gold);
}

.buybox {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.buy-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 14px;
  align-items: end;
}

.buy-grid .stack {
  grid-column: 1 / -1;
  flex-direction: row;
}

.buy-grid .stack .btn {
  flex: 1;
}

@media (max-width: 520px) {
  .buy-grid {
    grid-template-columns: 1fr;
  }
}

.trust-badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 16px 0 4px;
  margin-top: 4px;
  border-top: 1px solid var(--border);
}

.trust-badges .trust-item .icon {
  color: var(--gold);
}

.tasting-notes {
  margin-top: 6px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(245, 240, 230, .5);
  border: 1px solid var(--border);
  line-height: 1.65;
  color: var(--text-2);
}

.related-head {
  margin: 40px 0 16px;
}

/* --- Checkout: pasos + grid + resumen --- */
.checkout-steps {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.checkout-steps .step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.checkout-steps .step .num-badge {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: rgba(14, 22, 18, .06);
  color: var(--muted);
}

.checkout-steps .step.is-active {
  color: var(--text);
}

.checkout-steps .step.is-active .num-badge {
  background: var(--brand);
  color: #fff;
}

.checkout-steps .sep {
  width: 22px;
  height: 1px;
  background: var(--border);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 22px;
  align-items: start;
}

@media (max-width: 860px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

.order-summary {
  position: sticky;
  top: 90px;
}

@media (max-width: 860px) {
  .order-summary {
    position: static;
  }
}

.summary-total {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
}

/* Radios de método de pago */
.pay-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.pay-methods .checkbox-container {
  padding: 12px 14px 12px 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 100%;
}

.pay-methods .checkbox-container .checkmark {
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.checkbox-container input[type="radio"]:checked ~ .checkmark {
  background-color: var(--brand);
  border-color: var(--brand);
}

.checkbox-container input[type="radio"]:checked ~ .checkmark:after {
  display: block;
  left: 5px;
  top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  border: none;
  transform: none;
}

/* --- Confirmación celebratoria --- */
.confirm-card {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.confirm-ic {
  width: 76px;
  height: 76px;
  margin: 6px auto 4px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f7ef;
  color: #2f7d4f;
  border: 1px solid #d1e7dd;
}

.confirm-ic .icon {
  width: 38px;
  height: 38px;
}

.order-pill {
  display: inline-block;
  margin: 6px 0;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid rgba(169, 133, 69, .25);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--gold);
}

/* --- Datos de transferencia: fila copiable --- */
.bank-card {
  border: 1px solid rgba(169, 133, 69, .25);
  background: linear-gradient(135deg, rgba(169, 133, 69, .06), rgba(255, 255, 255, 0));
  border-radius: 14px;
  padding: 6px 18px;
}

.copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(14, 22, 18, .08);
}

.copy-row:last-child {
  border-bottom: 0;
}

.copy-row .copy-val {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  cursor: pointer;
  transition: all .2s ease;
}

.copy-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.copy-btn.copied {
  background: #f0f7ef;
  border-color: #d1e7dd;
  color: #2f7d4f;
}

/* --- Páginas informativas (about / contact) --- */
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.page-header .h1 {
  margin-top: 8px;
}

.page-header .kicker {
  color: var(--gold);
}

.page-header .kicker .dot {
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
}

.feature-title,
.contact-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.feature-desc,
.contact-detail {
  margin: 0 0 4px;
  color: var(--text-2);
  line-height: 1.55;
}

.contact-note {
  margin-top: 8px;
  font-size: 13px;
}

.feature-icon,
.contact-icon {
  background: var(--gold-soft);
  border-color: rgba(169, 133, 69, .22);
  color: var(--gold);
}

/* Refinamiento del footer */
.footer strong {
  font-family: var(--font-serif);
  font-weight: 600;
}

.footer-legal a:hover {
  color: var(--gold);
}