/* Mercado Latino Pacheco LLC — catalog landing page
   Palette sampled from the business's own printed catalog. */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800;9..144,900&family=Poppins:wght@700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --cream: #FCF8EC;
  --cream-deep: #F6EEDA;
  --ink: #2A2018;
  --red: #9E1C1C;
  --vermillion: #DF2935;
  --orange: #EC6A38;
  --gold: #F7BD1D;
  --teal: #07A67D;
  --pine: #1D5C40;

  --c-bebidas: #216EA4;
  --c-churros: #D62827;
  --c-condimentos: #06A680;
  --c-dulces: #CC7406;
  --c-galletas: #B8752F;
  --c-limpieza: #0B8C8C;
  --c-panaderia: #8B5A2B;
  --c-nostalgicos: #8E4585;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 14px;
  --border: 1px solid rgba(42,32,24,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- flag stripe (recurring brand motif) ---------- */
.flag-stripe {
  display: flex;
  height: 6px;
  width: 100%;
}
.flag-stripe span { flex: 1; }
.flag-stripe .mx { background: linear-gradient(90deg,#0B6623 33%,#FFFFFF 33% 66%,#CE1126 66%); }
.flag-stripe .hn { background: linear-gradient(#00499E 0 33%, #fff 33% 66%, #00499E 66%); }
.flag-stripe .sv { background: linear-gradient(#0047AB 0 33%, #fff 33% 66%, #0047AB 66%); }
.flag-stripe .ni { background: linear-gradient(#0067C6 0 33%, #fff 33% 66%, #0067C6 66%); }

/* ---------- header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(252,248,236,0.94);
  backdrop-filter: blur(6px);
  border-bottom: var(--border);
}
.header-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  flex-wrap: wrap;
}
.header-row img.logo { width: 46px; height: 46px; flex-shrink: 0; }
.header-name { font-family: var(--serif); font-weight: 600; font-size: 1.08rem; line-height: 1.15; }
.header-tag { font-size: 0.74rem; color: var(--pine); font-weight: 600; }
.header-spacer { flex: 1; }

.main-nav { display: flex; gap: 4px; margin-left: 10px; }
.main-nav a {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 999px;
}
.main-nav a:hover { background: var(--cream-deep); }
.main-nav a.current { color: var(--pine); }

.header-search {
  width: 260px;
  max-width: 100%;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(42,32,24,0.2);
  background: #fff;
  font-family: var(--sans);
  font-size: 0.9rem;
}
.header-search:focus { outline: 2px solid var(--teal); outline-offset: 1px; }

.lang-toggle {
  display: inline-flex;
  border: 1.5px solid rgba(42,32,24,0.18);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-toggle button {
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 13px;
  cursor: pointer;
  color: var(--ink);
  min-width: 44px;
}
.lang-toggle button.active { background: var(--pine); color: #fff; }

@media (max-width: 640px) {
  .header-row { padding: 10px 16px; }
  .header-search { order: 3; width: 100%; }
  .header-name { font-size: 1rem; }
  .header-tag { font-size: 0.68rem; }
  .main-nav { margin-left: 0; order: 2; }
  .main-nav a { padding: 6px 10px; font-size: 0.82rem; }
}

/* ---------- hero ---------- */
.hero {
  padding: 56px 0 46px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -18%; right: -12%;
  width: 62%; padding-bottom: 62%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,189,29,0.30), rgba(247,189,29,0) 70%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -25%; left: -10%;
  width: 46%; padding-bottom: 46%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223,41,53,0.14), rgba(223,41,53,0) 70%);
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  line-height: 1.06;
  margin: 0 0 20px;
  color: var(--red);
}
.hero p.lede {
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 46ch;
  color: #4a3d30;
  margin: 0 0 30px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-primary { background: var(--pine); color: #fff; }
.btn-primary:hover { background: #16472F; }
.btn-ghost { border-color: var(--red); color: var(--red); background: transparent; }
.btn-ghost:hover { background: rgba(158,28,28,0.06); }

.hero-art { position: relative; }
.hero-art img { width: 100%; max-width: 560px; margin: 0 auto; display: block; }

.stat-row {
  border-top: var(--border);
  border-bottom: var(--border);
  background: var(--cream-deep);
}
.stat-row .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 26px 28px;
}
.stat { text-align: left; }
.stat .n { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--pine); }
.stat .l { font-size: 0.82rem; color: #5b4c3c; }

/* ---------- shop by category (circles) ---------- */
.shop-cats { padding: 70px 0 20px; }
.section-head { margin-bottom: 30px; }
.section-head h2 { font-family: var(--serif); font-size: 1.9rem; margin: 0 0 6px; font-weight: 600; }
.section-head p { color: #6b5c4b; margin: 0; font-size: 0.96rem; }

.cat-circles {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
}
.cat-circle-btn {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--sans);
  padding: 4px;
}
.cat-circle-img {
  width: 100%; aspect-ratio: 1/1; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 3px solid transparent;
  transition: border-color .15s ease, transform .15s ease;
}
.cat-circle-img img { width: 78%; height: 78%; object-fit: contain; }
.cat-circle-btn:hover .cat-circle-img { transform: translateY(-3px); }
.cat-circle-label { font-size: 0.76rem; font-weight: 700; text-align: center; line-height: 1.25; color: var(--ink); }
.cat-circle-count { font-size: 0.68rem; color: #8a7c6a; }

/* ---------- promo banners ---------- */
.promo-row {
  padding: 56px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.promo-card {
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 190px;
  overflow: hidden;
  position: relative;
}
.promo-card.a { background: linear-gradient(120deg, var(--pine), #123D2A); color: #fff; }
.promo-card.b { background: linear-gradient(120deg, var(--gold), #E8A400); color: #3A2A05; }
.promo-text { flex: 1; }
.promo-eyebrow { font-size: 0.78rem; font-weight: 700; opacity: 0.85; margin-bottom: 6px; }
.promo-card h3 { font-family: var(--serif); font-size: 1.5rem; margin: 0 0 10px; font-weight: 600; line-height: 1.2; }
.promo-card p { margin: 0; font-size: 0.9rem; opacity: 0.92; max-width: 30ch; }
.promo-photo {
  width: 128px; height: 128px; border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,0.85); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
  transform: rotate(4deg);
}
.promo-photo img { width: 86%; height: 86%; object-fit: contain; }

/* ---------- about ---------- */
.about {
  padding: 44px 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about h2 { font-family: var(--serif); font-size: 1.9rem; margin: 0 0 16px; color: var(--ink); font-weight: 600; }
.about p { line-height: 1.65; color: #4a3d30; margin: 0 0 14px; }
.origin-list { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.origin-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 0.95rem; }
.origin-list .swatch { width: 26px; height: 18px; border-radius: 3px; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(0,0,0,0.08); }

/* ---------- catalog ---------- */
.catalog { padding: 20px 0 90px; }
.catalog-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.catalog-head h2 { font-family: var(--serif); font-size: 1.9rem; margin: 0; font-weight: 600; }
.catalog-count { font-size: 0.9rem; color: #6b5c4b; }
.catalog-controls { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.sort-toggle {
  display: inline-flex;
  border: 1.5px solid rgba(42,32,24,0.18);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}
.sort-toggle button {
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 14px;
  cursor: pointer;
  color: var(--ink);
  white-space: nowrap;
}
.sort-toggle button.active { background: var(--pine); color: #fff; }

.cat-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  margin-bottom: 8px;
  scrollbar-width: thin;
}
.cat-pill {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  border: 1.5px solid rgba(42,32,24,0.15);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  color: var(--ink);
}
.cat-pill .num {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.68rem;
  color: #fff;
  font-family: var(--sans);
}
.cat-pill.active { border-color: transparent; color: #fff; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px;
}
.card {
  background: #fff;
  border-radius: 18px;
  border: var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(42,32,24,0.12); }
.card .thumb {
  aspect-ratio: 1 / 1;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.card .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.card .thumb .noimg {
  font-family: var(--serif);
  font-size: 0.78rem;
  color: #9a8a76;
  text-align: center;
  padding: 0 16px;
}
.card .dot { position: absolute; top: 10px; left: 10px; width: 10px; height: 10px; border-radius: 50%; }
.card .body { padding: 14px 15px 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.card .eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.02em; }
.card .marca { font-size: 0.72rem; color: #7a6c5a; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.card .nombre { font-family: var(--serif); font-size: 1.04rem; font-weight: 600; line-height: 1.25; color: var(--ink); }
.card .meta { font-size: 0.78rem; color: #7a6c5a; margin-top: 2px; }
.card .price-row { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; }
.price-pill { font-size: 0.85rem; font-weight: 800; padding: 5px 11px; border-radius: 999px; background: var(--cream-deep); color: #6b5c4b; }
.price-pill.set { background: var(--pine); color: #fff; }
.card { cursor: pointer; }
.card:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }

/* ---------- product modal ---------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(42,32,24,0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  z-index: 100;
  opacity: 0; pointer-events: none;
  transition: opacity .18s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: #fff;
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(10px);
  transition: transform .18s ease;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(42,32,24,0.06);
  border: none; cursor: pointer;
  font-size: 1.1rem; line-height: 1;
  color: var(--ink);
  z-index: 2;
}
.modal-close:hover { background: rgba(42,32,24,0.12); }
.modal-photo {
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  padding: 30px;
  min-height: 220px;
}
.modal-photo img { width: 100%; height: 100%; object-fit: contain; }
.modal-photo .noimg { font-family: var(--serif); color: #9a8a76; text-align: center; font-size: 0.95rem; }
.modal-body { padding: 34px 28px 28px; display: flex; flex-direction: column; }
.modal-eyebrow { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.02em; margin-bottom: 8px; }
.modal-marca { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: #7a6c5a; letter-spacing: 0.04em; }
.modal-nombre { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; line-height: 1.2; margin: 4px 0 18px; color: var(--ink); }
.modal-specs { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.modal-specs li { display: flex; justify-content: space-between; gap: 12px; font-size: 0.92rem; padding-bottom: 12px; border-bottom: 1px solid rgba(42,32,24,0.08); }
.modal-specs .k { color: #8a7c6a; font-weight: 600; }
.modal-specs .v { font-weight: 700; color: var(--ink); text-align: right; }
.modal-cta { margin-top: 24px; font-size: 0.85rem; color: #6b5c4b; }
.modal-cta a { color: var(--pine); font-weight: 700; text-decoration: none; }
.modal-cta a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .modal-box { grid-template-columns: 1fr; max-height: 92vh; }
  .modal-photo { min-height: 180px; padding: 20px; }
  .modal-body { padding: 22px 22px 26px; }
}

.empty-state {
  text-align: center;
  padding: 70px 20px;
  color: #7a6c5a;
  font-family: var(--serif);
  font-size: 1.1rem;
}

/* ---------- contact page ---------- */
.page-hero {
  padding: 50px 0 30px;
  text-align: left;
}
.page-hero h1 { font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 2.7rem); color: var(--red); margin: 0 0 12px; font-weight: 600; }
.page-hero p { color: #4a3d30; max-width: 56ch; line-height: 1.6; margin: 0; }

.map-embed {
  border-radius: 20px;
  overflow: hidden;
  border: var(--border);
  height: 320px;
  margin-bottom: 46px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.map-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pine);
  text-decoration: none;
}
.map-link:hover { text-decoration: underline; }

.phone-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.phone-link:hover { color: var(--pine); }


.contact-grid {
  padding: 10px 0 70px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.contact-block { margin-bottom: 30px; }
.contact-block h3 {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
  margin: 0 0 10px; color: var(--ink);
}
.contact-block p { margin: 0; color: #4a3d30; line-height: 1.6; }
.pending-note {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pine);
  background: rgba(7,166,125,0.1);
  padding: 5px 11px;
  border-radius: 999px;
}

.social-row { display: flex; gap: 22px; margin-top: 6px; }
.social-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-deep);
  color: var(--ink);
  position: relative;
  opacity: 0.55;
  cursor: default;
}
.social-icon svg { width: 21px; height: 21px; fill: currentColor; }
.social-icon .soon-badge {
  position: absolute;
  bottom: -9px; left: 50%; transform: translateX(-50%);
  font-size: 0.55rem;
  font-weight: 800;
  white-space: nowrap;
  background: var(--gold);
  color: #3A2A05;
  padding: 2px 6px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}

.contact-form {
  background: #fff;
  border: var(--border);
  border-radius: 20px;
  padding: 30px;
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-row input, .form-row textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(42,32,24,0.2);
  background: var(--cream);
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus { outline: 2px solid var(--teal); outline-offset: 1px; }
.form-hidden { position: absolute; left: -9999px; }
.form-submit {
  border: none; width: 100%;
  background: var(--pine);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px;
  border-radius: 999px;
  cursor: pointer;
}
.form-submit:hover { background: #16472F; }
.form-note { font-size: 0.76rem; color: #8a7c6a; margin-top: 10px; text-align: center; }

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

/* ---------- footer ---------- */
footer.site {
  background: var(--ink);
  color: #EDE3D2;
  padding: 46px 0 28px;
}
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 44px; height: 44px; }
.footer-brand .name { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; }
.footer-brand .tag { font-size: 0.78rem; color: #B8AB95; }
.footer-note { font-size: 0.82rem; color: #B8AB95; max-width: 34ch; line-height: 1.6; }
footer.site .flag-stripe { margin-top: 30px; opacity: 0.85; }
.footer-bottom { padding-top: 16px; font-size: 0.75rem; color: #8d8171; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .wrap { padding: 0 22px; }
  .hero-grid { gap: 30px; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
}
@media (max-width: 980px) {
  .cat-circles { grid-template-columns: repeat(4, 1fr); row-gap: 26px; }
  .promo-row { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art img { max-width: 320px; }
  .about { grid-template-columns: 1fr; }
  .stat-row .wrap { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .promo-card { flex-direction: column; text-align: center; align-items: center; }
  .promo-photo { transform: none; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-circles { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .cat-circle-label { font-size: 0.68rem; }
  .hero h1 { font-size: 1.9rem; }
}
@media (max-width: 420px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-circles { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}


/* ==================================================================
   REDESIGN 2026 — new header, hero, trust strip, wholesale, footer
   ================================================================== */
.util-bar { background: var(--pine); color: rgba(255,255,255,0.9); font-size: 0.78rem; }
.util-row { display: flex; justify-content: center; align-items: center; padding: 7px 32px; }
.util-right { padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.3); }
.util-right a { color: rgba(255,255,255,0.9); margin: 0 2px; }
.util-social { margin-left: 10px; }

header.site.redesign { background: var(--cream); }
header.site.redesign .header-row2 { display: flex; align-items: center; justify-content: space-between; padding: 8px 32px; max-width: 1180px; margin: 0 auto; }
header.site.redesign .logo-mark img { height: 190px; width: auto; display: block; }
header.site.redesign .main-nav { display: flex; font-weight: 600; font-size: 0.95rem; }
header.site.redesign .main-nav a { color: rgba(42,32,24,0.65); border-bottom: 2px solid transparent; padding-bottom: 3px; margin-right: 34px; }
header.site.redesign .main-nav a.current { color: var(--ink); border-color: var(--red); }
header.site.redesign .header-tools2 { display: flex; align-items: center; }
header.site.redesign .header-search { border: 1px solid rgba(42,32,24,0.2); border-radius: 999px; padding: 8px 16px; font-family: var(--sans); font-size: 0.85rem; margin-right: 14px; width: 180px; }
header.site.redesign .lang-toggle { display: flex; margin-right: 14px; }
header.site.redesign .lang-toggle button { border: 1px solid rgba(42,32,24,0.3); background: transparent; padding: 5px 11px; font-weight: 700; font-size: 0.78rem; font-family: var(--sans); color: var(--ink); cursor: pointer; }
header.site.redesign .lang-toggle button.active { background: var(--ink); color: #fff; border-color: var(--ink); }
header.site.redesign .btn-catalog { background: var(--red); color: #fff; font-weight: 800; padding: 11px 22px; border-radius: 999px; font-size: 0.85rem; white-space: nowrap; }

.hero2 { background-image: url('../images/hero_final.png'); background-size: cover; background-position: center; padding: 44px 0 0; position: relative; overflow: hidden; min-height: 560px; }
.hero2-row { max-width: 1180px; margin: 0 auto; padding: 0 32px 20px; position: relative; z-index: 2; }
.hero2-kicker { color: var(--pine); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 10px; display: flex; align-items: center; }
.kicker-line { display: inline-block; width: 40px; height: 2px; background: #B8860B; margin-left: 10px; }
.hero2-copy { max-width: 460px; background: rgba(252,248,236,0.92); border-radius: 20px; padding: 30px 34px; margin-top: 10px; }
.hero2-copy h1 { font-family: 'Poppins', sans-serif; font-size: 3.2rem; line-height: 1.05; color: var(--pine); font-weight: 800; letter-spacing: 0; text-transform: uppercase; margin: 0 0 20px; }
.hero2-sub { color: #6B5D4D; font-size: 1.02rem; max-width: 36ch; line-height: 1.5; margin-bottom: 28px; }
.hero2-copy .btn-primary { display: inline-block; background: var(--red); color: #fff; font-weight: 800; padding: 16px 28px; border-radius: 999px; font-size: 0.98rem; }

.trust-strip { background: var(--cream-deep); border-bottom: var(--border); }
.trust-row { display: flex; justify-content: center; padding: 24px 32px; flex-wrap: wrap; max-width: 1180px; margin: 0 auto; }
.trust-item { display: flex; align-items: center; margin: 6px 28px; font-size: 0.82rem; color: #6B5D4D; }
.trust-item b { color: var(--ink); font-size: 0.88rem; }
.trust-icon { background: #fff; border: 1.5px solid rgba(158,28,28,0.25); width: 42px; height: 42px; border-radius: 999px; display: flex; align-items: center; justify-content: center; margin-right: 12px; flex-shrink: 0; }

/* single-row pastel category circles (existing #catCircles markup, restyled) */
.cat-circles { grid-template-columns: repeat(8, 1fr); gap: 14px; }
.cat-circle-img { border: none !important; }
.cat-circle-img img { width: 62%; height: 62%; }

.wholesale2 { background: var(--pine); color: #fff; padding: 60px 0; }
.wholesale2-row { display: flex; align-items: center; max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.wholesale2-row > div { width: 48%; }
.wholesale2-row > div:first-child { margin-right: 4%; }
.wholesale2-kicker { color: var(--gold); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 8px; }
.wholesale2-copy h2 { font-family: var(--serif); font-size: 2.2rem; line-height: 1.15; margin: 0 0 18px; color: #fff; }
.wholesale2-copy p { color: rgba(255,255,255,0.85); max-width: 36ch; line-height: 1.55; margin-bottom: 26px; }
.wholesale2-icons { list-style: none; padding: 0; margin: 0 0 26px; }
.wholesale2-icons li { display: flex; align-items: center; color: rgba(255,255,255,0.9); font-weight: 600; font-size: 0.92rem; margin-bottom: 12px; }
.wholesale2-icons li svg { margin-right: 12px; flex-shrink: 0; }
.wholesale2-copy .btn-primary { display: inline-block; background: var(--red); color: #fff; font-weight: 800; padding: 16px 28px; border-radius: 999px; font-size: 0.98rem; }
.wholesale2-art { position: relative; height: 260px; border-radius: 16px; overflow: hidden; background: rgba(255,255,255,0.06); border: 1.5px dashed rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; }
.wholesale2-art::before { content: "Espacio para foto de productos"; color: rgba(255,255,255,0.4); font-size: 0.85rem; font-style: italic; }
.wholesale2-tag { font-family: var(--serif); font-style: italic; font-size: 1rem; text-align: left; opacity: 0.9; margin: 0 0 12px; }

.story2 { padding: 60px 0; max-width: 1180px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.story2-row { display: flex; align-items: center; gap: 50px; }
.story2-row > div { width: 50%; }
.story2 h2 { font-family: var(--serif); font-size: 1.9rem; margin: 0 0 16px; }
.story2 p { color: #6B5D4D; line-height: 1.6; max-width: 42ch; margin-bottom: 14px; }
.ver-todos2 { display: inline-block; margin-top: 8px; font-weight: 700; color: var(--red); }
.catalog-callout2 { display: flex; align-items: center; background: var(--cream-deep); border-radius: 18px; padding: 26px; }
.catalog-mock2 { width: 110px; height: 145px; background: var(--ink); border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-right: 22px; flex-shrink: 0; box-shadow: 0 14px 24px -10px rgba(42,32,24,0.4); }
.catalog-mock2 img { width: 60px; filter: brightness(0) invert(1); opacity: 0.9; }
.catalog-mock2 p { color: var(--gold); font-size: 0.62rem; font-weight: 700; text-align: center; margin-top: 8px; letter-spacing: 0.03em; }
.catalog-callout2 h3 { font-family: var(--serif); font-size: 1.15rem; margin: 0 0 8px; }
.catalog-callout2 p.desc { font-size: 0.85rem; color: #6B5D4D; margin-bottom: 14px; }
.catalog-callout2 .btn-primary { display: inline-block; background: var(--red); color: #fff; font-weight: 800; padding: 14px 24px; border-radius: 999px; font-size: 0.92rem; }

footer.site.redesign { background: var(--pine); color: #fff; padding: 30px 0; margin-top: 0; }
footer.site.redesign .footer2-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.15); max-width: 1180px; margin: 0 auto 20px; padding-left: 32px; padding-right: 32px; }
footer.site.redesign .logo-mark img { height: 46px; }
footer.site.redesign .footer2-nav { display: flex; flex-wrap: wrap; }
footer.site.redesign .footer2-nav a { color: rgba(255,255,255,0.8); margin-right: 22px; font-size: 0.88rem; font-weight: 600; }
footer.site.redesign .footer2-contact { font-size: 0.9rem; font-weight: 600; }
footer.site.redesign .footer2-bottom { text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.6); max-width: 1180px; margin: 0 auto; padding: 0 32px; }

@media (max-width: 860px) {
  header.site.redesign .main-nav, header.site.redesign .header-search { display: none; }
  .wholesale2-row, .story2-row { flex-direction: column; }
  .wholesale2-row > div, .story2-row > div { width: 100%; margin: 0 0 24px 0 !important; }
  .cat-circles { grid-template-columns: repeat(4, 1fr) !important; }
}
