:root {
  --ink: #201b16;
  --steel: #2c2c2c;
  --coal: #151515;
  --leather: #6b4423;
  --saddle: #9d6734;
  --bone: #f2e8d5;
  --paper: #fbf7ee;
  --terracotta: #8b2e1f;
  --field: #3f5130;
  --muted: #746859;
  --line: rgba(32, 27, 22, 0.14);
  --shadow: 0 24px 80px rgba(20, 16, 12, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.site-locked {
  min-height: 100dvh;
  overflow-x: hidden;
  max-width: 100vw;
}

body.site-locked > *:not(.access-gate) {
  display: none;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

/* ===== GATE — igual a /redes ===== */
.access-gate {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  z-index: 100;
  overflow-x: hidden;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

body:not(.site-locked) .access-gate { display: none; }

@keyframes gFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gate-header-img { animation: gFadeUp 0.5s ease both; animation-delay: 0.05s; }
.gate-tagline    { animation: gFadeUp 0.5s ease both; animation-delay: 0.18s; }
.gate-copy       { animation: gFadeUp 0.5s ease both; animation-delay: 0.3s;  }
.gate-links      { animation: gFadeUp 0.5s ease both; animation-delay: 0.38s; }
.gate-footer-sep { animation: gFadeUp 0.5s ease both; animation-delay: 0.48s; }
.gate-footer-text{ animation: gFadeUp 0.5s ease both; animation-delay: 0.52s; }

/* Fondo */
.gate-bg {
  position: fixed;
  inset: 0;
  background-color: #d9c49a;
  background-image: url('assets/bg-redes.jpg');
  background-size: cover;
  background-position: center bottom;
  z-index: 0;
}

/* Panel — replica exacta del body+wrapper de /redes */
.gate-panel {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 100%;
  max-width: 420px;
  min-height: 100dvh;
  padding: 2rem 1.25rem 1.25rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

/* Logo */
.gate-header-img {
  width: min(780px, 98%);
  max-width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}

/* Tagline / título */
.gate-tagline {
  font-size: 1.05rem;
  color: #2c1a0e;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 0.6rem;
  font-style: normal;
}

/* Descripción */
.gate-copy {
  font-size: 0.88rem;
  color: #4a2c14;
  line-height: 1.65;
  text-align: center;
  margin-bottom: 1.6rem;
}

/* Botones — idénticos a .links / .link-btn de /redes */
.gate-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.gate-link-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: #2c1a0e;
  border: 1px solid #6b3e1e;
  border-radius: 10px;
  text-decoration: none;
  color: #f0d090;
  font-size: 1rem;
  font-family: Georgia, serif;
  letter-spacing: 0.02em;
  transition: background 0.18s, border-color 0.18s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  box-sizing: border-box;
}

.gate-link-btn:hover { background: #3d2510; border-color: #7a4820; }

.gate-btn-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.9;
}
.gate-btn-icon svg { width: 22px; height: 22px; fill: currentColor; }
.gate-btn-text { flex: 1; font-weight: 400; }
.gate-btn-arrow { font-size: 1.1rem; opacity: 0.6; font-family: sans-serif; }

/* Footer */
.gate-footer-sep {
  display: flex; align-items: center; gap: 0.5rem;
  color: #e8d0a0; font-size: 0.85rem; margin-bottom: 0.55rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
.gate-footer-sep span { display: block; width: 18px; height: 1px; background: currentColor; }

.gate-footer-text {
  font-size: 0.85rem; color: #f5e8cc; letter-spacing: 0.06em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6);
}

/* Candado oculto */
.gate-lock {
  position: fixed; bottom: 1.2rem; left: 1.2rem; z-index: 102;
  background: none; border: none; font-size: 1.1rem;
  cursor: pointer; opacity: 0.07; transition: opacity 0.2s; padding: 0.4rem;
}
.gate-lock:hover { opacity: 0.3; }

.gate-form {
  position: fixed; bottom: 3.5rem; left: 1rem; z-index: 102;
  display: none; flex-direction: column; gap: 0.4rem; align-items: flex-start;
}
.gate-form.open { display: flex; }

.gate-input-row { display: flex; gap: 0.4rem; }

.gate-form input {
  background: rgba(44,26,14,0.88); border: 1px solid #6b3e1e;
  border-radius: 6px; color: #f0d090; font-family: Georgia, serif;
  font-size: 0.85rem; padding: 0.45rem 0.7rem; width: 160px; outline: none;
}
.gate-form input::placeholder { color: #8a6040; }

.gate-form .button.primary {
  background: #2c1a0e; border: 1px solid #6b3e1e; border-radius: 6px;
  color: #f0d090; font-size: 1rem; padding: 0.35rem 0.75rem;
  cursor: pointer; min-height: unset;
}

.gate-error {
  font-size: 0.75rem; color: #c0603a; font-family: Georgia, serif; min-height: 18px;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(21, 21, 21, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 82px;
  height: 44px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #050505;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
}

.nav a:hover {
  color: #fff;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.header-cta {
  padding: 0 18px;
  background: var(--bone);
  color: var(--ink);
}

.button {
  padding: 12px 20px;
  text-align: center;
}

.primary {
  background: var(--terracotta);
  color: #fff;
}

.ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.dark {
  background: var(--steel);
  color: #fff;
}

.line {
  border: 1px solid var(--line);
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 12, 10, 0.9), rgba(13, 12, 10, 0.58) 42%, rgba(13, 12, 10, 0.16)),
    linear-gradient(0deg, rgba(13, 12, 10, 0.7), rgba(13, 12, 10, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 36px));
  margin: 0 auto;
  padding: 128px 0 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #e1ba86;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--terracotta);
}

.eyebrow.light {
  color: #f1c989;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 6.6vw, 5.35rem);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 32px 0 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats div {
  min-width: 0;
  padding: 14px 16px;
  background: rgba(20, 16, 12, 0.46);
}

.hero-stats dt {
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--steel);
  color: var(--bone);
}

.trust-band span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
  font-weight: 800;
}

.section {
  padding: clamp(68px, 10vw, 118px) clamp(18px, 5vw, 74px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.intro p:last-child {
  color: var(--muted);
  font-size: 1.12rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fffdf7;
}

.card-number {
  color: var(--terracotta);
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.category-card p {
  color: var(--muted);
}

.category-card a {
  margin-top: auto;
  color: var(--terracotta);
  font-weight: 900;
}

.showcase {
  padding: clamp(68px, 10vw, 110px) 0;
  background: var(--coal);
  color: #fff;
  overflow: hidden;
}

.showcase-heading {
  width: min(1100px, calc(100% - 36px));
  margin: 0 auto 30px;
}

.showcase-heading h2 {
  max-width: 820px;
}

.image-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 max(18px, calc((100vw - 1100px) / 2)) 18px;
  scroll-padding-inline: max(18px, calc((100vw - 1100px) / 2));
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--saddle) rgba(255, 255, 255, 0.12);
  scrollbar-width: thin;
}

.image-scroll::-webkit-scrollbar {
  height: 10px;
}

.image-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
}

.image-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--terracotta), var(--saddle));
}

.visual-card {
  position: relative;
  flex: 0 0 min(78vw, 760px);
  min-height: 430px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #0c0c0c;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.visual-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 220ms ease, opacity 220ms ease;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.05) 58%);
}

.visual-card div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.visual-card span {
  color: #f1c989;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.visual-card h3 {
  max-width: 520px;
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.06;
}

.visual-card:hover img {
  transform: scale(1.035);
  opacity: 1;
}

.knife-section {
  background: var(--steel);
  color: #fff;
}

.spec-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.spec-panel {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 9px 12px;
  background: rgba(242, 232, 213, 0.12);
  color: #f7ead2;
  font-weight: 800;
}

.services {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: start;
}

.service-copy p:last-child,
.location p,
.community p {
  color: var(--muted);
}

.location .hours {
  color: var(--ink);
  font-weight: 800;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list article {
  padding: 24px;
  border-left: 5px solid var(--field);
  background: #fffdf7;
  box-shadow: 0 12px 28px rgba(32, 27, 22, 0.08);
}

.prices {
  background: #ebe0ce;
}

.price-table {
  border: 1px solid rgba(32, 27, 22, 0.16);
  background: var(--paper);
}

.price-table div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, auto);
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 34px);
  border-bottom: 1px solid rgba(32, 27, 22, 0.12);
}

.price-table div:last-child {
  border-bottom: 0;
}

.price-table strong {
  color: var(--terracotta);
  text-align: right;
}

.community {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 86px);
  background: var(--field);
  color: #fff;
}

.community p {
  color: rgba(255, 255, 255, 0.76);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.social-grid a {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.social-grid span {
  color: #f1c989;
  font-weight: 900;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.5fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: stretch;
}

.map-embed {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #d9c8ab;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: saturate(0.82) contrast(1.02);
}

.map-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  background: rgba(21, 21, 21, 0.9);
  color: #fff;
  backdrop-filter: blur(10px);
}

.map-caption span {
  display: block;
  color: var(--terracotta);
  font-weight: 900;
}

.map-caption strong {
  display: block;
  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.map-caption small {
  color: rgba(255, 255, 255, 0.78);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 7vw, 90px);
  padding: clamp(68px, 10vw, 118px) clamp(18px, 5vw, 74px);
  background: var(--coal);
  color: #fff;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 13px 14px;
  outline: 0;
}

.contact-form option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 74px);
  background: #0f0f0f;
  color: rgba(255, 255, 255, 0.72);
}

.footer p {
  margin: 0;
}

.footer a {
  color: #fff;
  font-weight: 900;
}

@keyframes wsp-ripple {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(2.2); opacity: 0; }
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease, background 0.15s ease;
  text-decoration: none;
}

.whatsapp-float::before,
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: wsp-ripple 2.2s ease-out infinite;
  z-index: -1;
}

.whatsapp-float::after {
  animation-delay: 1.1s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background: #1ebe5d;
}

.whatsapp-float span {
  display: none;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  flex-shrink: 0;
}

.contact-page {
  background: #0d0b09;
}

.contact-header {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0));
}

.contact-nav {
  color: rgba(255, 255, 255, 0.88);
}

.social-landing {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 110px clamp(18px, 5vw, 74px) 46px;
  color: #fff;
}

.social-bg,
.social-bg-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.social-bg {
  object-fit: cover;
  filter: blur(1px) saturate(0.82);
  transform: scale(1.03);
}

.social-bg-shade {
  background:
    radial-gradient(circle at 70% 35%, rgba(157, 103, 52, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.44)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 0.1));
}

.social-stage {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 520px);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.social-intro h1 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(3.2rem, 8vw, 7rem);
}

.social-intro p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.13rem;
}

.social-intro .button {
  margin-top: 18px;
}

.phone-shell {
  width: min(100%, 360px);
  justify-self: center;
  padding: 14px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 44px;
  background: linear-gradient(140deg, #0b0b0b, #2b2b2b 54%, #050505);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
}

.phone-top {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  color: #16120e;
  border-radius: 32px 32px 0 0;
  background: var(--paper);
  font-weight: 900;
}

.phone-top span:last-child {
  width: 72px;
  height: 24px;
  border-radius: 999px;
  background: #050505;
}

.phone-content {
  position: relative;
  overflow: hidden;
  min-height: 530px;
  padding: 24px 20px 22px;
  border-radius: 0 0 32px 32px;
  background:
    linear-gradient(180deg, rgba(251, 247, 238, 0.96), rgba(242, 232, 213, 0.96)),
    var(--paper);
  color: var(--ink);
}

.phone-content::before,
.phone-content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.phone-content::before {
  top: 0;
  height: 190px;
  opacity: 0.18;
  background:
    linear-gradient(135deg, transparent 42%, rgba(107, 68, 35, 0.35) 43% 44%, transparent 45%),
    linear-gradient(45deg, transparent 58%, rgba(107, 68, 35, 0.22) 59% 60%, transparent 61%);
}

.phone-content::after {
  bottom: 0;
  height: 118px;
  opacity: 0.18;
  background:
    linear-gradient(135deg, transparent 45%, rgba(107, 68, 35, 0.42) 46% 47%, transparent 48%),
    linear-gradient(45deg, transparent 58%, rgba(107, 68, 35, 0.3) 59% 60%, transparent 61%);
}

.phone-logo {
  position: relative;
  z-index: 1;
  width: min(220px, 92%);
  margin: 0 auto 16px;
}

.phone-kicker {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin: 0 auto 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  line-height: 1.12;
  text-align: center;
}

.social-links-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.social-link {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 12px 16px;
  border: 1px solid rgba(241, 201, 137, 0.18);
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    #2a1307;
  color: #fff;
  box-shadow: 0 12px 28px rgba(32, 19, 7, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 201, 137, 0.5);
  background:
    linear-gradient(135deg, rgba(241, 201, 137, 0.12), rgba(255, 255, 255, 0)),
    #321707;
}

.social-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #f1c989;
}

.social-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link strong,
.social-link small {
  display: block;
}

.social-link strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 2.6vw, 1.28rem);
  line-height: 1.1;
}

.social-link small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.social-arrow {
  color: #f1c989;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 1;
}

.phone-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  color: var(--muted);
  text-align: center;
}

.phone-footer span {
  height: 1px;
  background: rgba(116, 104, 89, 0.32);
}

.phone-footer p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(21, 21, 21, 0.97);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .intro,
  .services,
  .community,
  .location,
  .social-stage,
  .contact {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spec-layout,
  .social-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .gate-input-row {
    grid-template-columns: 1fr;
  }

  .gate-input-row .button {
    width: 100%;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .contact-page .site-header {
    grid-template-columns: 1fr;
  }

  .contact-nav {
    display: none;
  }

  .social-landing {
    min-height: 100svh;
    padding: 84px 14px 20px;
  }

  .social-intro {
    display: none;
  }

  .phone-shell {
    width: 100%;
    max-width: 430px;
    padding: 9px;
    border-radius: 34px;
  }

  .phone-top {
    height: 30px;
    padding-inline: 24px;
    border-radius: 26px 26px 0 0;
    font-size: 0.9rem;
  }

  .phone-top span:last-child {
    width: 64px;
    height: 21px;
  }

  .phone-content {
    min-height: calc(100svh - 158px);
    padding: 28px 16px 22px;
    border-radius: 0 0 26px 26px;
  }

  .phone-logo {
    width: min(280px, 94%);
    margin-bottom: 20px;
  }

  .phone-kicker {
    margin-bottom: 28px;
  }

  .social-link {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    min-height: 72px;
    gap: 11px;
    padding: 12px 14px;
  }

  .social-icon,
  .social-icon svg {
    width: 34px;
    height: 34px;
  }

  .social-link small {
    font-size: 0.78rem;
  }

  .phone-footer {
    margin-top: 34px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    width: min(100% - 28px, 1100px);
    padding-bottom: 26px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions .button,
  .location-actions .button {
    width: 100%;
  }

  .hero-stats,
  .trust-band,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .spec-panel {
    min-height: auto;
  }

  .price-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-table strong {
    text-align: left;
  }

  .footer {
    flex-direction: column;
  }

  .whatsapp-float {
    left: 18px;
    justify-content: center;
  }
}

/* ============================================
   MARKETPLACE / CATÁLOGO
   ============================================ */

/* Announcement bar */
.announce-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px clamp(16px, 4vw, 54px);
  background: #3d2010;
  color: rgba(255,255,255,0.88);
  font-size: 0.8rem;
  z-index: 19;
  position: relative;
}
.announce-bar a { color: inherit; text-decoration: underline; }

/* Centrar el contenido en pantallas anchas (no estirar) */
main { max-width: 1500px; margin-left: auto; margin-right: auto; }
.mkt-header-inner,
.mkt-nav { max-width: 1500px; margin-left: auto; margin-right: auto; }

/* Override base site-header for marketplace */
.mkt-header {
  position: sticky !important;
  top: 0;
  z-index: 20;
  background: #fff !important;
  color: var(--ink) !important;
  padding: 0 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  display: block !important;
  grid-template-columns: unset !important;
}

.mkt-header.is-scrolled {
  background: #fff !important;
  box-shadow: 0 4px 18px rgba(0,0,0,0.13) !important;
}

.mkt-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 12px clamp(16px, 4vw, 54px);
}

.mkt-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.mkt-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border: none;
  background: none;
}

.mkt-brand-header-img {
  width: auto !important;
  height: 100px !important;
  object-fit: contain;
}
@media (max-width: 680px) {
  .mkt-brand-header-img { height: 64px !important; }
}

.mkt-brand strong {
  display: block;
  font-size: 0.98rem;
  font-family: Georgia, serif;
  letter-spacing: 0.04em;
  color: #3d2010;
}

.mkt-brand small {
  display: block;
  font-size: 0.68rem;
  color: #8a6040;
  letter-spacing: 0.1em;
}

.mkt-search {
  display: flex;
  border: 1.5px solid #d4c4a8;
  border-radius: 6px;
  overflow: hidden;
  max-width: 520px;
}

.mkt-search input {
  flex: 1;
  border: none;
  padding: 9px 14px;
  font-size: 0.88rem;
  outline: none;
  background: #faf8f4;
  color: var(--ink);
  min-width: 0;
}

.mkt-search button {
  background: #5c3520;
  border: none;
  padding: 0 14px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.mkt-search svg { width: 17px; height: 17px; }

.mkt-header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.mkt-action-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.mkt-action-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #5c3520;
}

.mkt-action-link small {
  display: block;
  font-size: 0.7rem;
  color: #8a6040;
}

.mkt-action-link strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Marketplace nav */
.mkt-nav {
  display: flex !important;
  gap: 0 !important;
  background: #fff;
  border-top: 1px solid #ede5d8;
  padding: 0 clamp(16px, 4vw, 54px);
  overflow: visible !important;
  color: #3d2010 !important;
  position: relative !important;
  box-shadow: none !important;
  flex-direction: row !important;
}

.mkt-nav a {
  padding: 10px 14px !important;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  border-top: none !important;
  color: #3d2010;
  transition: border-color 0.15s, color 0.15s;
}

.mkt-nav a:hover {
  border-bottom-color: #5c3520;
  color: #5c3520;
}

.mkt-nav .nav-link-hot {
  color: #c0392b;
  font-weight: 700;
}

/* ── Dropdown Cuchillería ── */
.mkt-nav-dropdown {
  position: relative;
}

.mkt-nav-dropdown-btn {
  all: unset;
  display: inline-block;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #3d2010;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.mkt-nav-dropdown:hover .mkt-nav-dropdown-btn,
.mkt-nav-dropdown-btn:focus {
  border-bottom-color: #5c3520;
  color: #5c3520;
}

.mkt-nav-dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  background: transparent;
  border: none;
  border-top: 2px solid #5c3520;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  padding: 16px 0 12px;
  min-width: 340px;
  grid-template-columns: 1fr 1fr;
}

.mkt-nav-dropdown-panel.is-open {
  display: grid;
}

.mkt-nav-dropdown-col {
  padding: 0;
}

.mkt-nav-dropdown-col-header img {
  display: none;
}

.mkt-nav-dropdown-col--cuchillos {
  background: #fdf6eb;
}

.mkt-nav-dropdown-col--navajas {
  background: #ece4d8;
}

.mkt-nav-dropdown-panel--single {
  grid-template-columns: 1fr !important;
  min-width: 220px;
}

.mkt-nav-dropdown-col--tala {
  background: #f2ece2;
}

.mkt-nav-dropdown-col--tala a:hover {
  background: #e8ddd0;
  color: #5c3520;
  padding-left: 22px;
}

.mkt-nav-dropdown-heading {
  margin: 0;
  padding: 12px 16px 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a6040;
  border-bottom: 1px solid rgba(139, 96, 64, 0.2);
}

.mkt-nav-dropdown-col a {
  display: block;
  padding: 7px 16px;
  font-size: 0.85rem;
  color: #3d2010;
  border-bottom: none !important;
  transition: color 0.12s, padding-left 0.12s, background 0.12s;
}

.mkt-nav-dropdown-col--cuchillos a:hover {
  background: #f5e8d0;
  color: #5c3520;
  padding-left: 22px;
}

.mkt-nav-dropdown-col--navajas a:hover {
  background: #ddd0c4;
  color: #5c3520;
  padding-left: 22px;
}

/* Hero */
.mkt-hero {
  position: relative;
  overflow: hidden;
  background: #f1e4cf;
  margin: 20px clamp(16px, 4vw, 54px);
  border-radius: 18px;
  border: 1px solid #e3d4bb;
  box-shadow: 0 12px 34px rgba(40, 24, 12, 0.12);
}
@media (max-width: 600px) {
  .mkt-hero { margin: 12px; border-radius: 14px; }
}

.mkt-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mkt-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #f1e4cf 0%, rgba(241,228,207,0.97) 24%, rgba(241,228,207,0.62) 46%, rgba(241,228,207,0.08) 76%, rgba(241,228,207,0) 100%),
    linear-gradient(0deg, rgba(40,24,12,0.10), rgba(40,24,12,0) 30%);
}

.mkt-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: clamp(210px, 21vw, 280px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px clamp(16px, 4vw, 54px);
}

.mkt-hero-content {
  max-width: 520px;
}

.mkt-hero-brand {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #5c3520;
  line-height: 1;
}

.mkt-hero-eyebrow {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a7748;
  margin: 8px 0 16px;
  padding-bottom: 9px;
  border-bottom: 2px solid rgba(138,90,44,0.3);
}

.mkt-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #1a0e06;
  margin-bottom: 14px;
  line-height: 1.1;
}

.mkt-hero-content p {
  color: #5c4030;
  font-size: 0.98rem;
  margin-bottom: 24px;
  line-height: 1.65;
}

.mkt-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: #5c3520;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s;
}

.mkt-btn:hover { background: #3d2010; }

.mkt-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.mkt-hero-stamp {
  position: absolute;
  z-index: 1;
  bottom: 22px;
  right: 28px;
  width: 72px;
  height: 72px;
  background: rgba(92,53,32,0.88);
  color: #f5e0b0;
  border-radius: 50%;
  border: 2px solid rgba(245,224,176,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.mkt-hero-badges {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  background: #efe2cd;
  border-top: 1px solid #e0d0b6;
}

.mkt-hero-badges > span {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 0.85rem;
  border-right: 1px solid rgba(95,53,32,0.14);
}

.mkt-hero-badges > span:last-child { border-right: none; }

.hero-badge-ico {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  color: #5c3520;
}

.hero-badge-txt { display: flex; flex-direction: column; }

.mkt-hero-badges strong {
  display: block;
  color: #3d2010;
  font-weight: 700;
  font-size: 0.88rem;
}

.mkt-hero-badges small {
  display: block;
  color: #8a6040;
  font-size: 0.76rem;
}

/* Categories */
.mkt-cats {
  padding: 40px clamp(16px, 4vw, 54px);
  background: #fff;
}

.mkt-cats h2 {
  font-size: 1rem;
  font-family: Georgia, serif;
  letter-spacing: 0.1em;
  color: #1a0e06;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 800;
}

.mkt-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.mkt-cat {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  background: #faf8f4;
  border: 1px solid #ede5d8;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.15s, transform 0.15s;
}

.mkt-cat:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.mkt-cat img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.mkt-cat-info {
  padding: 12px 14px 14px;
}

.mkt-cat strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: #1a0e06;
  margin-bottom: 4px;
}

.mkt-cat small {
  display: block;
  font-size: 0.76rem;
  color: #7a5230;
  text-decoration: underline;
}

/* Promo banners */
.mkt-promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mkt-promo-ship {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px clamp(16px, 4vw, 54px);
  background: #3d2010;
  color: #fff;
}

.mkt-promo-ship svg {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  opacity: 0.9;
}

.mkt-promo-ship strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.mkt-promo-ship span {
  display: block;
  font-size: 0.83rem;
  opacity: 0.82;
}

.mkt-promo-off {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(16px, 4vw, 54px);
  background: #7a4d20;
  color: #fff;
}

.mkt-promo-off small {
  display: block;
  font-size: 0.75rem;
  opacity: 0.85;
  letter-spacing: 0.08em;
}

.mkt-promo-off strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.mkt-promo-off > div > span {
  display: block;
  font-size: 0.8rem;
  opacity: 0.85;
}

.promo-leaf { font-size: 2.8rem; }

/* Catalog section */
.mkt-catalog {
  padding: 40px clamp(16px, 4vw, 54px);
  background: #faf8f4;
  max-width: 100%;
}

.mkt-catalog h2 {
  font-size: 1rem;
  font-family: Georgia, serif;
  letter-spacing: 0.1em;
  color: #1a0e06;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 800;
}

.mkt-tabs {
  display: flex;
  border-bottom: 2px solid #ede5d8;
  margin-bottom: 16px;
}

.mkt-tab {
  padding: 10px 20px;
  border: none;
  background: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8a6040;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s;
}

.mkt-tab.active, .mkt-tab:hover {
  color: #5c3520;
  border-bottom-color: #5c3520;
}

.mkt-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.mkt-filter {
  padding: 6px 16px;
  border: 1px solid #d4c4a8;
  border-radius: 999px;
  background: #fff;
  font-size: 0.8rem;
  cursor: pointer;
  color: #5c4030;
  transition: background 0.15s, border-color 0.15s;
}

.mkt-filter.active, .mkt-filter:hover {
  background: #5c3520;
  color: #fff;
  border-color: #5c3520;
}

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

.mkt-card {
  background: #fff;
  border: 1px solid #ede5d8;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.15s, transform 0.15s;
}

.mkt-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.mkt-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f0e8d8;
}

.mkt-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s;
}

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

.mkt-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 4px 10px;
  background: #5c3520;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

.badge-cuero { background: #7a5230; }
.badge-mate { background: #3f5130; }
.badge-afilado { background: #2c4a6e; }

.mkt-card-body { padding: 14px; }

.mkt-card-body h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a0e06;
  margin-bottom: 4px;
  line-height: 1.3;
}

.mkt-card-body p {
  font-size: 0.8rem;
  color: #8a6040;
  margin-bottom: 8px;
}

.mkt-price {
  display: block;
  font-size: 1.08rem;
  font-weight: 800;
  color: #3d2010;
  margin-bottom: 5px;
}

.mkt-stars {
  font-size: 0.8rem;
  color: #c08030;
  margin-bottom: 12px;
}

.mkt-stars small { color: #8a6040; }

.mkt-btn-cart {
  display: block;
  width: 100%;
  padding: 10px;
  background: #5c3520;
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s;
}

.mkt-btn-cart:hover { background: #3d2010; }

/* Trust bar */
.mkt-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #ede5d8;
  gap: 1px;
}

.mkt-trust > span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: #fff;
  font-size: 0.85rem;
}

.trust-icon { font-size: 1.4rem; flex-shrink: 0; }

.mkt-trust strong {
  display: block;
  color: #1a0e06;
  font-size: 0.86rem;
  font-weight: 700;
}

.mkt-trust small {
  display: block;
  color: #8a6040;
  font-size: 0.76rem;
  margin-top: 2px;
}

/* Footer */
.mkt-footer {
  padding: 28px clamp(16px, 4vw, 54px);
  background: #1a0e06;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

.mkt-footer-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.45);
}

.mkt-payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.mkt-payments span {
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}

.mkt-footer-copy {
  font-size: 0.78rem;
  margin: 0;
  color: rgba(255,255,255,0.45);
}

.mkt-footer-copy a { color: rgba(255,255,255,0.7); }

/* ── Scroll entrance animations ── */
.scroll-anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-anim { opacity: 1; transform: none; transition: none; }
}

/* Instagram section */
.mkt-instagram {
  padding: 48px clamp(16px, 4vw, 54px);
  background: #fff;
  border-top: 1px solid #ede5d8;
}

.mkt-instagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.mkt-ig-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mkt-ig-title-wrap svg {
  width: 36px;
  height: 36px;
  color: #5c3520;
  flex-shrink: 0;
}

.mkt-ig-title-wrap h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: #1a0e06;
  margin: 0;
  line-height: 1;
}

#behold-widget-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Section label */
.mkt-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a6040;
  margin-bottom: 10px;
}

/* Specs section */
.mkt-specs {
  padding: 52px clamp(16px, 4vw, 54px);
  background: #fff;
}

.mkt-specs-header {
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: center;
}

.mkt-specs-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #1a0e06;
  margin-bottom: 10px;
}

.mkt-specs-header p {
  color: #7a6050;
  font-size: 0.95rem;
}

.mkt-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 28px;
}

.mkt-spec-card {
  padding: 26px;
  background: #faf8f4;
  border: 1px solid #ede5d8;
  border-radius: 8px;
}

.mkt-spec-icon { font-size: 1.6rem; margin-bottom: 12px; }

.mkt-spec-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a0e06;
  margin-bottom: 12px;
}

.mkt-spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mkt-spec-list li {
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #d4c4a8;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #5c4030;
  font-weight: 600;
}

.mkt-specs-cta { text-align: center; }

/* Location section */
.mkt-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #faf8f4;
  border-top: 1px solid #ede5d8;
}

.mkt-location-info {
  padding: 52px clamp(16px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mkt-location-info h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #1a0e06;
  margin-bottom: 10px;
}

.mkt-location-info p {
  color: #7a6050;
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.mkt-hours {
  font-weight: 600;
  color: #3d2010 !important;
  background: #fff;
  border: 1px solid #ede5d8;
  border-radius: 6px;
  padding: 10px 14px !important;
  margin-bottom: 20px !important;
  font-size: 0.88rem !important;
}

.mkt-location-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mkt-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  background: #fff;
  color: #5c3520;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: 4px;
  border: 1.5px solid #5c3520;
  transition: background 0.15s;
}

.mkt-btn-outline:hover { background: #faf0e8; }

.mkt-map-wrap {
  height: 100%;
  min-height: 360px;
  overflow: hidden;
}

.mkt-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  filter: saturate(0.9);
}

/* Contact section */
.mkt-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-top: 1px solid #ede5d8;
}

.mkt-contact-intro {
  padding: 52px clamp(16px, 4vw, 54px);
  background: #3d2010;
  color: #fff;
}

.mkt-contact-intro .mkt-section-label {
  color: rgba(255,255,255,0.55);
}

.mkt-contact-intro h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.mkt-contact-intro p {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.mkt-contact-data {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mkt-contact-data span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
}

.mkt-contact-form {
  padding: 52px clamp(16px, 4vw, 54px);
  display: grid;
  gap: 14px;
  background: #faf8f4;
}

.mkt-contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #3d2010;
}

.mkt-contact-form input,
.mkt-contact-form select,
.mkt-contact-form textarea {
  width: 100%;
  border: 1.5px solid #d4c4a8;
  background: #fff;
  color: var(--ink);
  padding: 11px 14px;
  border-radius: 6px;
  outline: none;
  font-size: 0.9rem;
  transition: border-color 0.15s;
}

.mkt-contact-form input:focus,
.mkt-contact-form select:focus,
.mkt-contact-form textarea:focus {
  border-color: #5c3520;
}

.mkt-contact-form textarea { resize: vertical; }

/* ---- Responsive marketplace ---- */
@media (max-width: 980px) {
  .mkt-header-inner { grid-template-columns: auto 1fr auto; }
  .mkt-header-actions { display: none; }
  .mkt-cats-grid, .mkt-products { grid-template-columns: repeat(2, 1fr); }
  .mkt-promos { grid-template-columns: 1fr; }
  .mkt-trust { grid-template-columns: repeat(2, 1fr); }
  .mkt-hero-inner { min-height: 260px; padding: 22px clamp(16px,4vw,54px); }
  .mkt-hero-overlay {
    background:
      linear-gradient(90deg, #f1e4cf 0%, rgba(241,228,207,0.92) 35%, rgba(241,228,207,0.55) 65%, rgba(241,228,207,0.2) 100%),
      linear-gradient(0deg, rgba(40,24,12,0.12), rgba(40,24,12,0) 40%);
  }
  .announce-bar span:first-child,
  .announce-bar span:last-child { display: none; }
  .announce-bar { justify-content: center; }
  .mkt-specs-grid { grid-template-columns: 1fr; }
  .mkt-location { grid-template-columns: 1fr; }
  .mkt-map-wrap { min-height: 280px; }
  .mkt-contact { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .mkt-search { display: none; }
  .mkt-header-inner { grid-template-columns: 1fr auto; }
  .mkt-cats-grid, .mkt-products { grid-template-columns: 1fr; }
  .mkt-trust { grid-template-columns: 1fr; }
  .mkt-hero-badges { flex-direction: column; gap: 1px; }
  .announce-bar { display: none; }
  .mkt-tabs { overflow-x: auto; }
  .mkt-location-btns { flex-direction: column; }
  .mkt-about-inner { grid-template-columns: 1fr; }
  .mkt-about-cards { grid-template-columns: 1fr 1fr; }
  .mkt-about-card--wide { grid-column: span 2; }
}

/* ===== QUIÉNES SOMOS ===== */
.mkt-about {
  background: #3d2010;
  color: var(--bone);
  padding: 52px clamp(16px, 4vw, 54px);
}

.mkt-about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.mkt-about .mkt-section-label {
  color: rgba(255, 255, 255, 0.55);
}

.mkt-about h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 8px 0 20px;
  color: #fff;
  line-height: 1.2;
}

.mkt-about-text p {
  color: rgba(242, 232, 213, 0.78);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 14px;
}

.mkt-about-text p strong {
  color: var(--bone);
  font-weight: 600;
}

.mkt-about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mkt-about-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(242, 232, 213, 0.12);
  border-radius: 8px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 150ms ease, border-color 150ms ease;
}

.mkt-about-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(242, 232, 213, 0.25);
}

.mkt-about-card--wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.mkt-about-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: #e8c48a;
}

.mkt-about-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}

.mkt-about-card strong {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mkt-about-card small {
  color: rgba(242, 232, 213, 0.58);
  font-size: 0.8rem;
  line-height: 1.45;
}

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