:root {
  --orange: #e3740b;
  --brown: #7a4a1a;
  --green: #4fa65a;
  --bg: #fff8f0;
  --bg-soft: #ffefde;
  --surface: #fffdf9;
  --surface-soft: #fff5e8;
  --surface-strong: #ffe8ce;
  --text: #44270f;
  --muted: #825f3d;
  --line: #efcfac;
  --danger: #c14b35;
  --success: #2d8d49;
  --radius: 16px;
  --radius-lg: 26px;
  --shadow-soft: 0 10px 30px rgba(170, 94, 22, 0.14);
  --shadow-card: 0 18px 40px rgba(138, 79, 25, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% -4%, rgba(227, 116, 11, 0.2), transparent 33%),
    radial-gradient(circle at 95% 3%, rgba(122, 74, 26, 0.16), transparent 38%),
    linear-gradient(180deg, #fffaf4 0%, var(--bg) 100%);
  line-height: 1.55;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
}

body::before {
  width: 280px;
  height: 280px;
  top: -80px;
  left: -70px;
  background: radial-gradient(circle, rgba(227, 116, 11, 0.2), transparent 65%);
  animation: drift-orb-1 13s ease-in-out infinite;
}

body::after {
  width: 320px;
  height: 320px;
  bottom: -140px;
  right: -80px;
  background: radial-gradient(circle, rgba(79, 166, 90, 0.14), transparent 65%);
  animation: drift-orb-2 15s ease-in-out infinite;
}

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

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

.icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.icon-xs {
  width: 0.95rem;
  height: 0.95rem;
}

.icon-sm {
  width: 1.2rem;
  height: 1.2rem;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(227, 116, 11, 0.2);
  background: rgba(255, 250, 242, 0.92);
}

.brand-band {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(90deg, #e3740b, #ef8b2c 52%, #d76708);
  color: #fffaf5;
}

.brand-band-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.78rem;
}

.band-title {
  font-weight: 800;
  letter-spacing: 0.03em;
}

.band-text {
  opacity: 0.95;
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.brand-logo-full {
  width: clamp(124px, 14.8vw, 186px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(122, 74, 26, 0.18));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  transition: all 0.22s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff9f2;
  background: linear-gradient(120deg, #e3740b, #f2983f);
}

.cart-link {
  border: 1px solid rgba(227, 116, 11, 0.4);
  color: var(--brown);
  background: rgba(255, 233, 207, 0.55);
}

.cart-count {
  margin-left: 0.28rem;
  font-weight: 800;
  color: #fff;
  background: var(--brown);
  border-radius: 999px;
  padding: 0.02rem 0.42rem;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(227, 116, 11, 0.35);
  background: #fff;
  color: var(--brown);
  align-items: center;
  justify-content: center;
}

.mobile-toggle:hover {
  background: #fff4e6;
}

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.25s linear;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 22%, rgba(255, 186, 112, 0.3), transparent 44%),
    linear-gradient(120deg, rgba(47, 24, 9, 0.86), rgba(122, 74, 26, 0.57));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 8.3rem 0 5.6rem;
  max-width: 800px;
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: center;
}

.hero-content h1,
.hero-content p {
  color: #fffdf9;
}

.hero-pills {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-order-card {
  justify-self: end;
  width: min(430px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(255, 229, 198, 0.58);
  background: rgba(255, 246, 234, 0.95);
  padding: 1.1rem;
  box-shadow: 0 18px 45px rgba(44, 22, 8, 0.24);
  animation: float-card 4.8s ease-in-out infinite;
}

.hero-order-label {
  margin: 0 0 0.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-order-card h2 {
  color: var(--brown);
  font-size: 1.45rem;
}

.hero-order-list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.hero-order-item {
  border: 1px solid rgba(122, 74, 26, 0.18);
  border-radius: 12px;
  background: #fff;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.hero-order-item strong {
  display: block;
  color: var(--brown);
}

.hero-order-item small {
  color: var(--orange);
  font-weight: 700;
}

.hero-order-btn {
  width: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 243, 228, 0.5);
  background: rgba(51, 28, 12, 0.38);
  color: #fff8ef;
  font-size: 0.82rem;
  padding: 0.45rem 0.72rem;
}

.eyebrow {
  margin: 0 0 0.72rem;
  display: inline-block;
  color: var(--orange);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.2;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 3.7rem);
  margin-bottom: 0.9rem;
}

h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  margin-bottom: 0.75rem;
}

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

.hero-actions {
  margin-top: 1.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
}

.btn {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.36rem;
  padding: 0.74rem 1.22rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

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

.btn-primary {
  color: #fffaf5;
  background: linear-gradient(130deg, #e3740b, #f09538);
  box-shadow: 0 10px 24px rgba(227, 116, 11, 0.3);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.25) 43%, transparent 66%);
  transform: translateX(-130%);
  animation: btn-shine 3.6s ease-in-out infinite;
}

.btn-primary:hover {
  background: linear-gradient(130deg, #d86908, #ea8a2f);
}

.btn-outline {
  color: var(--brown);
  border-color: rgba(122, 74, 26, 0.4);
  background: rgba(255, 248, 239, 0.9);
}

.btn-outline:hover {
  color: #fff8ef;
  border-color: transparent;
  background: linear-gradient(120deg, #7a4a1a, #9a5d22);
}

.btn-sm {
  font-size: 0.9rem;
  padding: 0.46rem 0.88rem;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 1.3rem 0;
}

.section-dark {
  background:
    radial-gradient(circle at 92% 20%, rgba(255, 183, 99, 0.16), transparent 30%),
    linear-gradient(150deg, #7a4a1a, #663c14 56%, #55310f);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: #fff8ef;
}

.section-dark .eyebrow {
  color: #ffdcb2;
}

.section-head {
  margin-bottom: 1.45rem;
}

.section-head-inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.8rem;
}

.page-intro {
  padding-top: 3.8rem;
  padding-bottom: 1.7rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 1.8rem;
  align-items: center;
}

.feature-cards {
  display: grid;
  gap: 0.95rem;
}

.feature-cards article {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 235, 214, 0.42);
  border-radius: var(--radius);
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.feature-cards h3 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.85rem;
}

.stat-card {
  border-radius: var(--radius);
  border: 1px solid rgba(227, 116, 11, 0.22);
  background: linear-gradient(180deg, #fffefc, #fff4e7);
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  color: var(--brown);
  font-size: 1.35rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: 1.15rem;
}

.menu-toolbar {
  display: grid;
  gap: 0.85rem;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(122, 74, 26, 0.25);
  background: #fff;
  padding: 0.2rem 0.8rem;
  box-shadow: var(--shadow-soft);
}

.search-field input {
  border: none;
  background: transparent;
  padding: 0.62rem 0;
}

.search-field input:focus {
  outline: none;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.filter-chip {
  border-radius: 999px;
  border: 1px solid rgba(122, 74, 26, 0.27);
  background: #fff;
  color: var(--brown);
  padding: 0.43rem 0.76rem;
  cursor: pointer;
  transition: all 0.22s ease;
}

.filter-chip:hover,
.filter-chip.active {
  color: #fffaf3;
  border-color: transparent;
  background: linear-gradient(120deg, #e3740b, #ef8e2f);
}

.menu-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(227, 116, 11, 0.17);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(138, 79, 25, 0.24);
}

.hot-item::before {
  content: "Top vente";
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff8ef;
  background: linear-gradient(120deg, #e3740b, #f2973b);
  border-radius: 999px;
  padding: 0.2rem 0.54rem;
  box-shadow: 0 8px 16px rgba(227, 116, 11, 0.35);
}

.menu-card img {
  height: 198px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.menu-card:hover img {
  transform: scale(1.06);
}

.menu-card-content {
  padding: 1rem;
}

.item-chip {
  display: inline-flex;
  margin-bottom: 0.35rem;
  border-radius: 999px;
  background: rgba(79, 166, 90, 0.14);
  color: #2f7a3c;
  border: 1px solid rgba(79, 166, 90, 0.3);
  padding: 0.12rem 0.48rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.menu-card-content h3 {
  margin-bottom: 0.4rem;
  font-size: 1.06rem;
  color: var(--brown);
}

.menu-card-content p {
  font-size: 0.94rem;
  margin: 0 0 1rem;
}

.menu-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.menu-card-bottom strong {
  color: var(--orange);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.gallery-grid img,
.masonry-grid img {
  border-radius: 14px;
  object-fit: cover;
  min-height: 230px;
  box-shadow: var(--shadow-soft);
}

.masonry-grid {
  columns: 3 260px;
  column-gap: 0.9rem;
}

.masonry-grid img {
  margin-bottom: 0.9rem;
}

.rounded-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.timeline article {
  border-radius: var(--radius);
  border: 1px solid rgba(122, 74, 26, 0.24);
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.contact-grid,
.checkout-grid,
.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-card,
.order-summary,
.empty-card {
  border-radius: var(--radius);
  border: 1px solid rgba(122, 74, 26, 0.22);
  background: #fff;
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.contact-list {
  display: grid;
  gap: 0.28rem;
}

.contact-list p,
.footer-grid p {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.form-card form {
  display: grid;
  gap: 0.62rem;
}

label,
legend {
  color: var(--brown);
  font-size: 0.93rem;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(122, 74, 26, 0.29);
  background: #fffdfa;
  color: var(--text);
  padding: 0.7rem 0.8rem;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(227, 116, 11, 0.3);
  border-color: var(--orange);
}

textarea {
  resize: vertical;
}

iframe {
  width: 100%;
  min-height: 300px;
  border: none;
  border-radius: 16px;
  margin-top: 1rem;
}

.form-errors {
  border-radius: 12px;
  border: 1px solid rgba(193, 75, 53, 0.35);
  background: rgba(193, 75, 53, 0.1);
  padding: 0.76rem;
}

.form-errors p {
  margin: 0.2rem 0;
  color: #8f2d1d;
}

.flash {
  border-bottom: 1px solid rgba(122, 74, 26, 0.2);
  padding: 0.65rem 0;
}

.flash-success {
  background: rgba(79, 166, 90, 0.14);
}

.flash-error {
  background: rgba(193, 75, 53, 0.12);
}

.cart-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(122, 74, 26, 0.23);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.cart-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.cart-table th,
.cart-table td {
  border-bottom: 1px solid rgba(122, 74, 26, 0.16);
  padding: 0.92rem;
  vertical-align: top;
}

.cart-table th {
  color: var(--brown);
}

.cart-item {
  display: flex;
  gap: 0.85rem;
}

.cart-item img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
}

.qty-input {
  width: 86px;
}

.cart-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.cart-summary {
  margin-top: 1rem;
  text-align: right;
}

.summary-line,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.summary-total {
  border-top: 1px solid rgba(122, 74, 26, 0.21);
  padding-top: 0.8rem;
  font-size: 1.1rem;
}

.checkout-steps {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 0.55rem;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(122, 74, 26, 0.24);
  background: rgba(255, 248, 240, 0.9);
  color: var(--muted);
  font-size: 0.84rem;
  padding: 0.45rem 0.58rem;
}

.checkout-step .step-badge {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  border: 1px solid rgba(122, 74, 26, 0.23);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.checkout-step.is-complete {
  border-color: rgba(79, 166, 90, 0.55);
  color: #25693a;
  background: rgba(79, 166, 90, 0.12);
}

.checkout-step.is-current {
  border-color: transparent;
  color: #fff9f2;
  background: linear-gradient(120deg, #e3740b, #ef8b2b);
}

.checkout-step.is-current .step-badge {
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.5);
}

.payment-choice {
  border-radius: 10px;
  border: 1px solid rgba(122, 74, 26, 0.22);
  background: #fff9f2;
  margin: 0.45rem 0 0.75rem;
  padding: 0.7rem;
}

.radio-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.35rem 0;
}

.payment-card {
  display: grid;
  gap: 0.2rem;
  border-radius: 10px;
  border: 1px solid rgba(122, 74, 26, 0.24);
  background: #fff8ef;
  padding: 0.85rem;
  margin-bottom: 0.65rem;
}

.payment-card span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.small-note {
  font-size: 0.88rem;
}

.center-block {
  text-align: center;
}

.inline-form {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.quick-cta {
  border-radius: 20px;
  border: 1px solid rgba(122, 74, 26, 0.2);
  background:
    radial-gradient(circle at 88% 30%, rgba(227, 116, 11, 0.17), transparent 42%),
    linear-gradient(130deg, #fff9f2, #ffeedb);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
}

.quick-cta h3 {
  margin-bottom: 0.35rem;
}

.quick-cta p {
  margin: 0;
}

.quick-cta-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.confirmation-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

.ticket-card,
.qr-card {
  border-radius: 18px;
  border: 1px solid rgba(122, 74, 26, 0.22);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.ticket-card {
  padding: 1rem;
}

.ticket-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.7rem;
}

.ticket-kicker {
  margin: 0 0 0.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticket-ref {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(227, 116, 11, 0.1);
  border: 1px solid rgba(227, 116, 11, 0.28);
  color: var(--brown);
  font-weight: 700;
  font-size: 0.83rem;
  padding: 0.2rem 0.6rem;
}

.ticket-meta {
  margin: 0.65rem 0 0.8rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  border: 1px dashed rgba(122, 74, 26, 0.35);
  background: #fffaf4;
}

.ticket-meta p {
  margin: 0.18rem 0;
}

.ticket-lines {
  display: grid;
  gap: 0.45rem;
}

.ticket-lines:empty {
  display: none;
}

.ticket-line {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  border-bottom: 1px dashed rgba(122, 74, 26, 0.2);
  padding-bottom: 0.35rem;
}

.ticket-line strong {
  color: var(--brown);
}

.ticket-total {
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top: 2px solid rgba(227, 116, 11, 0.28);
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
}

.ticket-total strong {
  color: var(--orange);
  font-size: 1.18rem;
}

.qr-card {
  padding: 1rem;
  text-align: center;
}

.qr-card h3 {
  margin-bottom: 0.35rem;
}

.qr-card p {
  margin-top: 0;
}

.qr-card img {
  width: min(240px, 100%);
  margin: 0.4rem auto 0.5rem;
  border-radius: 14px;
  border: 1px solid rgba(122, 74, 26, 0.2);
  background: #fff;
}

.qr-link {
  display: inline-block;
  max-width: 100%;
  font-size: 0.74rem;
  word-break: break-all;
  color: var(--brown);
}

.ticket-print-page::before,
.ticket-print-page::after {
  display: none;
}

.ticket-print-page .section {
  padding: 2rem 0;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(227, 116, 11, 0.25);
  background: linear-gradient(180deg, #fff3e6, #ffe9cf);
  padding: 2.7rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.footer-grid h3,
.footer-grid h4 {
  color: var(--brown);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(120deg, #4fa65a, #4ab864);
  padding: 0.68rem 0.98rem;
  box-shadow: 0 14px 32px rgba(64, 144, 77, 0.35);
}

.whatsapp-float:hover {
  background: linear-gradient(120deg, #3f9350, #40a959);
}

.admin-body {
  background: linear-gradient(180deg, #fffaf4, #fff2e4);
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.admin-topbar {
  padding: 1rem 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(227, 116, 11, 0.22);
  background: rgba(255, 249, 241, 0.9);
}

.admin-kpis {
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.8rem;
}

.admin-hero {
  margin-bottom: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(227, 116, 11, 0.26);
  background:
    radial-gradient(circle at 90% 20%, rgba(227, 116, 11, 0.2), transparent 40%),
    linear-gradient(140deg, #fff8ee, #ffecd5);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-hero-copy h2 {
  margin-bottom: 0.4rem;
}

.admin-hero-copy p {
  margin: 0;
}

.admin-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.admin-dishes {
  margin-bottom: 1rem;
}

.admin-dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.75rem;
}

.admin-dish-card {
  border-radius: 16px;
  border: 1px solid rgba(122, 74, 26, 0.24);
  background: #fff;
  padding: 0.8rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.3rem;
}

.admin-rank {
  width: fit-content;
  border-radius: 999px;
  color: #fff7ef;
  background: linear-gradient(120deg, #e3740b, #ef8f31);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.13rem 0.45rem;
}

.admin-dish-card h4 {
  margin: 0.15rem 0;
}

.admin-dish-card p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
}

.admin-dish-card strong {
  color: var(--brown);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.pulse-cta {
  animation: pulse-glow 2.2s ease-in-out infinite;
}

[data-stagger] > * {
  animation: pop-in 0.65s ease both;
  animation-delay: calc(var(--stagger, 0) * 90ms);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 10px 24px rgba(227, 116, 11, 0.3);
  }
  50% {
    box-shadow: 0 18px 30px rgba(227, 116, 11, 0.44);
  }
  100% {
    box-shadow: 0 10px 24px rgba(227, 116, 11, 0.3);
  }
}

@keyframes float-card {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes btn-shine {
  0% {
    transform: translateX(-130%);
  }
  55% {
    transform: translateX(130%);
  }
  100% {
    transform: translateX(130%);
  }
}

@keyframes drift-orb-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(14px, 16px) scale(1.08);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes drift-orb-2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-18px, -10px) scale(0.95);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@media (max-width: 920px) {
  .brand-band-inner {
    justify-content: center;
  }

  .band-text {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 108px;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(227, 116, 11, 0.22);
    background: #fff7ee;
    padding: 0.9rem 4%;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

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

  .mobile-toggle {
    display: inline-flex;
  }

  .two-col,
  .contact-grid,
  .checkout-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    padding-bottom: 2rem;
  }

  .hero-order-card {
    justify-self: stretch;
  }

  .quick-cta,
  .admin-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .confirmation-grid {
    grid-template-columns: 1fr;
  }

  .checkout-steps {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}

@media (max-width: 760px) {
  .cart-table {
    min-width: 0;
  }

  .cart-table.mobile-stack thead {
    display: none;
  }

  .cart-table.mobile-stack,
  .cart-table.mobile-stack tbody,
  .cart-table.mobile-stack tr,
  .cart-table.mobile-stack td {
    display: block;
    width: 100%;
  }

  .cart-table.mobile-stack tr {
    padding: 0.8rem;
    border-bottom: 1px solid rgba(122, 74, 26, 0.16);
  }

  .cart-table.mobile-stack td {
    border: none;
    padding: 0.34rem 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.7rem;
  }

  .cart-table.mobile-stack td::before {
    content: attr(data-label);
    color: var(--brown);
    font-weight: 700;
    font-size: 0.84rem;
    min-width: 84px;
  }

  .cart-table.mobile-stack td[data-label="Plat"]::before,
  .cart-table.mobile-stack td[data-label="Client"]::before {
    display: none;
  }

  .cart-table.mobile-stack td[data-label="Action"] {
    display: block;
  }

  .cart-table.mobile-stack td[data-label="Action"]::before {
    display: none;
  }

  .cart-table.mobile-stack .cart-item {
    width: 100%;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0.62rem;
  }

  .cart-table.mobile-stack .inline-form {
    flex-wrap: wrap;
  }

  .cart-table.mobile-stack .inline-form select {
    max-width: 170px;
  }

  .cart-summary {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.6rem 0;
  }

  .hero,
  .hero-shell {
    min-height: auto;
  }

  .hero-content {
    padding-top: 6.4rem;
    padding-bottom: 2.2rem;
  }

  .hero-order-card {
    animation-duration: 6s;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .checkout-steps {
    grid-template-columns: 1fr;
  }

  .brand-logo-full {
    width: clamp(108px, 34vw, 148px);
  }

  .main-nav a,
  .cart-link {
    width: 100%;
  }

  .quick-cta-actions .btn {
    width: 100%;
  }

  .whatsapp-float {
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 0.58rem 0.85rem;
    font-size: 0.86rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(1140px, 94%);
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-order-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media print {
  body {
    background: #fff !important;
  }

  body::before,
  body::after,
  .site-header,
  .site-footer,
  .whatsapp-float,
  .flash,
  .print-hidden {
    display: none !important;
  }

  .section,
  .ticket-print-page .section {
    padding: 0 !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
  }

  .confirmation-grid {
    grid-template-columns: 1fr 270px !important;
    gap: 0.8rem !important;
  }

  .ticket-card,
  .qr-card {
    box-shadow: none !important;
    break-inside: avoid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
