:root {
  --bg: #f7f3eb;
  --surface: #ffffff;
  --surface-2: #efe7da;
  --ink: #181510;
  --muted: #71695f;
  --gold: #d89a18;
  --gold-deep: #b87808;
  --red: #9f3127;
  --dark: #17140f;
  --dark-soft: #242019;
  --dark-muted: #c8bdad;
  --line: #e3d9ca;
  --line-dark: rgba(255, 255, 255, 0.13);
  --shadow: 0 18px 55px rgba(46, 35, 20, 0.1);
  --shadow-strong: 0 28px 80px rgba(33, 24, 14, 0.18);
  --radius: 24px;
  --header-height: 80px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(216, 154, 24, 0.08), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body.no-scroll { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(227, 217, 202, 0.82);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 8px 30px rgba(50, 37, 20, 0.045);
  backdrop-filter: blur(18px) saturate(1.2);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: 0.16em;
}

.brand .enso {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: rgba(216, 154, 24, 0.08);
  color: var(--gold-deep);
  font-family: Georgia, serif;
  font-size: 22px;
  box-shadow: inset 0 0 0 5px rgba(216, 154, 24, 0.05);
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
}

.nav a {
  position: relative;
  padding: 11px 13px;
  border-radius: 999px;
  color: #5f584f;
  font-size: 14px;
  font-weight: 720;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 6px;
  left: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a:hover {
  background: rgba(216, 154, 24, 0.08);
  color: var(--ink);
}

.nav a.active {
  background: #f1e5cf;
  color: var(--ink);
}

.nav a.active::after { transform: scaleX(1); }

.cart-btn,
.primary,
.secondary,
.ghost,
.add-btn,
.checkout-btn {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.cart-btn,
.primary,
.checkout-btn,
.add-btn {
  background: linear-gradient(135deg, #e8ad2d, var(--gold));
  color: #181207;
  box-shadow: 0 10px 24px rgba(184, 120, 8, 0.18);
}

.primary,
.secondary,
.ghost {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  white-space: nowrap;
}

.cart-btn:hover,
.primary:hover,
.checkout-btn:hover,
.add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(184, 120, 8, 0.24);
}

.secondary,
.ghost {
  border: 1px solid #d5c9b8;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
}

.secondary:hover,
.ghost:hover {
  transform: translateY(-2px);
  border-color: #bfae97;
  background: #fff;
}

.cart-count {
  display: grid;
  min-width: 24px;
  height: 24px;
  padding-inline: 5px;
  place-items: center;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  font-size: 11px;
}

.mobile-toggle {
  display: none;
  width: 43px;
  height: 43px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
}

/* Page transitions */
main {
  animation: page-enter 520ms cubic-bezier(.2, .75, .25, 1) both;
}

body.page-leaving main {
  animation: page-leave 210ms ease both;
  pointer-events: none;
}

body.page-leaving .site-header,
body.page-leaving footer {
  opacity: 0.82;
  transition: opacity 180ms ease;
}

.page-transition-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #f1c761, var(--red));
  box-shadow: 0 0 18px rgba(216, 154, 24, 0.5);
  pointer-events: none;
}

body.page-leaving .page-transition-bar {
  width: 100%;
  animation: none;
  transition: width 210ms cubic-bezier(.2, .8, .2, 1);
}

@keyframes transition-arrive {
  from { width: 100%; }
  to { width: 0; }
}

@keyframes page-enter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@keyframes page-leave {
  from { opacity: 1; transform: none; }
  to { opacity: 0; transform: translateY(-8px); }
}

@view-transition { navigation: auto; }
::view-transition-old(root) { animation: page-leave 180ms ease both; }
::view-transition-new(root) { animation: page-enter 400ms ease both; }

/* Hero */
.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
  padding-block: 72px 84px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 5%;
  right: -10%;
  z-index: -1;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 154, 24, 0.15), transparent 68%);
}

.eyebrow,
.kicker {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.19em;
}

.hero h1,
.page-hero h1,
.section-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 760px;
  margin: 17px 0 22px;
  font-size: clamp(50px, 7vw, 88px);
  line-height: 0.99;
}

.hero h1 em {
  color: var(--gold-deep);
  font-weight: 400;
}

.hero p,
.lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero p { max-width: 650px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 31px 0 28px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--muted);
  font-size: 13px;
}

.meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.meta span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-visual {
  position: relative;
  padding: 18px;
  border-radius: 46px 46px 110px 46px;
  background: var(--dark);
  box-shadow: var(--shadow-strong);
}

.hero-visual::before {
  content: "FUSIÓN NIKKEI";
  position: absolute;
  top: 31px;
  left: -28px;
  z-index: 2;
  padding: 9px 14px;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.17em;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 31px 31px 93px 31px;
}

/* Sections */
.section {
  position: relative;
  padding-block: 92px;
}

.section.alt {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(216, 154, 24, 0.15), transparent 24rem),
    linear-gradient(135deg, #191611, #211c15 65%, #17140f);
  color: white;
}

.section.alt::after {
  content: "禅";
  position: absolute;
  right: -40px;
  bottom: -120px;
  color: rgba(255, 255, 255, 0.025);
  font-family: Georgia, serif;
  font-size: 360px;
  pointer-events: none;
}

.section-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 38px;
  margin-bottom: 36px;
}

.section-head h2 {
  margin: 9px 0 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
}

.section-head p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section.alt .section-head p { color: var(--dark-muted); }
.section.alt .kicker { color: #f0be50; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filters button {
  min-height: 43px;
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  cursor: pointer;
  font-weight: 750;
  transition: 180ms ease;
}

.filters button:hover {
  transform: translateY(-1px);
  border-color: #c8b79e;
  color: var(--ink);
}

.filters button.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #1b1408;
  box-shadow: 0 10px 22px rgba(184, 120, 8, 0.17);
}

.grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 35px rgba(43, 31, 17, 0.07);
  color: var(--ink);
  opacity: 0;
  transform: translateY(16px);
  animation: card-in 470ms cubic-bezier(.2, .75, .25, 1) forwards;
  animation-delay: calc(var(--i, 0) * 45ms);
  transition: transform 230ms ease, box-shadow 230ms ease, border-color 230ms ease;
}

.section.alt .card {
  border-color: rgba(255, 255, 255, 0.11);
  background: #242019;
  color: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card:hover {
  transform: translateY(-7px);
  border-color: rgba(216, 154, 24, 0.58);
  box-shadow: var(--shadow);
}

@keyframes card-in {
  to { opacity: 1; transform: none; }
}

.img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.2 / 1;
  background: #ede7de;
  cursor: pointer;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.card:hover .img-wrap img { transform: scale(1.045); }

.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.07em;
  backdrop-filter: blur(10px);
}

.card-body { padding: 21px; }
.card-body small { color: var(--gold-deep); font-weight: 900; }
.section.alt .card-body small { color: #f0be50; }

.card-body h3 {
  margin: 8px 0 10px;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.16;
}

.card-body p {
  min-height: 72px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.section.alt .card-body p { color: var(--dark-muted); }

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

.price-row strong { font-size: 20px; }
.card-actions { display: flex; gap: 8px; }

.icon-btn {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #f7f3ec;
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  transition: 180ms ease;
}

.section.alt .icon-btn {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: white;
}

.icon-btn:hover { transform: rotate(90deg); border-color: var(--gold); }
.add-btn { min-height: 42px; padding: 10px 15px; }

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

.info-card,
.legal-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 35px rgba(43, 31, 17, 0.055);
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 4px;
  border-radius: 0 0 4px 0;
  background: var(--gold);
}

.info-card h3,
.legal-card h2 {
  margin: 12px 0 10px;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 600;
}

.info-card p,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.72;
}

/* Internal pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 66px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 30%, rgba(216, 154, 24, 0.14), transparent 23rem),
    linear-gradient(180deg, #fffdf9, #f5efe5);
}

.page-hero::after {
  content: "禅";
  position: absolute;
  top: 50%;
  right: max(2vw, calc((100vw - 1180px) / 2));
  color: rgba(184, 120, 8, 0.075);
  font-family: Georgia, serif;
  font-size: clamp(120px, 17vw, 250px);
  line-height: 0.6;
  transform: translateY(-50%);
  pointer-events: none;
}

.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 {
  max-width: 830px;
  margin: 12px 0 14px;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1;
}
.page-hero .lead { max-width: 720px; margin-bottom: 0; }

body.page-nosotros .page-hero {
  border-bottom-color: transparent;
  background:
    radial-gradient(circle at 78% 30%, rgba(216, 154, 24, 0.2), transparent 25rem),
    var(--dark);
  color: white;
}
body.page-nosotros .page-hero .lead { color: var(--dark-muted); }
body.page-nosotros .page-hero::after { color: rgba(255, 255, 255, 0.045); }
body.page-nosotros .page-hero .kicker { color: #f0be50; }

.map-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 26px;
  align-items: stretch;
}

.map-layout .info-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.map-layout iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Footer */
footer {
  padding: 52px 0 30px;
  border-top: 1px solid var(--line-dark);
  background: var(--dark);
  color: white;
}

footer .brand { color: white; }
footer .brand small { color: #afa698; }
footer .brand .enso { background: rgba(216, 154, 24, 0.08); color: #efb640; }
footer .lead { color: #b9b0a3; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 56px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 11px;
  color: #b9b0a3;
  font-size: 14px;
}

.footer-links b { margin-bottom: 4px; color: white; }
.footer-links a { transition: color 180ms ease, transform 180ms ease; }
.footer-links a:hover { color: #efb640; transform: translateX(3px); }

.copyright {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  color: #8e867b;
  font-size: 12px;
}

/* Cart and modals */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(16, 13, 9, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
  backdrop-filter: blur(3px);
}
.overlay.show { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  width: min(480px, 100%);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  background: #fffdf9;
  color: var(--ink);
  box-shadow: -30px 0 80px rgba(23, 18, 11, 0.18);
  transform: translateX(102%);
  transition: transform 330ms cubic-bezier(.2, .75, .25, 1);
}
.drawer.show { transform: none; }

.drawer-head,
.drawer-foot { padding: 22px; }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.drawer-head h2 { margin: 0; font-family: Georgia, serif; font-size: 31px; }
.drawer-foot { border-top: 1px solid var(--line); background: #f8f3eb; }
.close {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
  transition: 180ms ease;
}
.close:hover { transform: rotate(90deg); border-color: var(--gold); }

.cart-items { flex: 1; overflow: auto; padding: 12px 22px; }
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item img { width: 72px; height: 72px; border-radius: 15px; object-fit: cover; }
.cart-item small { display: block; margin-top: 4px; color: var(--muted); }
.qty { display: flex; align-items: center; gap: 9px; margin-top: 9px; }
.qty button {
  width: 29px;
  height: 29px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  cursor: pointer;
}
.remove { border: 0; background: none; color: var(--red); cursor: pointer; font-size: 22px; }
.total-line { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 21px; }
.checkout-btn { width: 100%; min-height: 50px; padding: 14px; }
.empty { padding: 70px 15px; color: var(--muted); text-align: center; line-height: 1.7; }

.modal-back {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15, 12, 8, 0.68);
  backdrop-filter: blur(5px);
  animation: modal-back-in 180ms ease both;
}
.modal-back[hidden] { display: none; }

.modal {
  position: relative;
  width: min(780px, 100%);
  max-height: 92vh;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fffdf9;
  color: var(--ink);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.28);
  animation: modal-in 260ms cubic-bezier(.2, .75, .25, 1) both;
}

@keyframes modal-back-in { from { opacity: 0; } }
@keyframes modal-in { from { opacity: 0; transform: translateY(18px) scale(.98); } }

.product-modal { display: grid; grid-template-columns: 1fr 1fr; }
.product-modal > img { width: 100%; height: 100%; min-height: 450px; object-fit: cover; }
.modal-content { padding: 34px; }
.modal-content h2 { margin: 10px 0; font-family: Georgia, serif; font-size: 38px; line-height: 1.07; }
.modal-content p { color: var(--muted); line-height: 1.7; }
.checkout-modal { width: min(650px, 100%); padding: 31px; }

.field { display: grid; gap: 7px; margin: 14px 0; }
.field label { color: var(--muted); font-size: 13px; font-weight: 700; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d9cebd;
  border-radius: 13px;
  outline: none;
  background: white;
  color: var(--ink);
  padding: 12px 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 154, 24, 0.12);
}
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.notice {
  padding: 14px;
  border: 1px solid #e3c66d;
  border-radius: 13px;
  background: #fff8dc;
  color: #795b10;
  font-size: 13px;
  line-height: 1.55;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 25px;
  z-index: 200;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--dark);
  color: white;
  box-shadow: var(--shadow-strong);
  opacity: 0;
  transform: translate(-50%, 100px);
  transition: 280ms ease;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 940px) {
  :root { --header-height: 72px; }
  .nav {
    position: fixed;
    top: var(--header-height);
    right: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    transform: translateY(-12px) scale(.98);
    pointer-events: none;
    transition: 220ms ease;
  }
  .nav.show { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { width: 100%; padding: 13px 15px; }
  .nav a::after { display: none; }
  .mobile-toggle { display: grid; place-items: center; }
  .cart-btn { padding: 10px 13px; }
  .hero, .map-layout, .product-modal { grid-template-columns: 1fr; }
  .hero { gap: 44px; padding-top: 52px; }
  .hero-visual { max-width: 640px; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info-grid, .legal-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-modal > img { min-height: 300px; max-height: 390px; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 24px, 1180px); }
  .header-inner { gap: 10px; }
  .brand { letter-spacing: .12em; }
  .brand small { display: none; }
  .brand .enso { width: 39px; height: 39px; }
  .cart-btn { font-size: 0; }
  .cart-btn::before { content: "Pedido"; font-size: 13px; }
  .cart-count { font-size: 10px; }
  .hero { min-height: auto; padding-block: 45px 65px; }
  .hero h1 { font-size: clamp(46px, 14vw, 65px); }
  .hero-visual { padding: 12px; border-radius: 30px 30px 75px 30px; }
  .hero-visual img { border-radius: 22px 22px 63px 22px; }
  .hero-visual::before { top: 23px; left: -5px; }
  .meta { display: grid; }
  .section { padding-block: 67px; }
  .section-head { display: block; }
  .section-head p { margin-top: 15px; }
  .grid, .info-grid, .legal-grid, .two, .footer-grid { grid-template-columns: 1fr; }
  .card-body p { min-height: 0; }
  .page-hero { padding: 66px 0 52px; }
  .page-hero::after { right: -20px; font-size: 140px; }
  .page-hero h1 { font-size: 49px; }
  .map-layout iframe { min-height: 390px; }
  .modal-content, .checkout-modal { padding: 23px; }
  .product-modal > img { min-height: 235px; max-height: 285px; }
  .modal-content h2 { font-size: 32px; }
  .footer-grid { gap: 28px; }
}

/* Identidad visual Zenko */
.brand-symbol {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(181, 18, 27, 0.18));
  transition: transform 220ms ease, filter 220ms ease;
}

.brand:hover .brand-symbol {
  transform: rotate(-3deg) scale(1.05);
  filter: drop-shadow(0 8px 16px rgba(181, 18, 27, 0.28));
}

footer .brand-symbol {
  width: 54px;
  height: 54px;
  flex-basis: 54px;
  filter: drop-shadow(0 7px 18px rgba(213, 27, 38, 0.32));
}

@media (max-width: 620px) {
  .brand-symbol {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}
