:root {
  --c-fire: #8b0000;
  --c-ember: #ff4500;
  --c-wood: #a0522d;
  --c-charcoal: #000000;
  --c-wheat: #f5deb3;
  --c-ash: #161616;
  --c-ink: #0f0f0f;
  --c-text: #f8f2ea;
  --c-muted: rgba(248, 242, 234, 0.78);
  --c-border: rgba(245, 222, 179, 0.22);

  --shadow-1: 0 12px 30px rgba(0, 0, 0, 0.55);
  --shadow-2: 0 10px 18px rgba(0, 0, 0, 0.45);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --container: 1160px;
  --gutter: 20px;
  --header-h: 76px;
  --section-pad: clamp(52px, 6vw, 96px);
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Cormorant Garamond", Georgia, serif;

  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: radial-gradient(1200px 500px at 20% 0%, rgba(255, 69, 0, 0.18), transparent 60%),
    radial-gradient(900px 550px at 70% 10%, rgba(210, 105, 30, 0.18), transparent 62%),
    linear-gradient(180deg, #070707 0%, #0b0b0b 40%, #060606 100%);
  color: var(--c-text);
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 69, 0, 0.9);
  outline-offset: 3px;
}

section,
header,
footer {
  scroll-margin-top: calc(var(--header-h) + 14px);
}

:target {
  scroll-margin-top: calc(var(--header-h) + 14px);
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid var(--c-border);
  transform: translateY(-150%);
  transition: transform 160ms ease;
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 69, 0, 0.2);
}

.site-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-header__controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand__logo {
  width: 140px;
  height: auto;
}

@media (min-width: 768px) {
  .brand__logo {
    width: 180px;
  }
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--c-border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--c-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__icon::before {
  top: -7px;
}

.nav-toggle__icon::after {
  top: 7px;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  padding: 14px var(--gutter) 18px;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--c-border);
}

.site-nav[aria-hidden="false"] {
  display: flex;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-nav__link {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
}

.site-nav__link:hover {
  border-color: rgba(255, 69, 0, 0.4);
  background: linear-gradient(90deg, rgba(255, 69, 0, 0.22), rgba(210, 105, 30, 0.12));
}

.site-nav__link--cta {
  border-color: rgba(255, 69, 0, 0.5);
  background: linear-gradient(90deg, rgba(255, 69, 0, 0.35), rgba(210, 105, 30, 0.2));
}

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-switch__current {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--c-border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--c-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.lang-switch__current-text {
  font-size: 0.9rem;
}

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 72px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid var(--c-border);
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  display: grid;
  gap: 6px;
  z-index: 1100;
}

.lang-switch__btn {
  border-radius: 999px;
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--c-text);
  padding: 8px 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.lang-switch__btn[aria-current="true"] {
  border-color: rgba(255, 69, 0, 0.65);
  background: rgba(255, 69, 0, 0.18);
}

@media (max-width: 420px) {
  .brand__logo {
    width: 128px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .lang-switch__current {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .site-nav {
    padding: 12px var(--gutter) 16px;
    gap: 12px;
  }

  .site-nav__list {
    gap: 4px;
  }

  .site-nav__link {
    padding: 10px 10px;
    border-radius: 12px;
    font-size: 0.98rem;
  }
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .site-nav__list {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .site-nav__link {
    padding: 10px 12px;
    background: transparent;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(90deg, rgba(255, 69, 0, 0.62), rgba(139, 0, 0, 0.72));
  border-color: rgba(255, 69, 0, 0.5);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 222, 179, 0.25);
}

.btn--whatsapp {
  background: linear-gradient(90deg, #25d366, #128c7e);
  border-color: rgba(255, 255, 255, 0.18);
  color: #071a12;
}

.btn--whatsapp:hover {
  background: linear-gradient(90deg, #1fc85e, #0f7a6e);
}

.contact__whatsapp-btn {
  margin-top: 10px;
}

.link--invert {
  color: var(--c-text);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: stretch;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.54) 55%, rgba(0, 0, 0, 0.74) 100%);
}

.hero__content {
  padding: clamp(24px, 4vw, 52px) var(--gutter);
  display: grid;
  align-items: center;
}

.hero__grid {
  display: grid;
  gap: 22px;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(245, 222, 179, 0.92);
  margin: 0 0 10px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.02;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.hero__lead {
  margin: 0 0 18px;
  color: var(--c-muted);
  max-width: 60ch;
}

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

.hero__info {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 222, 179, 0.24);
  background: rgba(0, 0, 0, 0.38);
  padding: 18px 18px;
  box-shadow: var(--shadow-2);
}

.hero__info-title {
  margin: 0 0 10px;
  font-weight: 800;
  color: rgba(255, 69, 0, 0.92);
}

.hero__info-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(245, 222, 179, 0.92);
}

.hero__info-text {
  margin: 12px 0 0;
  color: var(--c-muted);
}

.section {
  position: relative;
  padding: var(--section-pad) 0;
}

.section__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.7;
}

.section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.72));
}

.section__overlay--soft {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.62));
}

.section__overlay--strong {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.76));
}

.section__header {
  margin-bottom: 18px;
}

.section__title {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.6vw, 48px);
  margin: 0 0 8px;
  letter-spacing: -0.015em;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

.section__lead {
  margin: 0;
  color: var(--c-muted);
  max-width: 70ch;
}

.cards {
  display: grid;
  gap: 14px;
}

@media (min-width: 768px) {
  .cards--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .cards--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  background: rgba(0, 0, 0, 0.35);
  padding: 16px 16px;
  box-shadow: var(--shadow-2);
}

.card__title {
  margin: 0 0 8px;
  font-weight: 800;
  color: rgba(245, 222, 179, 0.95);
}

.card__text {
  margin: 0;
  color: var(--c-muted);
  white-space: pre-line;
}

.kitchen__kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: rgba(255, 69, 0, 0.86);
}

.kitchen__title {
  margin: 0 0 10px;
}

.kitchen__lead {
  margin: 0 0 14px;
  color: var(--c-muted);
}

.kitchen__bottom {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

@media (min-width: 1024px) {
  .kitchen__bottom {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.kitchen__dryaged {
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  background: rgba(0, 0, 0, 0.35);
  padding: 16px;
  box-shadow: var(--shadow-2);
}

.kitchen__sub {
  margin: 0 0 6px;
  font-weight: 900;
}

.kitchen__meta {
  margin: 0 0 10px;
  color: rgba(245, 222, 179, 0.88);
}

.kitchen__text {
  margin: 0 0 12px;
  color: var(--c-muted);
}

.kitchen__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(245, 222, 179, 0.18);
  box-shadow: var(--shadow-2);
  background: rgba(0, 0, 0, 0.35);
  aspect-ratio: 1024 / 682;
}

.kitchen__image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}

.list {
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--c-muted);
}

.list--checks {
  list-style: none;
  padding-left: 0;
}

.list--checks li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}

.list--checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 69, 0, 0.95), rgba(139, 0, 0, 0.85));
  box-shadow: 0 0 0 2px rgba(255, 69, 0, 0.14);
}

.list--dots {
  padding-left: 18px;
}

.section--menu {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  --menu-font-title: "Libre Baskerville", Georgia, serif;
  --menu-font-body: "Merriweather", Georgia, serif;
  --menu-ink: #111;
  --menu-gold: #c9a43a;
  --menu-accent: #d2691e;
}

.section--menu .section__media {
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.section--menu .section__media--black {
  opacity: 1;
  background: #000;
}

.section--menu .section__content {
  position: relative;
  z-index: 2;
}

.section__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.section--menu .section__overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.85) 20%,
    rgba(0, 0, 0, 0.8) 50%,
    rgba(0, 0, 0, 0.85) 80%,
    rgba(0, 0, 0, 0.9) 100%
  );
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Safety: menu content must never be hidden on mobile */
.menu.reveal {
  opacity: 1;
  transform: none;
}

.section--menu .dish-card {
  background: transparent;
  backdrop-filter: none;
}

.section--menu .menu__legend {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

.category-header {
  font-family: var(--menu-font-title);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  color: var(--menu-gold);
  text-align: center;
  margin: 3rem 0 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
  letter-spacing: -0.01em;
  grid-column: 1 / -1;
  transition: transform 0.2s ease, filter 0.2s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

@supports (-webkit-background-clip: text) {
  .category-header {
    color: transparent;
    background: linear-gradient(90deg, #f6eedb, var(--menu-gold), #f6eedb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
  }
}

.category-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--menu-gold), transparent);
  border-radius: 999px;
}

.category-header:first-child {
  margin-top: 1rem;
}

.category-header:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 18px rgba(210, 105, 30, 0.22));
}

.menu__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .menu__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .menu__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.menu__images {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.menu__image-card {
  width: min(980px, 100%);
  padding: 0;
  overflow: hidden;
}

.menu__image {
  display: block;
  width: 100%;
  height: auto;
}

.menu-pages {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.menu-page {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(245, 222, 179, 0.22);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: var(--shadow-2);
  cursor: zoom-in;
}

.menu-img {
  width: 100%;
  height: auto;
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .menu-img {
    transition: opacity 180ms ease;
  }
}

.menu-img.menu-img--updating {
  opacity: 0;
}

@media (max-width: 767.98px) {
  /* Full-bleed on mobile: counter container padding so menu stays readable. */
  .menu-pages {
    width: calc(100% + (var(--gutter) * 2));
    margin-inline: calc(var(--gutter) * -1);
    gap: 14px;
  }
}

.section--meat .section__lead {
  max-width: 58ch;
}

.meat-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 768px) {
  .meat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

.meat-card {
  margin: 0;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 222, 179, 0.22);
  background: rgba(0, 0, 0, 0.28);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.meat-card__btn {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
}

.meat-card__media {
  display: block;
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}

.meat-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.meat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

@media (prefers-reduced-motion: no-preference) {
  .meat-card__media img {
    transition: transform 220ms ease;
  }
}

@media (hover: hover) {
  .meat-card__btn:hover .meat-card__media img {
    transform: scale(1.03);
  }
}

.meat-card__caption {
  display: grid;
  gap: 4px;
  padding: 12px 12px;
}

.meat-card__title {
  margin: 0;
  font-weight: 800;
  color: rgba(245, 222, 179, 0.95);
}

.meat-card__meta {
  margin: 0;
  color: var(--c-muted);
}

.dish-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  border: 0;
  overflow: hidden;
  min-height: 168px;
  padding: 28px 13px 15px;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.dish-card__wood-bg {
  position: absolute;
  inset: 0;
  background: url("../img/wood-transparentBG.webp") center / cover no-repeat;
  opacity: 0.92;
  filter: saturate(1.05) contrast(1.08);
  pointer-events: none;
}

.dish-card__title,
.dish-card__desc,
.dish-card__meta {
  position: relative;
  z-index: 1;
}

.dish-card__title {
  margin: 0 0 8px;
  font-weight: 900;
  color: rgba(245, 222, 179, 0.98);
}

.dish-card__desc {
  margin: 0 0 10px;
  color: rgba(248, 242, 234, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dish-card__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 10px;
  margin-top: 4px;
  padding-inline: 20px;
  padding-bottom: 0;
  text-align: left;
}

.dish-card__allergens {
  display: inline-flex;
  gap: 3px;
  flex-wrap: wrap;
  justify-content: flex-start;
  color: rgba(245, 222, 179, 0.92);
  font-size: 14px;
}

.allergen-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(245, 222, 179, 0.95);
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 12px;
  line-height: 1;
}

.allergen-badge__icon {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.allergen-badge[data-allergen="spicy"] .allergen-badge__icon,
.allergen-badge[data-allergen="very_spicy"] .allergen-badge__icon {
  transform: scale(0.66);
  transform-origin: center;
}

.dish-card__price {
  justify-self: end;
  text-align: right;
  margin-top: 2px;
  padding-right: 8px;
  font-weight: 900;
  color: rgba(255, 69, 0, 0.92);
  white-space: nowrap;
  font-size: 0.9rem;
  line-height: 1.1;
}

/* Menu "engraved in wood" typography */
.section--menu .dish-card {
  font-family: var(--menu-font-body);
  text-align: center;
}

.section--menu .dish-card__title {
  font-family: var(--menu-font-title);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.4px;
  color: var(--menu-ink);
  text-shadow: none;
  filter: drop-shadow(0 0 6px rgba(255, 248, 230, 0.9));
  margin: -2px 0 4px;
}

.section--menu .dish-card__desc {
  font-family: var(--menu-font-body);
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--menu-ink);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-shadow: none;
  filter: drop-shadow(0 0 6px rgba(255, 248, 230, 0.9));
  margin: 10px 0 8px;
  display: block;
}

.section--menu .dish-card__meta {
  text-align: left;
  margin-top: 10px;
}

.section--menu .dish-card__price {
  font-family: var(--menu-font-body);
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--menu-ink);
  font-size: 0.95rem;
  text-shadow: none;
  filter: drop-shadow(0 0 6px rgba(255, 248, 230, 0.9));
}



.menu__legend {
  margin-top: 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 222, 179, 0.22);
  background: rgba(0, 0, 0, 0.26);
  padding: 10px 12px;
}

.menu__legend summary {
  cursor: pointer;
  font-weight: 800;
}

.menu__legend-text {
  margin: 10px 0 0;
  color: var(--c-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  align-items: center;
}

.menu__legend-item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.menu__legend-label {
  white-space: nowrap;
}

.menu__legend .allergen-badge {
  width: 22px;
  height: 22px;
}

.menu__legend .allergen-badge__icon {
  width: 22px;
  height: 22px;
}

.gallery {
  column-count: 1;
  column-gap: 12px;
}

@media (min-width: 768px) {
  .gallery {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .gallery {
    column-count: 3;
  }
}

.gallery__item {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0 0 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: transparent;
  cursor: zoom-in;
  break-inside: avoid;
  box-shadow: var(--shadow-2);
}

.gallery__item img {
  width: 100%;
  height: auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.88);
  z-index: 2000;
}

.lightbox__figure {
  margin: 0;
  width: min(1100px, 92vw);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(245, 222, 179, 0.22);
  box-shadow: var(--shadow-1);
}

.lightbox__img {
  width: 100%;
  height: auto;
  max-height: 84svh;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.4);
  touch-action: pinch-zoom;
}

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(245, 222, 179, 0.24);
  background: rgba(0, 0, 0, 0.5);
  color: var(--c-text);
  font-size: 26px;
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(245, 222, 179, 0.24);
  background: rgba(0, 0, 0, 0.5);
  color: var(--c-text);
  font-size: 30px;
  cursor: pointer;
}

.lightbox__nav--prev {
  left: 12px;
}

.lightbox__nav--next {
  right: 12px;
}

.event {
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 222, 179, 0.22);
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.event__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.event__body {
  padding: 14px 14px;
}

.event__title {
  margin: 0 0 6px;
  font-weight: 900;
}

.event__text {
  margin: 0;
  color: var(--c-muted);
  white-space: pre-line;
}

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

@media (min-width: 1024px) {
  .contact {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.contact__details {
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 222, 179, 0.28);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.32));
  padding: 18px;
  box-shadow: var(--shadow-2);
  backdrop-filter: blur(8px);
}

.contact__block + .contact__block {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(245, 222, 179, 0.16);
}

.contact__heading {
  margin: 0 0 8px;
  font-weight: 900;
}

.contact__list {
  margin: 0;
  padding-left: 18px;
  color: var(--c-muted);
}

.contact__text {
  margin: 0;
  color: var(--c-muted);
}

.form {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 69, 0, 0.25);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.4));
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(245, 222, 179, 0.08) inset;
  backdrop-filter: blur(10px);
}

.form__fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.form__legend {
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.form__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.field {
  display: grid;
  gap: 6px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field__label {
  font-weight: 800;
  color: rgba(245, 222, 179, 0.92);
}

.field__control {
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(245, 222, 179, 0.25);
  background: rgba(0, 0, 0, 0.35);
  color: var(--c-text);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35) inset;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field__control:focus {
  border-color: rgba(255, 69, 0, 0.7);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.2);
  outline: none;
}

.form__note {
  margin: 12px 0 14px;
  color: var(--c-muted);
  font-size: 0.95rem;
}

.footer {
  border-top: 1px solid rgba(245, 222, 179, 0.16);
  background: rgba(0, 0, 0, 0.55);
}

.footer__inner {
  padding: 18px 0;
  display: grid;
  gap: 10px;
  text-align: center;
  justify-items: center;
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}

.footer__title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin: 0 0 4px;
}

.footer__text {
  margin: 0;
  color: var(--c-muted);
}

.footer__heading {
  margin: 0 0 6px;
  font-weight: 900;
}

.footer__copy {
  margin: 10px 0 0;
  color: rgba(248, 242, 234, 0.6);
  font-size: 0.92rem;
}

.noscript {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 222, 179, 0.22);
  background: rgba(0, 0, 0, 0.8);
  z-index: 3000;
}
.wa-floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-floating__bubble {
  max-width: 170px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(22, 22, 22, 0.92);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translate3d(0, 4px, 0) scale(0.98);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  white-space: nowrap;
}

.wa-floating__bubble.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.wa-floating__bubble.is-pop {
  animation: waBubblePop 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.wa-floating__button {
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24), 0 4px 12px rgba(37, 211, 102, 0.28);
  transition: transform 220ms ease, box-shadow 260ms ease, opacity 240ms ease;
  -webkit-tap-highlight-color: transparent;
}

.wa-floating__button.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.wa-floating__button:hover {
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26), 0 0 0 8px rgba(37, 211, 102, 0.18);
}

.wa-floating__button:active {
  transform: scale(0.96);
}

.wa-floating__button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.88);
  outline-offset: 2px;
}

.wa-floating__button::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translate3d(0, -50%, 0);
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(19, 19, 19, 0.92);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.wa-floating__icon {
  width: 30px;
  height: 30px;
}

@keyframes waBubblePop {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  35% {
    transform: translate3d(0, -1px, 0) scale(1.03);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 767px) {
  .wa-floating {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .wa-floating__button {
    width: 56px;
    height: 56px;
  }

  .wa-floating__icon {
    width: 28px;
    height: 28px;
  }

  .wa-floating__bubble {
    max-width: 146px;
    font-size: 13px;
    padding: 8px 12px;
  }
}

@media (max-width: 359px) {
  .wa-floating__bubble {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .wa-floating:not(.wa-floating--bubble-active) .wa-floating__button:hover::after,
  .wa-floating:not(.wa-floating--bubble-active) .wa-floating__button:focus-visible::after {
    opacity: 1;
  }
}

@media (hover: none), (pointer: coarse), (max-width: 767px) {
  .wa-floating__button::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-floating__button,
  .wa-floating__bubble {
    transition: none;
    animation: none;
  }
}

.ec-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  font-family: "Merriweather", serif;
}

.ec-wa__fab {
  position: relative;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), 0 8px 20px rgba(37, 211, 102, 0.25);
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: transform 220ms ease, box-shadow 260ms ease, opacity 260ms ease;
  -webkit-tap-highlight-color: transparent;
}

.ec-wa__fab.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ec-wa__fab:hover {
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.3), 0 0 0 9px rgba(37, 211, 102, 0.17);
}

.ec-wa__fab:active {
  transform: scale(0.96);
}

.ec-wa__fab:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.ec-wa__fab::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 10px;
  border-radius: 10px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(24, 24, 24, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.ec-wa:not(.is-open):not(.ec-wa--bubble-active) .ec-wa__fab:hover::after,
.ec-wa:not(.is-open):not(.ec-wa--bubble-active) .ec-wa__fab:focus-visible::after {
  opacity: 1;
}

.ec-wa__fab-icon {
  width: 30px;
  height: 30px;
}

.ec-wa__bubble {
  position: absolute;
  right: calc(100% + 12px);
  bottom: 10px;
  background: rgba(21, 21, 21, 0.93);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translate3d(0, 4px, 0) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}

.ec-wa__bubble.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.ec-wa__bubble.is-pop {
  animation: ecWaPop 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.ec-wa__panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: min(360px, calc(100vw - 24px));
  max-height: min(76vh, 640px);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.26), 0 10px 30px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(12, 12, 12, 0.08);
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(0.99);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  transition: opacity 220ms ease, transform 220ms ease;
}

.ec-wa.is-open .ec-wa__panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.ec-wa__header {
  background: linear-gradient(130deg, #101010, #232323);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ec-wa__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.ec-wa__status {
  margin: 4px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.ec-wa__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ed158;
  box-shadow: 0 0 0 5px rgba(46, 209, 88, 0.22);
}

.ec-wa__close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.ec-wa__messages {
  padding: 14px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  min-height: 220px;
}

.ec-wa__msg {
  max-width: 86%;
  border-radius: 12px;
  padding: 9px 11px;
  font-size: 13px;
  line-height: 1.4;
  white-space: pre-wrap;
}

.ec-wa__msg--bot {
  background: #f1f3f5;
  color: #1f1f1f;
  align-self: flex-start;
}

.ec-wa__msg--user {
  background: #def8e6;
  color: #1b1b1b;
  align-self: flex-end;
}

.ec-wa__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.ec-wa__quick-btn {
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
  background: #fff;
  color: #202020;
  cursor: pointer;
}

.ec-wa__typing {
  display: inline-flex;
  gap: 4px;
}

.ec-wa__typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7b7b7b;
  animation: ecWaTyping 1.1s infinite ease-in-out;
}

.ec-wa__typing-dot:nth-child(2) {
  animation-delay: 140ms;
}

.ec-wa__typing-dot:nth-child(3) {
  animation-delay: 280ms;
}

.ec-wa__composer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 10px 14px 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.ec-wa__input {
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 11px;
  padding: 10px 12px;
  font-size: 14px;
  min-height: 44px;
}

.ec-wa__send {
  border: 0;
  border-radius: 11px;
  min-height: 44px;
  padding: 0 14px;
  background: #171717;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

.ec-wa__send[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.ec-wa__meta {
  padding: 0 14px 12px;
}

.ec-wa__reset {
  border: 0;
  background: transparent;
  color: #3b3b3b;
  text-decoration: underline;
  padding: 0;
  margin-bottom: 6px;
  font-size: 12px;
  cursor: pointer;
}

.ec-wa__hint {
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.62);
}

@keyframes ecWaPop {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  35% { transform: translate3d(0, -1px, 0) scale(1.03); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes ecWaTyping {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.45; }
  40% { transform: translateY(-2px); opacity: 1; }
}

@media (max-width: 767px) {
  .ec-wa {
    right: 16px;
    bottom: 16px;
  }

  .ec-wa__fab {
    width: 56px;
    height: 56px;
  }

  .ec-wa__fab-icon {
    width: 28px;
    height: 28px;
  }

  .ec-wa__bubble {
    font-size: 13px;
    padding: 8px 12px;
  }

  .ec-wa__panel {
    width: min(420px, calc(100vw - 16px));
    max-height: 82vh;
    bottom: 68px;
  }

  .ec-wa__fab::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .ec-wa__panel {
    width: calc(100vw - 8px);
    right: -4px;
    bottom: 64px;
    max-height: calc(100vh - 86px);
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ec-wa__fab,
  .ec-wa__bubble,
  .ec-wa__panel,
  .ec-wa__typing-dot {
    transition: none;
    animation: none;
  }
}

/* El Cruce WhatsApp Chat - UX/Design Upgrade */
.ec-wa {
  --ec-wa-bg: rgba(12, 12, 16, 0.78);
  --ec-wa-bg-soft: rgba(26, 26, 32, 0.7);
  --ec-wa-border: rgba(255, 255, 255, 0.12);
  --ec-wa-text: #f4f1ea;
  --ec-wa-muted: rgba(244, 241, 234, 0.72);
  --ec-wa-accent: var(--primary, #d8a44a);
  --ec-wa-user: rgba(216, 164, 74, 0.18);
  --ec-wa-bot: rgba(255, 255, 255, 0.09);
}

.ec-wa__panel {
  width: min(400px, calc(100vw - 28px));
  max-height: 70vh;
  background: linear-gradient(180deg, rgba(16, 16, 20, 0.86), rgba(11, 11, 14, 0.88));
  border: 1px solid var(--ec-wa-border);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.44), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ec-wa__header {
  padding: 15px 16px 12px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.ec-wa__title {
  color: var(--ec-wa-text);
  font-size: 16px;
  letter-spacing: 0.01em;
}

.ec-wa__title::after {
  content: "Reservierung";
  display: block;
  margin-top: 1px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ec-wa-muted);
}

.ec-wa__status {
  color: var(--ec-wa-muted);
}

.ec-wa__dot {
  background: #39db6c;
  box-shadow: 0 0 0 5px rgba(57, 219, 108, 0.18);
}

.ec-wa__close {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ec-wa-text);
}

.ec-wa__close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.ec-wa__messages {
  scroll-behavior: smooth;
  padding: 14px 14px 10px;
}

.ec-wa__msg {
  border-radius: 16px;
  padding: 10px 12px;
  line-height: 1.45;
  font-size: 13px;
}

.ec-wa__msg--bot {
  background: var(--ec-wa-bot);
  color: var(--ec-wa-text);
}

.ec-wa__msg--user {
  background: var(--ec-wa-user);
  color: #f9f4e7;
}

.ec-wa__quick {
  gap: 9px;
  margin-top: 9px;
}

.ec-wa__quick-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ec-wa-text);
  border-radius: 999px;
  padding: 7px 12px;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.ec-wa__quick-btn:hover {
  background: rgba(216, 164, 74, 0.18);
  border-color: rgba(216, 164, 74, 0.38);
  transform: translateY(-1px);
}

.ec-wa__quick--dates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ec-wa__quick--dates .ec-wa__quick-btn {
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.ec-wa__quick--dates .ec-wa__quick-btn:last-child {
  grid-column: 1 / -1;
}

.ec-wa__quick--dates .ec-wa__quick-btn:active {
  background: rgba(216, 164, 74, 0.26);
}

.ec-wa__composer {
  padding: 10px 14px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.ec-wa__input {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--ec-wa-bg-soft);
  color: var(--ec-wa-text);
  border-radius: 14px;
  min-height: 46px;
}

.ec-wa__input::placeholder {
  color: rgba(244, 241, 234, 0.55);
}

.ec-wa__send {
  min-width: 46px;
  min-height: 46px;
  border-radius: 50%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #151515;
  background: var(--ec-wa-accent);
  font-size: 0;
}

.ec-wa__send::before {
  content: "➤";
  font-size: 15px;
  transform: translateX(1px);
}

.ec-wa__send[disabled] {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.45);
}

.ec-wa__meta {
  padding: 0 14px 13px;
}

.ec-wa__reset {
  color: var(--ec-wa-muted);
}

.ec-wa__hint {
  color: rgba(244, 241, 234, 0.66);
}

@media (max-width: 767px) {
  .ec-wa__panel {
    width: min(100vw - 12px, 500px);
    max-height: calc(100vh - 84px - env(safe-area-inset-bottom));
    border-radius: 20px;
    bottom: 66px;
  }

  .ec-wa__messages {
    min-height: 250px;
  }

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

@media (max-width: 480px) {
  .ec-wa {
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
  }

  .ec-wa__panel {
    width: calc(100vw - 8px);
    right: -4px;
    bottom: 64px;
    max-height: calc(100vh - 80px - env(safe-area-inset-bottom));
    border-radius: 20px 20px 16px 16px;
  }
}
