/* ---------- Reset + Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

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

input,
textarea {
  font: inherit;
}

:root {
  --cream: #fbf2e2;
  --cream-soft: #fdf6ea;
  --cream-deep: #f5ead2;
  --cream-line: #ead7b3;
  --red: #8c1014;
  --red-deep: #6f0c10;
  --red-soft: #a51a1f;
  --yellow: #f5b428;
  --yellow-soft: #fcd17a;
  --green: #25d366;
  --green-deep: #1ebe5d;
  --ink: #1a1410;
  --ink-soft: #5a4843;
  --ink-mute: #8a7a73;
  --shadow-sm: 0 2px 6px rgba(80, 20, 10, 0.08);
  --shadow-md: 0 12px 32px rgba(80, 20, 10, 0.12);
  --shadow-lg: 0 24px 60px rgba(80, 20, 10, 0.18);
  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Work Sans", system-ui, sans-serif;
}

body {
  background: #0c0a09;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
}

/* ---------- Page Shell ---------- */
.page {
  background: var(--cream);
  min-height: 100vh;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 16px;
  z-index: 50;
  margin: 16px auto 0;
  max-width: 1280px;
  padding: 0 28px;
}

.header-inner {
  background: #fffdf8;
  border-radius: 999px;
  padding: 12px 28px 12px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(140, 16, 20, 0.06);
}

.logo {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--cream-soft);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  margin-left: -6px;
  margin-top: -22px;
  margin-bottom: -22px;
  border: 2px solid #fff;
}

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

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

.nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  padding: 6px 2px;
  position: relative;
  transition: color .2s;
}

.nav a:hover {
  color: var(--red);
}

.nav a.active {
  color: var(--red);
  font-weight: 700;
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform .15s, background .2s;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.35);
}

.wa-btn:hover {
  background: var(--green-deep);
  transform: scale(1.05);
}

.wa-btn svg {
  width: 26px;
  height: 26px;
}

.cta-red {
  background: var(--red);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(140, 16, 20, 0.28);
  transition: transform .15s, background .2s, box-shadow .2s;
  position: relative;
}

.cta-red:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
}

.cta-red:active {
  transform: translateY(0);
}

.cta-red .cart-count {
  position: absolute;
  top: -6px;
  right: -4px;
  background: var(--yellow);
  color: #6a4400;
  border-radius: 999px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  padding: 0 6px;
  border: 2px solid #fff;
}

.menu-btn {
  display: none;
}

.production-update-notice {
  position: relative;
  z-index: 45;
  margin: 14px auto 0;
  max-width: 1280px;
  padding: 0 28px;
}

.production-update-inner {
  background: #fff3c4;
  color: #4b3511;
  border: 2px solid #f0c75e;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.production-update-copy {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 15px;
}

.production-update-copy strong {
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 800;
}

.production-update-wa {
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.25);
}

.production-update-wa:hover {
  background: var(--green-deep);
}

@media (max-width: 640px) {
  .production-update-notice {
    margin-top: 10px;
    padding: 0 14px;
  }

  .production-update-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }

  .production-update-copy {
    display: block;
    font-size: 14px;
    line-height: 1.35;
  }

  .production-update-copy strong,
  .production-update-copy span {
    display: block;
  }

  .production-update-wa {
    justify-content: center;
    width: 100%;
  }
}

/* ---------- Hero ---------- */
.hero-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 28px 0 36px;
}

.hero {
  background: var(--cream-soft);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  padding: 56px 0 36px 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  align-items: center;
  border: 1px solid rgba(140, 16, 20, 0.06);
  box-shadow: var(--shadow-sm);
  min-height: 520px;
}

.hero>div:first-child {
  padding-right: 16px;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero-title .sabor {
  color: var(--red);
  position: relative;
  display: inline-block;
  padding: 0 0.08em;
}

.hero-title .underline {
  display: inline-block;
  position: relative;
}

.hero-title .underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 5px;
  background: var(--red);
  border-radius: 4px;
}

.hero-desc {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 420px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.hero-desc::before {
  content: "▸";
  color: var(--red);
  font-size: 14px;
  line-height: 1.5;
  flex-shrink: 0;
}

.hero-ctas {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--ink);
  white-space: nowrap;
  transition: all .2s;
}

.btn-secondary:hover {
  background: var(--ink);
  color: #fff;
}

.hero-trust {
  margin-top: 28px;
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
}

.trust-item .icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}

.hero-image-wrap {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 520px;
  padding-right: 4%;
}

.hero-curve {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 6%;
  background: var(--red);
  border-top-left-radius: 60% 75%;
  border-bottom-left-radius: 60% 75%;
  z-index: 0;
}

.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background: #1a1108;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

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

.hero-splat {
  position: absolute;
  z-index: 2;
  color: var(--yellow);
  font-size: 28px;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.splat-1 {
  top: 12%;
  right: 8%;
  font-size: 22px;
}

.splat-2 {
  top: 32%;
  left: 10%;
  font-size: 18px;
}

.splat-3 {
  bottom: 18%;
  right: 14%;
  font-size: 24px;
}

/* ---------- Promos side panel ---------- */
.promos {
  background: var(--red);
  color: #fff;
  border-radius: 28px;
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.promos::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.promos-sun {
  width: 56px;
  height: 56px;
  color: var(--yellow);
  margin-bottom: 14px;
  position: relative;
}

.promos-sun svg {
  animation: promosSunSpin 24s linear infinite;
  display: block;
}

@keyframes promosSunSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.promos-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--cream-soft);
}

.promos-title .small {
  display: block;
  font-size: 18px;
  font-weight: 800;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.promos-sub {
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.promos-cta {
  margin-top: 22px;
  background: var(--yellow);
  color: #6a4400;
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(245, 180, 40, 0.35);
  transition: transform .2s, box-shadow .2s, background .2s;
}

.promos-cta:hover {
  transform: scale(1.06);
  background: #fbc642;
  box-shadow: 0 8px 20px rgba(245, 180, 40, 0.55);
}

.promos-socials {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  position: relative;
}

.promos-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  transition: background .2s;
}

.promos-socials a:hover {
  background: rgba(255, 255, 255, 0.22);
}

.promos-handle {
  margin-top: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  position: relative;
}

/* ---------- Category strip ---------- */
.cats {
  background: var(--cream-soft);
  border-radius: 20px;
  padding: 16px 14px 14px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(140, 16, 20, 0.05);
}

.cats-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  margin: 0 2px 10px;
}

.cats-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  touch-action: pan-x;
  padding: 2px 2px 6px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.cats-row::-webkit-scrollbar {
  display: none;
}

.cat {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  min-width: 154px;
  min-height: 76px;
  padding: 8px 12px 8px 8px;
  border-radius: 18px;
  background: #fffdf8;
  border: 1.5px solid rgba(234, 215, 179, 0.85);
  box-shadow: 0 6px 18px rgba(44, 30, 26, 0.04);
  transition: background .2s, transform .15s, border-color .2s, box-shadow .2s;
  position: relative;
}

.cat:hover {
  background: #fff8ea;
  transform: translateY(-1px);
  border-color: rgba(140, 16, 20, 0.22);
}

.cat-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 27px;
  line-height: 1;
  border-radius: 16px;
  background: #f4ead8;
  border: 1px solid rgba(234, 215, 179, 0.95);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 6px 14px rgba(44,30,26,.08);
  position: relative;
  overflow: hidden;
}

.cat-icon-main {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,.16));
}

.cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cat-label {
  font-family: var(--font-head);
  font-weight: 850;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.08;
  text-align: left;
  overflow-wrap: anywhere;
}

.cat.active .cat-label {
  color: var(--red);
}

.cat.active {
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(140, 16, 20, 0.12);
  background: #fff8ea;
}

.cat.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -4px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

/* ---------- Section header ---------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}

.section-title .flame {
  display: inline-block;
  margin-left: 6px;
}

.btn-outline {
  background: #fffdf8;
  color: var(--ink);
  padding: 11px 20px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  border: 1.5px solid var(--ink);
  transition: all .2s;
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

/* ---------- Product cards ---------- */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.cat-section {
  margin-top: 18px;
}

.product {
  background: #fffdf8;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid rgba(140, 16, 20, 0.05);
}

.product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.product-img {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #fff8ea, #ead7b3);
  overflow: hidden;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

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

.product-img-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fff8ea, #ead7b3);
  display: grid;
  place-items: center;
  color: #8c1014;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 16px;
}

.product-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.product-desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.35;
  flex: 1;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  gap: 8px;
}

.product-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--red);
  letter-spacing: -0.01em;
}

.add-btn {
  background: var(--red);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(140, 16, 20, 0.35);
  transition: transform .15s, background .2s, box-shadow .2s;
  flex-shrink: 0;
}

.add-btn:hover {
  background: var(--red-deep);
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(140, 16, 20, .45);
}

.add-btn:active {
  transform: scale(0.88);
}

.add-btn.added {
  background: var(--green);
  box-shadow: 0 4px 14px rgba(31, 157, 84, 0.45);
  animation: addedPop .3s cubic-bezier(.3, .1, .3, 1.4);
}

@keyframes addedPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.25);
  }

  100% {
    transform: scale(1);
  }
}

/* Product card flash when added */
.product-added {
  animation: productFlash .5s ease-out;
}

@keyframes productFlash {
  0% {
    box-shadow: 0 0 0 0 rgba(31, 157, 84, .0);
  }

  30% {
    box-shadow: 0 0 0 6px rgba(31, 157, 84, .25);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(31, 157, 84, .0);
  }
}

/* Floating +1 fly label */
.fly-label {
  position: fixed;
  font-family: var(--font-head, sans-serif);
  font-weight: 900;
  font-size: 22px;
  color: var(--red, #8c1014);
  pointer-events: none;
  z-index: 9999;
  transform: translateX(-50%);
  animation: flyUp .65s cubic-bezier(.2, .8, .4, 1) forwards;
  text-shadow: 0 2px 8px rgba(140, 16, 20, .3);
}

@keyframes flyUp {
  0% {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
  }

  60% {
    transform: translateX(-50%) translateY(-44px) scale(1.2);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-70px) scale(.8);
    opacity: 0;
  }
}

/* Ripple burst on button */
.add-ripple {
  position: fixed;
  border-radius: 50%;
  background: rgba(140, 16, 20, 0.22);
  pointer-events: none;
  z-index: 9998;
  animation: rippleBurst .45s ease-out forwards;
}

@keyframes rippleBurst {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

/* Cart button bounce when item added */
@keyframes cartBounce {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.18) rotate(-4deg);
  }

  50% {
    transform: scale(1.12) rotate(3deg);
  }

  75% {
    transform: scale(1.06) rotate(-2deg);
  }

  100% {
    transform: scale(1);
  }
}

.cart-bounce {
  animation: cartBounce .5s cubic-bezier(.3, .1, .3, 1.3);
}

/* ---------- Footer ---------- */
.footer {
  background: #0c0a09;
  color: #f0e4cf;
  padding: 22px 28px 18px;
  margin-top: 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: #f0e4cf;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .2s;
}

.footer-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.footer-link svg,
.footer-link .icon {
  color: var(--yellow);
}

.footer-wa {
  color: var(--green);
}

.footer-wa svg {
  color: var(--green);
}

.footer-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.15);
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #948574;
  padding: 14px 0 6px;
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-bottom .credit {
  color: #948574;
}

/* ---------- Cart Drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--cream-soft);
  z-index: 101;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.5, .1, .2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head {
  padding: 22px 24px;
  background: #fffdf8;
  border-bottom: 1px solid var(--cream-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-head h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  color: var(--red);
  letter-spacing: -0.01em;
}

.cart-head .sub {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 2px;
}

.cart-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  transition: background .2s;
}

.cart-close:hover {
  background: var(--cream-deep);
}

/* Single scrollable container: items + form scroll together */
.cart-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  /* Custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--cream-line) transparent;
}

.cart-scroll::-webkit-scrollbar {
  width: 5px;
}

.cart-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.cart-scroll::-webkit-scrollbar-thumb {
  background: var(--cream-line);
  border-radius: 99px;
}

.cart-body {
  padding: 20px 24px 4px;
}

.cart-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  color: var(--ink-mute);
  padding: 40px 20px;
}

.cart-empty-icon {
  width: 64px;
  height: 64px;
  opacity: 0.5;
}

.cart-empty-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink-soft);
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--cream-line);
  animation: cartItemIn .3s cubic-bezier(.3, .1, .3, 1.2);
}

@keyframes cartItemIn {
  from {
    opacity: 0;
    transform: translateX(16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: #1a1108;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Almuerzo item */
.cart-item-img-almuerzo {
  background: linear-gradient(135deg, #3a1a10 0%, #1a1410 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-alm-emoji {
  font-size: 32px;
  line-height: 1;
  display: block;
}

.cart-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.cart-item-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14.5px;
  line-height: 1.2;
  color: var(--ink);
}

.cart-item-choices {
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 3px;
  line-height: 1.45;
  background: var(--cream-deep, #f4ede0);
  border-radius: 6px;
  padding: 3px 7px;
  display: inline-block;
}

.cart-item-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qty-control {
  display: flex;
  align-items: center;
  background: var(--cream-deep);
  border-radius: 999px;
  padding: 2px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--red);
  font-weight: 700;
  transition: background .2s;
}

.qty-btn:hover {
  background: #fff;
}

.qty-val {
  min-width: 28px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
}

.cart-item-price {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--red);
  font-size: 15px;
}

.cart-item-remove {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-mute);
  transition: color .2s, background .2s;
}

.cart-item-remove:hover {
  color: var(--red);
  background: rgba(140, 16, 20, 0.08);
}

.cart-foot {
  background: #fffdf8;
  border-top: 1px solid var(--cream-line);
  padding: 20px 24px 32px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.field label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.field input,
.field textarea {
  background: var(--cream-soft);
  border: 1.5px solid var(--cream-line);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--ink);
  transition: border-color .2s, background .2s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
}

.field textarea {
  resize: vertical;
  min-height: 64px;
}

.delivery-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream-deep);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 12px;
}

.delivery-toggle button {
  padding: 10px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-soft);
  transition: all .2s;
}

.delivery-toggle button.active {
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(140, 16, 20, 0.3);
}

.totals {
  margin: 14px 0 16px;
  padding-top: 14px;
  border-top: 1.5px dashed var(--cream-line);
}

.totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--ink-soft);
}

.totals-row.total {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--cream-line);
}

.totals-row.total .label {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--red);
  font-size: 18px;
  letter-spacing: -0.01em;
}

.totals-row.total .value {
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--red);
  font-size: 26px;
  letter-spacing: -0.02em;
}

.send-wa {
  width: 100%;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff;
  padding: 16px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: transform .15s, opacity .2s;
}

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

.send-wa:active {
  transform: translateY(0);
}

.send-wa:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.5);
}

.send-wa-note {
  margin-top: 8px;
  text-align: center;
  font-size: 11px;
  color: var(--ink-mute);
}

/* ---------- Mobile menu ---------- */
/* Toast Notification Premium */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 100px);
  width: 90%;
  max-width: 380px;
  background: #fff;
  color: #1a0a03;
  padding: 14px 18px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  opacity: 0;
  transition: all .3s cubic-bezier(.4, .1, .2, 1.4);
  display: flex;
  align-items: center;
  gap: 14px;
  pointer-events: none;
  border-left: 5px solid var(--green, #23d160);
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* ---------- Admin link + Order success ---------- */
.admin-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--cream-line);
  background: var(--cream-soft);
  transition: all .2s;
}

.admin-link:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  z-index: 350;
  display: grid;
  place-items: center;
  padding: 20px;
  animation: fadeIn .2s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.success-card {
  background: #fffdf8;
  border-radius: 24px;
  padding: 36px 32px 30px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: popIn .35s cubic-bezier(.3, .1, .3, 1.4);
}

@keyframes popIn {
  from {
    transform: scale(.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-check {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.success-card h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.success-code {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.success-code strong {
  color: var(--red);
  font-weight: 900;
}

.success-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 18px;
}

.success-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--cream-soft);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.success-status .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
  }
}

/* ═══════════════════════════════════════
   TRACKING PANEL (in-app)
═══════════════════════════════════════ */
.trk-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .52);
  backdrop-filter: blur(6px);
  z-index: 350;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeIn .2s;
}

@media (min-width: 640px) {
  .trk-panel-overlay {
    align-items: center;
  }
}

.trk-panel {
  background: #fffdf8;
  border-radius: 28px 28px 0 0;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp .35s cubic-bezier(.3, .1, .3, 1.2);
  box-shadow: 0 -10px 60px rgba(0, 0, 0, .25);
}

@media (min-width: 640px) {
  .trk-panel {
    border-radius: 28px;
    max-height: 88vh;
    animation: popIn .3s cubic-bezier(.3, .1, .3, 1.2);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.trk-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 14px;
  border-bottom: 1px solid rgba(140, 16, 20, .08);
  flex-shrink: 0;
}

.trk-panel-check {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(37, 211, 102, .4);
}

.trk-panel-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -.02em;
}

.trk-panel-sub {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 1px;
}

.trk-panel-min {
  background: var(--cream-soft);
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  font-size: 18px;
  cursor: pointer;
  color: var(--ink-soft);
  display: grid;
  place-items: center;
}

.trk-panel-close {
  background: var(--cream-soft);
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  color: var(--ink-soft);
  display: grid;
  place-items: center;
}

.trk-panel-close:hover,
.trk-panel-min:hover {
  background: var(--line);
}

.trk-panel-statusbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--cream-soft);
  flex-shrink: 0;
}

.trk-panel-eta {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  margin-left: auto;
}

.trk-panel-tabs {
  display: flex;
  gap: 0;
  padding: 12px 20px 0;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.trk-ptab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 8px 16px 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-mute);
  cursor: pointer;
  transition: color .15s, border-color .15s;
}

.trk-ptab.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.trk-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

/* Floating tracking button */
.tracking-float-btn {
  position: fixed;
  bottom: 158px;
  /* Mobile: Sit exactly above the chat-widget (90px + 58px button + 10px gap) */
  right: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fffdf8;
  border: 2px solid rgba(140, 16, 20, .12);
  border-radius: 18px;
  padding: 10px 14px 10px 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
  cursor: pointer;
  z-index: 290;
  animation: popIn .3s cubic-bezier(.3, .1, .3, 1.3);
  max-width: 220px;
}

.tracking-float-btn:hover {
  border-color: var(--red);
}

.tracking-float-icon {
  font-size: 24px;
  line-height: 1;
}

.tracking-float-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.tracking-float-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  color: var(--ink);
}

.tracking-float-status {
  font-size: 11px;
  color: var(--red);
  font-weight: 700;
}

.tracking-float-arrow {
  font-size: 22px;
  color: var(--ink-mute);
  margin-left: auto;
}

@media (min-width: 640px) {
  .tracking-float-btn {
    bottom: 96px;
    /* Desktop: Sit exactly above the chat-widget (28px + 58px button + 10px gap) */
    right: 22px;
  }
}

@media (max-width: 900px) {
  .admin-link {
    display: none;
  }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-panel {
  position: absolute;
  top: 90px;
  left: 16px;
  right: 16px;
  background: #fffdf8;
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-20px);
  opacity: 0;
  transition: all .3s cubic-bezier(.4, .1, .2, 1.2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-panel a {
  padding: 14px 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  border-radius: 14px;
  transition: background .2s;
}

.mobile-menu-panel a:hover {
  background: var(--cream-soft);
}

.mobile-menu-panel a.active {
  color: var(--red);
  background: var(--cream-soft);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero {
    padding: 40px 0 28px 36px;
    min-height: 380px;
  }

  .hero>div:first-child {
    padding-right: 8px;
  }

  .hero-image-wrap {
    min-height: 380px;
  }

  .hero-img {
    max-width: 480px;
  }

  .hero-title {
    font-size: clamp(36px, 4.6vw, 56px);
  }

  .nav {
    gap: 22px;
  }

  .nav a {
    font-size: 15px;
  }
}

@media (max-width: 860px) {
  .hero-wrap {
    grid-template-columns: 1fr;
  }

  .promos {
    padding: 26px 22px;
    flex-direction: row;
    text-align: left;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
  }

  .promos>* {
    position: relative;
    z-index: 1;
  }

  .promos-sun {
    margin-bottom: 0;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .promos-title {
    font-size: 22px;
    flex: 1 1 auto;
  }

  .promos-title .small {
    font-size: 16px;
  }

  .promos-sub {
    display: none;
  }

  .promos-cta {
    margin-top: 0;
    padding: 12px 20px;
    font-size: 13px;
  }

  .promos-cta br {
    display: none;
  }

  .promos-socials {
    margin-top: 0;
    margin-left: auto;
  }

  .promos-handle {
    display: none;
  }

  .hero-curve {
    display: none;
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 16px;
  }

  .hero-wrap {
    padding: 10px 0 20px;
  }

  .header {
    padding: 0 16px;
    top: 12px;
    margin-top: 12px;
  }

  .header-inner {
    padding: 8px 14px 8px 10px;
    gap: 8px;
    border-radius: 28px;
  }

  .logo {
    width: 64px;
    height: 64px;
    margin: -6px 0;
  }

  .nav {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .cta-red {
    display: none;
  }

  .wa-btn {
    width: 42px;
    height: 42px;
  }

  .wa-btn svg {
    width: 22px;
    height: 22px;
  }

  .menu-btn {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--red);
    background: var(--cream-soft);
  }

  .menu-btn.right-menu {
    background: var(--red);
    color: #fff;
  }

  .hero {
    padding: 0 20px 20px;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
  }

  .hero>div:first-child {
    padding-right: 0;
  }

  .hero-image-wrap {
    min-height: auto;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 44px);
  }

  .hero-desc {
    font-size: 15px;
    margin-top: 14px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    margin-top: 22px;
  }

  .hero-ctas .cta-red,
  .hero-ctas .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
    gap: 18px;
  }

  .hero-image-wrap {
    order: -1;
  }

  /* En móvil el video/imagen del hero va CUADRADO con esquinas redondeadas (no círculo):
     se aprovecha todo el espacio y no se pierden las esquinas como con el círculo. */
  .hero-image-wrap {
    padding: 0;
  }

  .hero-img {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
    border-radius: 22px;
    aspect-ratio: 4 / 3;
  }

  .hero-img img {
    object-position: center;
  }

  .promos {
    padding: 28px 18px;
  }

  .promos-title {
    font-size: 22px;
  }

  .promos-sub {
    font-size: 26px;
  }

  .cats-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .cat {
    min-width: 132px;
    min-height: 68px;
  }

  .cat-icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .cat-label {
    font-size: 13px;
  }

  .section-title {
    font-size: 26px;
  }

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

  .product {
    display: flex;
    flex-direction: column;
  }

  .product-img {
    aspect-ratio: 1/1;
  }

  .product-body {
    padding: 12px;
  }

  .product-name {
    font-size: 14.5px;
  }

  .product-desc {
    font-size: 12px;
  }

  .product-price {
    font-size: 18px;
  }

  /* La categoría de almuerzos (carta) conserva el diseño de lista normal, sin 2 columnas */
  .products-almuerzo {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .products-almuerzo .product {
    display: grid;
    grid-template-columns: 130px 1fr;
  }

  .products-almuerzo .product-body {
    padding: 14px;
  }

  .products-almuerzo .product-name {
    font-size: 17px;
  }

  .products-almuerzo .product-desc {
    font-size: 13.5px;
  }

  .products-almuerzo .product-price {
    font-size: 22px;
  }

  .footer {
    padding: 18px 14px;
  }

  .footer-inner {
    gap: 6px;
    justify-content: space-between;
  }

  .footer-link {
    font-size: 13px;
    padding: 6px 8px;
    gap: 6px;
  }

  .footer-divider {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 4px;
    font-size: 11px;
    padding: 10px 0 70px;
  }


  .chat-widget {
    bottom: 24px;
    right: 14px;
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .chat-widget.has-cart-items {
    bottom: 90px;
  }

  .cart-drawer {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .products-almuerzo .product {
    grid-template-columns: 110px 1fr;
  }

  .products-almuerzo .product-name {
    font-size: 15px;
  }

  .products-almuerzo .product-desc {
    font-size: 12.5px;
  }

  .products-almuerzo .product-price {
    font-size: 18px;
  }
}

/* ─── Order success extras ─── */
.success-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 4px;
}

.success-btn-track,
.success-btn-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all .15s;
}

.success-btn-track {
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.success-btn-track:hover {
  background: var(--red);
}

.success-btn-chat {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid #ddd;
}

.success-btn-chat:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ─── Chat Widget flotante ─── */
.chat-hidden {
  display: none !important;
}

.jump-to-cats-btn {
  position: fixed;
  bottom: 28px;
  left: 22px;
  z-index: 45;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,.25));
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  animation: cwpIn .2s ease-out;
}

.jump-to-cats-btn:hover {
  background: #6f0c10;
}

@media (max-width: 640px) {
  .jump-to-cats-btn {
    bottom: 90px;
    left: 12px;
    padding: 10px 14px;
    font-size: 13px;
  }
}

.chat-widget {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
/* Teaser bubble for conversational chat widget */
.chat-widget-teaser {
  position: absolute;
  right: 70px;
  bottom: 8px;
  background: #fffdf8;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
  border: 1.5px solid var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 310;
  font-family: var(--font-head);
  animation: teaserPulse 2s infinite ease-in-out;
  pointer-events: auto;
}

.chat-widget-teaser .teaser-arrow {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #fffdf8;
  border-right: 1.5px solid var(--red);
  border-top: 1.5px solid var(--red);
}

@keyframes teaserPulse {
  0%, 100% {
    transform: translateX(0);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: translateX(-4px);
    box-shadow: 0 8px 24px rgba(31, 107, 214, 0.15);
  }
}

/* RESPONSIVE TEASER BUBBLE: Floats above the button on mobile viewports so it has full width and never overflows! */
@media (max-width: 640px) {
  .chat-widget-teaser {
    right: 0px;
    bottom: 70px;
    animation: teaserPulseMobile 2s infinite ease-in-out;
  }
  
  .chat-widget-teaser .teaser-arrow {
    bottom: -6px;
    right: 24px;
    top: auto;
    left: auto;
    transform: rotate(135deg);
    border-right: 1.5px solid var(--red);
    border-top: 1.5px solid var(--red);
  }
}

@keyframes teaserPulseMobile {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(140, 16, 20, 0.15);
  }
}

.chat-widget-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  border: none;
  cursor: pointer;
  position: relative;
  box-shadow: 0 6px 22px rgba(140, 16, 20, 0.45);
  transition: transform .2s, box-shadow .2s;
}

.chat-widget-btn:not(.is-open)::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2.5px solid rgba(140, 16, 20, 0.45);
  animation: chatRing 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes chatRing {
  0% {
    opacity: .9;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.chat-widget-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(140, 16, 20, 0.6);
}

.chat-widget-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
  font-family: var(--font-head);
  border: 2px solid #fff;
  animation: badgePop .3s cubic-bezier(.3, .1, .3, 1.4);
}

@keyframes badgePop {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.chat-widget-panel {
  position: relative;
  width: 420px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 680px;
  animation: cwpIn .25s cubic-bezier(.3, .1, .3, 1.3);
}

@keyframes cwpIn {
  from {
    opacity: 0;
    transform: scale(.9) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.cwp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--red);
  color: #fff;
}

.cwp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cwp-brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .4);
}

.cwp-close {
  background: rgba(255, 255, 255, .2);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: grid;
  place-items: center;
}

.cwp-close:hover {
  background: rgba(255, 255, 255, .35);
}

.cwp-link {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cwp-link-icon {
  font-size: 36px;
  margin-bottom: 8px;
}

.cwp-link-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 6px;
}

.cwp-link-btn {
  width: 100%;
  padding: 11px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: background .15s;
}

.cwp-link-btn:hover {
  background: #6f0c10;
}

.cwp-order-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: #faf5e8;
  border-bottom: 1px solid #ede5cc;
  font-size: 12px;
  color: var(--ink-soft);
}

.cwp-order-bar strong {
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 800;
}

.cwp-cart-pill {
  font-size: 13px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--red), #6f0c10);
  color: #fff;
  border: none;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 3px 10px rgba(140, 16, 20, 0.35);
  transition: transform .15s, box-shadow .15s;
}

.cwp-cart-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(140, 16, 20, 0.42);
}

.cwp-cart-pill:active {
  transform: scale(.95);
}

.cwp-cart-pill.cart-bounce {
  animation: cartBounce .5s cubic-bezier(.3, .1, .3, 1.3), cwpCartPulse 1s ease-out;
}

@keyframes cwpCartPulse {
  0% { box-shadow: 0 3px 10px rgba(140, 16, 20, 0.35), 0 0 0 0 rgba(140, 16, 20, 0.55); }
  70% { box-shadow: 0 3px 10px rgba(140, 16, 20, 0.35), 0 0 0 10px rgba(140, 16, 20, 0); }
  100% { box-shadow: 0 3px 10px rgba(140, 16, 20, 0.35), 0 0 0 0 rgba(140, 16, 20, 0); }
}

/* Insignia flotante del carrito junto al botoncito del chat (no dentro del panel, para
   que nunca choque con el input ni con el area segura del celular). Aparece cuando el
   chat esta cerrado y hay productos agregados; se oculta sola junto con el chat cuando
   se abre el carrito de la pagina (misma clase .chat-hidden del contenedor padre). */
.cwp-float-cart-badge {
  border-radius: 999px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: cwpFloatCartIn .35s cubic-bezier(.3, .1, .3, 1.3);
}

.cwp-float-cart-icon {
  font-size: 17px;
  flex-shrink: 0;
}

.cwp-float-cart-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0;
}

.cwp-float-cart-count {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.92;
  line-height: 1.2;
}

.cwp-float-cart-total {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

@keyframes cwpFloatCartIn {
  0% { opacity: 0; transform: translateY(10px) scale(.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Version que flota DENTRO del panel del chat mientras esta abierto: se superpone sobre
   la conversacion (position: absolute, no ocupa espacio en el flujo) para que sea imposible
   pasarla por alto, sin robarle espacio al input ni chocar con el area segura de abajo. */
.cwp-float-cart-inpanel {
  position: absolute;
  right: 14px;
  bottom: 74px;
  z-index: 6;
  border-radius: 999px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(140, 16, 20, 0.4);
  animation: cwpFloatCartIn .35s cubic-bezier(.3, .1, .3, 1.3);
}

.cwp-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f9f5ea;
  min-height: 180px;
  max-height: 460px;
}

.cwp-msg {
  display: flex;
  flex-direction: column;
  max-width: 80%;
}

.cwp-msg.sent {
  align-self: flex-end;
  align-items: flex-end;
}

.cwp-msg.recv {
  align-self: flex-start;
  align-items: flex-start;
}

.cwp-bubble {
  padding: 9px 12px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.45;
  word-break: break-word;
}

.cwp-msg.sent .cwp-bubble {
  background: var(--red);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.cwp-msg.recv .cwp-bubble {
  background: #fff;
  color: var(--ink);
  border: 1px solid #ede5cc;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .07);
}

.cwp-input-row {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid #ede5cc;
}

.cwp-input-row input {
  flex: 1;
  min-width: 0;
  padding: 9px 12px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  background: #fafafa;
  transition: border-color .15s;
}

.cwp-input-row input:focus {
  outline: none;
  border-color: var(--red);
}

.cwp-send {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .15s;
}

.cwp-send:hover {
  background: #6f0c10;
}

.cwp-send:disabled {
  background: #ccc;
}

@media (max-width: 640px) {
  .chat-widget {
    bottom: 90px;
    right: 12px;
  }

  .chat-widget-panel {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    max-height: 100dvh !important;
    height: 100dvh !important;
    border-radius: 0 !important;
  }

  .chat-widget-panel .cwp-messages {
    max-height: none !important;
    flex: 1;
    min-height: 0;
  }

  .chat-widget-btn {
    font-size: 13px;
    padding: 13px 18px;
  }

  .success-actions {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════
   CHAT WIDGET — SENDER DISTINCTION
═══════════════════════════════════════ */
.cwp-sender {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-mute);
  margin-bottom: 3px;
  padding-left: 2px;
}

.cwp-msg.recv.admin-msg .cwp-bubble {
  background: #fff5e6;
  border-left: 3px solid #e07000;
}

.cwp-msg.recv.driver-msg .cwp-bubble {
  background: #e8f2ff;
  border-left: 3px solid #1f6bd6;
}

.cwp-time {
  font-size: 10px;
  color: var(--ink-mute);
  margin-top: 3px;
}

/* ═══════════════════════════════════════
   ALMUERZOS SECTION (customer page)
═══════════════════════════════════════ */
.almuerzo-section {
  background: linear-gradient(135deg, #1e120a 0%, #3d1c0e 60%, #1e120a 100%);
  border-radius: 28px;
  margin: 36px 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(60, 10, 0, .28);
  border: 1px solid rgba(245, 180, 40, 0.15);
  animation: border-glow 6s infinite alternate ease-in-out;
}

@keyframes border-glow {
  0% {
    border-color: rgba(245, 180, 40, 0.15);
    box-shadow: 0 20px 60px rgba(60, 10, 0, .28);
  }
  100% {
    border-color: rgba(245, 180, 40, 0.35);
    box-shadow: 0 20px 60px rgba(245, 180, 40, 0.08);
  }
}

.almuerzo-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.almuerzo-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.almuerzo-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20, 8, 2, .92) 0%, rgba(20, 8, 2, .80) 50%, rgba(20, 8, 2, .45) 100%);
}

.almuerzo-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 40px 44px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  animation: slide-in-up 0.7s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.almuerzo-inner:last-child {
  border-bottom: none;
}

.almuerzo-inner:hover {
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 20px rgba(245, 180, 40, 0.04);
  transform: translateY(-2px);
}

@keyframes slide-in-up {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.almuerzo-left {
  flex: 1;
}

.almuerzo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 180, 40, .15);
  border: 1px solid rgba(245, 180, 40, .35);
  color: #f5b428;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(245, 180, 40, 0.08);
}

.almuerzo-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f5b428;
  animation: pulse-dot 1.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: .4;
    transform: scale(1.3);
    box-shadow: 0 0 8px #f5b428;
  }
}

.almuerzo-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 8px;
  letter-spacing: .03em;
}

.almuerzo-title {
  font-family: var(--font-head, "Plus Jakarta Sans", sans-serif);
  font-weight: 900;
  font-size: clamp(24px, 3.5vw, 34px);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -.02em;
  transition: color 0.3s;
}

.almuerzo-inner:hover .almuerzo-title {
  color: #f5b428;
}

.almuerzo-includes {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.almuerzo-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alm-opt-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.alm-opt-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.almuerzo-inner:hover .alm-opt-icon {
  animation: wobble 0.6s ease-in-out;
}

@keyframes wobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-12deg) scale(1.15); }
  75% { transform: rotate(12deg) scale(1.15); }
}

.alm-opt-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  margin-right: 5px;
}

.alm-opt-val {
  font-size: 13px;
  color: rgba(255, 255, 255, .88);
  line-height: 1.4;
}

.almuerzo-right {
  text-align: center;
  flex-shrink: 0;
  min-width: 180px;
}

.almuerzo-price-box {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  padding: 18px 24px;
  margin-bottom: 16px;
  transition: all 0.3s;
}

.almuerzo-inner:hover .almuerzo-price-box {
  background: rgba(245, 180, 40, 0.05);
  border-color: rgba(245, 180, 40, 0.2);
  box-shadow: 0 4px 15px rgba(245, 180, 40, 0.05);
}

.almuerzo-price-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.almuerzo-price {
  font-family: var(--font-head, "Plus Jakarta Sans", sans-serif);
  font-weight: 900;
  font-size: 40px;
  color: #f5b428;
  line-height: 1;
}

.almuerzo-price-note {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  margin-top: 5px;
}

.almuerzo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red, #8c1014);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: var(--font-head, "Plus Jakarta Sans", sans-serif);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 24px;
  cursor: pointer;
  width: 100%;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(140, 16, 20, .45);
  position: relative;
  overflow: hidden;
}

.almuerzo-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine-sweep 3.5s infinite ease-in-out;
}

@keyframes shine-sweep {
  0% { left: -120%; }
  35% { left: 150%; }
  100% { left: 150%; }
}

.almuerzo-avail {
  font-size: 10px;
  color: rgba(255, 255, 255, .35);
  margin-top: 10px;
  letter-spacing: .02em;
}

@media (max-width: 680px) {
  .almuerzo-inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 22px;
    gap: 24px;
  }

  .almuerzo-right {
    width: 100%;
  }

  .almuerzo-btn {
    width: 100%;
  }

  .alm-opt-row {
    justify-content: center;
    text-align: left;
  }

  .almuerzo-badge {
    margin: 0 auto 10px;
  }
}

/* ═══════════════════════════════════════
   ALMUERZO MODAL v2 — Two-column premium
═══════════════════════════════════════ */
.alm-modal-v2 {
  display: flex;
  width: min(900px, 96vw);
  max-height: min(88vh, 700px);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 32px 80px rgba(0,0,0,.22);
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
}

/* ── Left panel: dish image ── */
.alm-panel-left {
  width: 280px;
  flex-shrink: 0;
  background: linear-gradient(170deg, #3b1a0a 0%, #5c2d0e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 20px 0;
  position: relative;
}

.alm-dish-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.alm-dish-placeholder {
  width: 100%;
  height: 220px;
  display: grid;
  place-items: center;
  font-size: 72px;
  background: rgba(255,255,255,.06);
}

.alm-dish-info {
  padding: 18px 20px 0;
  text-align: center;
  color: #fff;
  flex: 1;
}

.alm-dish-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 8px;
  color: #fff;
}

.alm-dish-price {
  font-size: 26px;
  font-weight: 800;
  color: #f5c842;
  margin: 0 0 4px;
  letter-spacing: -.5px;
}

.alm-dish-extra {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin: 0;
}

.alm-cancel-desk {
  margin-top: auto;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.75);
  border-radius: 10px;
  padding: 8px 18px;
  font-size: 13px;
  cursor: pointer;
  transition: background .15s;
  display: none; /* shown only ≥640px via media */
}
.alm-cancel-desk:hover { background: rgba(255,255,255,.22); }

/* ── Resumen vivo de selecciones (panel izquierdo) ── */
.alm-summary-empty {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  text-align: center;
  margin: 14px 0 0;
  font-style: italic;
}

.alm-summary-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
}

.alm-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,.9);
  line-height: 1.3;
  animation: alm-fadein .2s ease;
}

.alm-summary-adicion {
  color: #a8f0a8;
}

.alm-summary-icon {
  color: #f5c842;
  font-weight: 900;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.alm-summary-text {
  flex: 1;
  word-break: break-word;
}

@keyframes alm-fadein {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Product card — almuerzo/ejecutivo badge + tags ── */
.product-personalizable-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #7b3800 0%, #b05000 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 3;
  letter-spacing: .3px;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  white-space: nowrap;
}

.product-alm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 2px 0 4px;
  flex: 1;
}

.product-alm-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  background: #fff8f0;
  border: 1px solid #e8d0b0;
  border-radius: 20px;
  color: #7a3a0a;
  white-space: nowrap;
}

.product-almuerzo .product-name {
  font-size: 14px;
  font-weight: 800;
}


/* ── Right panel: options ── */
.alm-panel-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fafaf8;
}

.alm-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 12px;
  border-bottom: 1px solid #ede8de;
  background: #fff;
}

.alm-title {
  font-size: 19px;
  font-weight: 800;
  color: #1a0a03;
  margin: 0;
  letter-spacing: -.3px;
}

.alm-close-mobile {
  display: none;
  background: transparent !important;
  color: #8c1014 !important;
  width: 38px !important;
  height: 38px !important;
  margin-right: -6px;
}

/* Options scroll area */
.alm-options-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  scrollbar-width: thin;
  scrollbar-color: #d4c4a0 transparent;
}

/* Section */
.alm-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alm-section--adiciones {
  border-top: 1.5px dashed #e0d5c0;
  padding-top: 16px;
}

.alm-section-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #5c3a1a;
}

.alm-sec-icon {
  font-size: 16px;
}

.alm-required {
  margin-left: auto;
  background: #fff1e0;
  color: #a0420d;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.alm-optional {
  margin-left: auto;
  background: #eef3e8;
  color: #4a7a2a;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.alm-counter {
  margin-left: 4px;
  background: var(--red, #c0392b);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
}

/* Chip pills */
.alm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.alm-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #fff;
  border: 1.5px solid #e0d5c0;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  color: #3a200a;
  cursor: pointer;
  transition: all .15s;
  user-select: none;
  white-space: nowrap;
}

.alm-chip input[type="radio"],
.alm-chip input[type="checkbox"] {
  display: none;
}

.alm-chip:hover {
  border-color: var(--red, #c0392b);
  background: #fff5f2;
}

.alm-chip--on {
  background: var(--red, #c0392b);
  border-color: var(--red, #c0392b);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(192,57,43,.25);
  animation: chipPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes chipPop {
  0% { transform: scale(0.95); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.alm-chip--on:hover {
  background: #a93226;
  border-color: #a93226;
}

.alm-chip--neutral {
  border-style: dashed;
  color: #7a6050;
}

.alm-chip--disabled {
  opacity: .4;
  cursor: not-allowed;
}

.alm-chip--addon {
  justify-content: space-between;
}

.alm-addon-price {
  font-size: 12px;
  font-weight: 800;
  color: #1a7a1a;
  margin-left: 6px;
}

.alm-chip--on .alm-addon-price {
  color: #c8ffc8;
}

/* Sticky footer */
.alm-panel-foot {
  border-top: 1px solid #ede8de;
  padding: 14px 24px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.alm-foot-price {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.alm-foot-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #9a8070;
}

.alm-foot-amount {
  font-size: 20px;
  font-weight: 800;
  color: #1a0a03;
  letter-spacing: -.4px;
}

.alm-confirm-btn {
  flex: 1;
  padding: 13px 20px;
  background: var(--red, #c0392b);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all .18s;
  letter-spacing: .1px;
  box-shadow: 0 4px 16px rgba(192,57,43,.3);
}

.alm-confirm-btn:hover:not(:disabled) {
  background: #a93226;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,57,43,.38);
}

.alm-confirm-btn--disabled,
.alm-confirm-btn:disabled {
  background: #ccc;
  color: #fff;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* ── Responsive: mobile stacks vertically ── */
@media (min-width: 640px) {
  .alm-cancel-desk { display: block; }
  .alm-close-mobile { display: none !important; }
}

@media (max-width: 639px) {
  .alm-modal-v2 {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    max-height: 98vh;
    border-radius: 20px 20px 0 0;
    margin: auto 0 0 0;
  }

  .alm-panel-left {
    width: 100%;
    min-height: 110px;
    height: auto;
    max-height: none;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    gap: 0;
    overflow: hidden;
  }

  .alm-dish-img,
  .alm-dish-placeholder {
    width: 110px;
    height: auto;
    min-height: 110px;
    flex-shrink: 0;
    object-fit: cover;
  }

  .alm-dish-info {
    text-align: left;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
  }

  .alm-dish-name {
    font-size: 13px;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .alm-dish-price {
    font-size: 18px;
    margin: 0 0 1px;
    line-height: 1.1;
  }
  .alm-dish-extra {
    font-size: 10px;
    line-height: 1.1;
  }

  .alm-summary-list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
    margin: 6px 0 0 !important;
    padding: 0 !important;
    max-height: none !important;
    overflow-y: visible !important;
    list-style: none !important;
  }

  .alm-summary-item {
    font-size: 9px !important;
    background: rgba(255, 255, 255, 0.16) !important;
    padding: 1px 6px !important;
    border-radius: 8px !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }

  .alm-summary-icon {
    display: none !important;
  }

  .alm-cancel-desk { display: none; }
  .alm-close-mobile { display: flex !important; }

  .alm-panel-header { padding: 14px 16px 10px; }
  .alm-options-scroll { padding: 12px 16px; max-height: 50vh; }
  
  .alm-panel-foot {
    padding: 12px 16px;
    flex-shrink: 0 !important;
  }

  @media (max-width: 480px) {
    .alm-panel-foot {
      flex-direction: column !important;
      align-items: stretch !important;
      gap: 10px !important;
      padding: 12px 16px 14px !important;
    }
    .alm-foot-price {
      flex-direction: row !important;
      justify-content: space-between !important;
      align-items: center !important;
      width: 100% !important;
    }
    .alm-foot-amount {
      font-size: 22px !important;
    }
    .alm-confirm-btn {
      width: 100% !important;
      justify-content: center !important;
      display: flex !important;
      align-items: center !important;
      height: 48px !important;
      margin: 0 !important;
    }
  }
}

/* Keep old radio-option styles for other modals that still use them */
.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid var(--line, #e6d8b8);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  font-size: 14px;
  color: var(--ink);
  background: var(--panel, #fffdf8);
}
.radio-option input[type="radio"],
.radio-option input[type="checkbox"] { accent-color: var(--red); flex-shrink: 0; }
.radio-option:hover { border-color: var(--red); background: var(--red-soft, #f5e1dc); }
.radio-option.selected { border-color: var(--red); background: var(--red-soft, #f5e1dc); font-weight: 600; }
.radio-option.disabled { cursor: not-allowed; opacity: .45; }
.radio-option.disabled:hover { border-color: var(--line, #e6d8b8); background: var(--panel, #fffdf8); }



/* ═══════════════════════════════════════
   NOSOTROS SECTION
═══════════════════════════════════════ */
.nosotros-section {
  position: relative;
  background: linear-gradient(155deg, var(--cream-soft, #fdf6ea) 0%, var(--cream-deep, #f5ead2) 100%);
  border: 1.5px solid var(--cream-line, #e6d8b8);
  border-radius: 28px;
  margin: 32px 0;
  padding: 48px 40px;
  overflow: hidden;
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

/* ---------- Visual side ---------- */
.nosotros-visual {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.nosotros-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140,16,20,.22) 0%, rgba(140,16,20,0) 68%);
  filter: blur(2px);
  z-index: 0;
}

.nosotros-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--red, #8c1014), var(--yellow, #f5b428), var(--red, #8c1014));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
  opacity: .55;
  animation: nos-spin 14s linear infinite;
  z-index: 1;
}

.nosotros-badge {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg, 0 24px 60px rgba(80,20,10,.18));
  position: relative;
  z-index: 2;
}

.nosotros-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nosotros-pin {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(155deg, var(--red-soft, #a51a1f), var(--red-deep, #6f0c10));
  color: #fff;
  border: 3px solid var(--cream-soft, #fdf6ea);
  box-shadow: var(--shadow-md, 0 12px 32px rgba(80,20,10,.12));
  z-index: 3;
  animation: nos-pulse 2.6s ease-in-out infinite;
}

@keyframes nos-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes nos-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}

/* ---------- Content side ---------- */
.nosotros-content {
  text-align: left;
}

.nosotros-tag {
  display: inline-block;
  background: var(--red, #8c1014);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.nosotros-title {
  font-family: var(--font-head, "Plus Jakarta Sans", sans-serif);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.nosotros-desc {
  font-size: 15px;
  color: var(--ink-soft, #5a4843);
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 560px;
}

.nosotros-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
  max-width: 560px;
}

.nos-stat {
  background: rgba(255,255,255,.6);
  border: 1px solid var(--cream-line, #e6d8b8);
  border-radius: 16px;
  padding: 16px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.nos-stat:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: var(--shadow-sm, 0 2px 6px rgba(80,20,10,.08));
}

.nos-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--red, #8c1014), var(--red-deep, #6f0c10));
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 2px;
  box-shadow: 0 4px 10px rgba(140,16,20,.25);
}

.nos-num {
  font-family: var(--font-head, "Plus Jakarta Sans", sans-serif);
  font-weight: 900;
  font-size: 22px;
  color: var(--red);
  line-height: 1;
}

.nos-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mute);
  line-height: 1.3;
}

.nosotros-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red, #8c1014);
  color: #fff;
  text-decoration: none;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  border-radius: 999px;
  box-shadow: var(--shadow-sm, 0 2px 6px rgba(80,20,10,.08));
  transition: transform .2s, box-shadow .2s, background .2s;
}

.nosotros-cta:hover {
  background: var(--red-soft, #a51a1f);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md, 0 12px 32px rgba(80,20,10,.12));
}

@media (max-width: 760px) {
  .nosotros-section {
    padding: 36px 22px;
  }

  .nosotros-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .nosotros-content {
    text-align: center;
  }

  .nosotros-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .nosotros-stats {
    margin-left: auto;
    margin-right: auto;
  }

  .nosotros-visual {
    width: 180px;
    height: 180px;
  }

  .nosotros-badge {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 420px) {
  .nosotros-stats {
    grid-template-columns: 1fr;
  }

  .nos-stat {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }
}

/* ═══════════════════════════════════════
   MODAL (almuerzo + shared)
═══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(4px);
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 20px;
  animation: fadeInModal .2s;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal {
  background: var(--panel, #fffdf8);
  border-radius: 22px;
  max-width: 560px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
  animation: popModal .25s cubic-bezier(.3, .1, .3, 1.3);
  position: relative;
  display: flex;
  flex-direction: column;
}

@keyframes popModal {
  from {
    transform: scale(.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-head {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--line, #e6d8b8);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}

.modal-head h2 {
  font-family: var(--font-head, "Plus Jakarta Sans", sans-serif);
  font-weight: 900;
  font-size: 20px;
  color: var(--ink, #1a1410);
  letter-spacing: -.02em;
}

.modal-head p {
  font-size: 13px;
  color: var(--ink-mute, #8a7a73);
  margin-top: 2px;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg, #f4ede0);
  display: grid;
  place-items: center;
  color: var(--ink-soft, #5a4843);
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: background .15s;
}

.modal-close:hover {
  background: #f5e1dc;
  color: var(--red, #8c1014);
}

.modal-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}

.modal-foot {
  padding: 14px 24px 20px;
  border-top: 1px solid var(--line, #e6d8b8);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-shrink: 0;
  background: var(--panel, #fffdf8);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 12px;
  font-family: var(--font-head, "Plus Jakarta Sans", sans-serif);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  cursor: pointer;
  transition: all .15s;
  border: none;
}

.btn-ghost {
  background: var(--bg, #f4ede0);
  color: var(--ink-soft, #5a4843);
}

.btn-ghost:hover {
  background: var(--line, #e6d8b8);
}

.btn-red {
  background: var(--red, #8c1014);
  color: #fff;
}

.btn-red:hover {
  background: #6f0c10;
}

.btn-red:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.btn-attention {
  background: var(--yellow, #f5b428);
  color: var(--ink, #1a1410);
  animation: btnAttentionPulse 1.4s ease-in-out infinite;
}

.btn-attention:hover {
  background: var(--yellow-soft, #fcd17a);
}

@keyframes btnAttentionPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(245, 180, 40, .55);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(245, 180, 40, 0);
  }
}

.cust-group-shake {
  animation: custGroupShake .5s;
  outline: 2px solid var(--yellow, #f5b428);
  outline-offset: 6px;
  border-radius: 10px;
}

@keyframes custGroupShake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.field label {
  font-family: var(--font-head, "Plus Jakarta Sans", sans-serif);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink, #1a1410);
  margin-bottom: 6px;
}

/* ═══════════════════════════════════════
   VIDEO SECTION (customer page)
═══════════════════════════════════════ */
.video-section {
  margin: 32px 0;
}

.video-section-head {
  text-align: center;
  margin-bottom: 18px;
}

.video-section-title {
  font-family: var(--font-head, "Plus Jakarta Sans", sans-serif);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--ink, #1a1410);
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.video-section-desc {
  font-size: 15px;
  color: var(--ink-soft, #5a4843);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

.video-section-player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
}

.video-section-player iframe,
.video-section-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

@media (max-width: 640px) {
  .video-section {
    margin: 20px 0;
  }

  .video-section-player {
    border-radius: 12px;
  }
}

/* ─── Item Customize Modal ─── */
.item-modal {
  max-width: 480px;
}

.cust-group {
  margin-bottom: 20px;
}

.cust-group-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cust-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  background: #f0f0ee;
  border-radius: 20px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: .3px;
}

.cust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cust-pill {
  padding: 7px 13px;
  border-radius: 20px;
  border: 1.5px solid var(--line);
  background: #fafaf8;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .15s;
}

.cust-pill:hover {
  border-color: var(--red);
  color: var(--red);
}

.cust-pill.selected {
  border-color: var(--red);
  background: var(--red-soft, #fef2f2);
  color: var(--red);
}

.cust-addon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}

.cust-addon:hover {
  border-color: var(--red);
}

.cust-addon.selected {
  border-color: var(--red);
  background: var(--red-soft, #fef2f2);
}

.cust-addon input {
  accent-color: var(--red);
  width: 16px;
  height: 16px;
}

.addon-name {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
}

.addon-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--green, #16a34a);
}

/* ─── Chat Widget — Order Status Bar ─── */
.cwp-status-bar {
  display: flex;
  padding: 10px 14px;
  background: #fafaf8;
  border-bottom: 1px solid var(--line);
  gap: 0;
  overflow-x: auto;
}

.cwp-status-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 56px;
  position: relative;
}

.cwp-status-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  width: 50%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.cwp-status-step.done:not(:last-child)::after,
.cwp-status-step.active:not(:last-child)::after {
  background: var(--green, #16a34a);
}

.cwp-status-dot {
  font-size: 18px;
  z-index: 1;
}

.cwp-status-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--ink-mute);
  margin-top: 3px;
  text-align: center;
  line-height: 1.2;
}

.cwp-status-step.active .cwp-status-label {
  color: var(--green, #16a34a);
}

.cwp-status-step.done .cwp-status-label {
  color: var(--green, #16a34a);
}

/* ─── Chat attach buttons ─── */
.cwp-attach {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 0 4px;
  opacity: .7;
  transition: opacity .15s;
  flex-shrink: 0;
}

.cwp-attach:hover {
  opacity: 1;
}

.cwp-attach.recording {
  opacity: 1;
  animation: rec-pulse .7s ease-in-out infinite;
}

@keyframes rec-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.cwp-loc-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue, #1f6bd6);
  text-decoration: underline;
}

/* ─── Promos social icon (no link) ─── */
.promos-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  opacity: .6;
}

/* ═══════════════════════════════════════
   PROMOTIONS SECTION (customer page)
═══════════════════════════════════════ */
.promotions-section {
  margin: 32px 0;
}

.promotions-header {
  margin-bottom: 20px;
}

.promotions-tag {
  display: inline-block;
  background: var(--red, #8c1014);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.promotions-title {
  font-family: var(--font-head, "Plus Jakarta Sans", sans-serif);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--ink, #1a1410);
  letter-spacing: -.02em;
}

.promotions-grid {
  display: flex;
  overflow-x: auto;
  gap: 18px;
  padding: 10px 4px 20px;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.promotions-grid::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome, Safari and Opera */
}

.promo-card {
  flex: 0 0 280px;
  /* Prevent shrinking in horizontal slider */
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(80, 20, 10, .1);
  border: 1.5px solid var(--line, #e6d8b8);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(80, 20, 10, .15);
}

.promo-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: zoom-in;
}

.promo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}

.promo-lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  cursor: default;
}

.promo-lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1410;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

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

.promo-card:hover .promo-card-img img {
  transform: scale(1.04);
}

.promo-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.promo-card-title {
  font-family: var(--font-head, "Plus Jakarta Sans", sans-serif);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink, #1a1410);
  margin-bottom: 6px;
  line-height: 1.2;
}

.promo-card-desc {
  font-size: 13px;
  color: var(--ink-soft, #5a4843);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 14px;
}

.promo-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red, #8c1014);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 16px;
  cursor: pointer;
  transition: opacity .2s;
  width: 100%;
  margin-top: auto;
}

.promo-card-btn:hover {
  opacity: .88;
}

/* ─── Product video badge ─── */
.product-video-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
  pointer-events: none;
}

/* ─── Payment Methods (cart) ─── */
.pay-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 8px;
}

.pay-method-btn {
  padding: 11px 10px;
  border-radius: 12px;
  border: 2px solid var(--cream-line);
  background: var(--cream-soft);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  text-align: center;
}

.pay-method-btn:hover {
  border-color: var(--red);
  background: #fff;
}

.pay-method-btn.active {
  border-color: var(--red);
  background: #fff;
  color: var(--red);
  box-shadow: 0 2px 8px rgba(140, 16, 20, .12);
}

.change-chip {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(224, 112, 0, .1);
  color: var(--ink);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 13px;
}

.pay-method-hint {
  margin-top: 10px;
  padding: 9px 12px;
  background: var(--cream-soft, #fdf6ea);
  border: 1px solid var(--cream-line, #ead7b3);
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--ink-soft, #5a4843);
  line-height: 1.4;
}

.field-shake {
  animation: fieldShake .5s;
}

.field-shake .pay-methods-grid .pay-method-btn {
  outline: 2px solid var(--yellow, #f5b428);
  outline-offset: 3px;
}

@keyframes fieldShake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}

/* ═══════════════════════════════════════
   TRK-* variables + components (in-app tracking)
═══════════════════════════════════════ */
:root {
  --trk-panel: #fffdf8;
  --trk-line: #e6d8b8;
  --trk-ink: #1a1410;
  --trk-mute: #8a7a73;
  --trk-soft: #5a4843;
  --trk-red: #8c1014;
  --trk-red-deep: #6f0c10;
  --trk-red-soft: #f5e1dc;
  --trk-green: #1f9d54;
  --trk-green-soft: #d8f0e0;
  --trk-yellow: #f5b428;
  --trk-orange: #e07000;
  --trk-blue: #1f6bd6;
}

/* Status chips */
.trk-chip {
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trk-chip.nuevo {
  background: var(--trk-red-soft);
  color: var(--trk-red);
}

.trk-chip.preparando {
  background: #fde8b8;
  color: #8a5a00;
}

.trk-chip.listo {
  background: #dbe7fa;
  color: var(--trk-blue);
}

.trk-chip.en_camino {
  background: #ffe4c4;
  color: var(--trk-orange);
}

.trk-chip.entregado {
  background: var(--trk-green-soft);
  color: var(--trk-green);
}

.trk-chip.cancelled {
  background: #e6e3da;
  color: #6a6357;
}

/* Timeline */
.trk-timeline {
  display: flex;
  position: relative;
  overflow-x: auto;
  padding-bottom: 4px;
}

.trk-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 68px;
  position: relative;
  opacity: 0.4;
  transition: opacity .3s;
}

.trk-step.done {
  opacity: 0.7;
}

.trk-step.active {
  opacity: 1;
}

.trk-step-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ede5cc;
  display: grid;
  place-items: center;
  font-size: 20px;
  border: 3px solid #ddd;
  transition: all .3s;
  position: relative;
  z-index: 2;
}

.trk-step.done .trk-step-icon {
  background: var(--trk-green-soft);
  border-color: var(--trk-green);
}

.trk-step.active .trk-step-icon {
  background: var(--trk-red);
  border-color: var(--trk-red-deep);
  animation: trkPulse 1.5s infinite;
}

@keyframes trkPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(140, 16, 20, .3);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(140, 16, 20, 0);
  }
}

.trk-step-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 10px;
  text-align: center;
  margin-top: 6px;
  color: var(--trk-soft);
  line-height: 1.3;
}

.trk-step.active .trk-step-label {
  color: var(--trk-red);
}

.trk-step-line {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: #ddd;
  z-index: 1;
}

.trk-step-line.done {
  background: var(--trk-green);
}

.trk-cancelled-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #fae8e8;
  border-radius: 12px;
  color: var(--trk-red);
  font-weight: 600;
  font-size: 14px;
}

/* Section */
.trk-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trk-section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  color: var(--trk-ink);
}

/* Items card */
.trk-items-card {
  background: var(--trk-panel);
  border: 1px solid var(--trk-line);
  border-radius: 16px;
  overflow: hidden;
}

.trk-customer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 12px 16px;
  background: #f9f0dc;
  border-bottom: 1px solid var(--trk-line);
  font-size: 12px;
  color: var(--trk-soft);
}

.trk-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--trk-line);
  font-size: 14px;
}

.trk-item-row:last-of-type {
  border-bottom: none;
}

.trk-item-qty {
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--trk-red);
  font-size: 14px;
  min-width: 24px;
}

.trk-item-name {
  flex: 1;
  color: var(--trk-ink);
}

.trk-item-price {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--trk-red);
}

.trk-notes {
  padding: 10px 16px;
  background: #fde8b8;
  font-size: 12px;
  color: #5a3c00;
  font-style: italic;
}

.trk-total-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  background: #f9f0dc;
  border-top: 1.5px solid var(--trk-line);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 16px;
  color: var(--trk-red);
}

/* Map */
.trk-leaflet-map {
  height: 300px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--trk-line);
}

.trk-map-nodata {
  height: 120px;
  background: #f0ebe0;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--trk-mute);
  font-size: 14px;
  border: 1px dashed var(--trk-line);
}

.trk-map-nodata-icon {
  font-size: 28px;
  opacity: .5;
}

.trk-map-pin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
  border: 2px solid rgba(255, 255, 255, .8);
}

.trk-map-pin.driver-pin {
  background: #1a1410;
  color: #fff;
}

/* Driver bar */
.trk-driver-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--trk-panel);
  border: 1px solid var(--trk-line);
  border-radius: 14px;
  padding: 12px 16px;
}

.trk-driver-ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--trk-red), var(--trk-red-deep));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.trk-wa-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 10px;
  background: var(--trk-green);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
}

/* ─── Panel Chat ─── */
.trk-chat {
  background: var(--trk-panel);
  border: 1px solid var(--trk-line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.trk-chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--trk-red);
  color: #fff;
  flex-shrink: 0;
}

.trk-chat-head img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .4);
}

.trk-chat-messages {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f9f5ea;
  min-height: 180px;
  max-height: 340px;
  overflow-y: auto;
  flex: 1;
}

.trk-msg {
  display: flex;
  flex-direction: column;
  max-width: 78%;
}

.trk-msg.sent {
  align-self: flex-end;
  align-items: flex-end;
}

.trk-msg.recv {
  align-self: flex-start;
  align-items: flex-start;
}

.trk-bubble {
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
  word-break: break-word;
}

.trk-msg.sent .trk-bubble {
  background: var(--trk-red);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.trk-msg.recv .trk-bubble {
  background: #fff;
  color: var(--trk-ink);
  border: 1px solid var(--trk-line);
  border-bottom-left-radius: 4px;
}

.trk-msg-time {
  font-size: 10px;
  color: var(--trk-mute);
  margin-top: 3px;
}

.trk-msg-sender {
  font-size: 10px;
  font-weight: 700;
  color: var(--trk-mute);
  margin-bottom: 2px;
}

.trk-chat-input {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid var(--trk-line);
  flex-shrink: 0;
  align-items: center;
}

.trk-chat-input input {
  flex: 1;
  padding: 10px 13px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  background: #fafafa;
  transition: border-color .15s;
}

.trk-chat-input input:focus {
  outline: none;
  border-color: var(--trk-red);
}

.trk-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--trk-red);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.trk-send-btn:disabled {
  background: #ccc;
  cursor: default;
}

.trk-attach-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  padding: 0 2px;
  opacity: .65;
  transition: opacity .15s;
  flex-shrink: 0;
}

.trk-attach-btn:hover {
  opacity: 1;
}

/* ─── WhatsApp-like recording bar ─── */
.chat-rec-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 6px 0;
}

.chat-rec-cancel {
  font-size: 18px;
  opacity: .6;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
}

.chat-rec-cancel:hover {
  opacity: 1;
}

.chat-rec-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  background: #fce8e8;
  border-radius: 10px;
  padding: 8px 12px;
}

.chat-rec-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d00;
  flex-shrink: 0;
  animation: recDotPulse .8s ease-in-out infinite;
}

@keyframes recDotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(.7);
  }
}

.chat-rec-waves {
  display: flex;
  align-items: center;
  gap: 3px;
  flex: 1;
  height: 20px;
}

.chat-rec-wave {
  display: inline-block;
  width: 3px;
  border-radius: 2px;
  background: var(--trk-red);
  animation: recWave .6s ease-in-out infinite alternate;
}

.chat-rec-wave:nth-child(1) {
  animation-delay: 0s;
  height: 6px;
}

.chat-rec-wave:nth-child(2) {
  animation-delay: .1s;
  height: 14px;
}

.chat-rec-wave:nth-child(3) {
  animation-delay: .2s;
  height: 18px;
}

.chat-rec-wave:nth-child(4) {
  animation-delay: .15s;
  height: 12px;
}

.chat-rec-wave:nth-child(5) {
  animation-delay: .05s;
  height: 8px;
}

.chat-rec-wave:nth-child(6) {
  animation-delay: .25s;
  height: 16px;
}

.chat-rec-wave:nth-child(7) {
  animation-delay: .1s;
  height: 10px;
}

@keyframes recWave {
  from {
    transform: scaleY(.4);
  }

  to {
    transform: scaleY(1);
  }
}

.chat-rec-time {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--trk-red);
  white-space: nowrap;
  flex-shrink: 0;
}

.chat-rec-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--trk-red);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(140, 16, 20, .35);
}

/* Chat tab: make chat fill the panel body */
.trk-body-chat {
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.trk-body-chat .trk-chat {
  flex: 1;
  border-radius: 0;
  min-height: 0;
}

.trk-body-chat .trk-chat-messages {
  max-height: none;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

/* Chat pantalla completa en móvil */
.mobile-chat-screen {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-chat-screen .trk-chat {
  flex: 1;
  border-radius: 0;
  border: none;
  min-height: 0;
}

.mobile-chat-screen .trk-chat-messages {
  max-height: none;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

/* ─── Premium Client Enhancements ─── */
.search-input:focus {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(140, 16, 20, 0.12);
}

.skeleton-pulse {
  background: linear-gradient(90deg, var(--cream-deep) 25%, var(--cream-soft) 50%, var(--cream-deep) 75%);
  background-size: 200% 100%;
  animation: loading-pulse 1.5s infinite ease-in-out;
}

@keyframes loading-pulse {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.skeleton-product {
  pointer-events: none;
  border: 1.5px solid var(--cream-line) !important;
  opacity: 0.85;
}

/* ─── Thermal Print Receipt Styles ─── */
@media print {
  body {
    background: #fff !important;
    color: #000 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #root,
  .topbar,
  .shell,
  .adm-toast {
    display: none !important;
  }

  #print-ticket {
    display: block !important;
    width: 80mm !important;
    max-width: 80mm !important;
    margin: 0 auto !important;
    padding: 2mm !important;
    font-family: 'Courier New', Courier, monospace !important;
    font-size: 12px !important;
    color: #000 !important;
    line-height: 1.4 !important;
  }

  #print-ticket * {
    color: #000 !important;
  }

  /* Ensure page breaks are clean */
  @page {
    size: auto;
    margin: 0mm;
  }
}

/* --- Wompi Payment Button --- */
.wompi-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #00b050 0%, #007a37 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-head);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 176, 80, 0.35);
  letter-spacing: 0.01em;
}

.wompi-btn:hover:not(:disabled) {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 176, 80, 0.45);
}

.wompi-btn:active:not(:disabled) {
  transform: translateY(0);
}

.wompi-note {
  text-align: center;
  font-size: 11px;
  color: #aaa;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* --- Wompi PAGADO badge (admin panel) --- */
.paid-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #e6f9ee;
  color: #1a7a3e;
  border: 1px solid #a3dbb8;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  letter-spacing: 0.04em;
}

/* --- Address Autocomplete --- */
.addr-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--cream-soft, #fdf6ea);
  border: 1.5px solid var(--cream-line, #ead7b3);
  border-radius: 14px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.addr-input-wrap:focus-within {
  border-color: var(--red, #8c1014);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(140, 16, 20, .08);
}

.addr-input-icon {
  padding-left: 14px;
  font-size: 15px;
  opacity: .5;
  flex-shrink: 0;
}

.addr-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  padding: 12px 10px;
  font-size: 14px;
  color: var(--ink, #1a1410);
}

.addr-input-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.addr-input-clear {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border: none;
  border-radius: 50%;
  background: var(--cream-line, #ead7b3);
  color: var(--ink-soft, #5a4843);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}

.addr-input-clear:hover {
  background: var(--red, #8c1014);
  color: #fff;
}

.addr-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid #e8d9c0;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  z-index: 9999;
  overflow: hidden;
  max-height: 280px;
  overflow-y: auto;
}

.addr-option {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid #f5ede0;
}

.addr-option:last-child {
  border-bottom: none;
}

.addr-option:hover {
  background: #fdf6ed;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* --- AI Chatbot Bouncing Dots --- */
@keyframes ai-bounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }

  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.ai-typing-dot {
  font-size: 8px;
  display: inline-block;
  color: var(--red);
}

/* ═══════════════════════════════════════
   ALMUERZO ELEGANT CARD
═══════════════════════════════════════ */
.almuerzo-elegant-card {
  display: flex;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(140, 16, 20, 0.08);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}
.almuerzo-elegant-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(140, 16, 20, 0.12);
  border-color: rgba(140, 16, 20, 0.2);
}
.almuerzo-elegant-img-container {
  width: 280px;
  flex-shrink: 0;
  position: relative;
  background: #fdfbf7;
}
.almuerzo-elegant-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.almuerzo-elegant-img-fallback {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, #a51a1f 0%, #5a0a0c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.almuerzo-elegant-img-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06) 1px, transparent 1px), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.alm-elegant-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #f5c842;
  color: #1a0a03;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.almuerzo-elegant-info {
  flex: 1;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fffdf8;
}
.almuerzo-elegant-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 16px;
}
.almuerzo-elegant-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: #1a0a03;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.almuerzo-elegant-price {
  font-size: 24px;
  font-weight: 900;
  color: #8c1014;
  white-space: nowrap;
}
.almuerzo-elegant-desc {
  font-size: 15px;
  color: #5c4538;
  margin: 0 0 24px 0;
  line-height: 1.5;
  max-width: 480px;
  font-weight: 500;
}
.almuerzo-elegant-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a0a03;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 800;
  width: fit-content;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.almuerzo-elegant-card:hover .almuerzo-elegant-btn {
  background: #8c1014;
  box-shadow: 0 8px 20px rgba(140, 16, 20, 0.3);
}
.almuerzo-elegant-btn svg {
  transition: transform 0.2s;
}
.almuerzo-elegant-card:hover .almuerzo-elegant-btn svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .almuerzo-section {
    padding: 12px 10px 10px !important;
  }

  .almuerzos-decor-banner {
    margin-bottom: 10px !important;
    border-radius: 18px !important;
  }

  .almuerzos-decor-banner img {
    max-height: 118px;
    object-fit: cover !important;
    object-position: center;
  }

  .almuerzo-elegant-card {
    flex-direction: column;
    border-radius: 18px;
  }
  .almuerzo-elegant-img-container {
    width: 100%;
    height: 96px;
  }
  .almuerzo-elegant-img-fallback {
    min-height: 96px;
  }
  .almuerzo-elegant-info {
    padding: 14px 14px 16px;
  }
  .almuerzo-elegant-header {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
  }
  .almuerzo-elegant-title {
    font-size: 18px;
  }
  .almuerzo-elegant-price {
    font-size: 20px;
  }
  .almuerzo-elegant-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .almuerzo-elegant-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 16px;
  }

  .almuerzo-elegant-preview-list {
    margin-bottom: 12px;
  }

  .alm-prev-item {
    font-size: 12px;
  }
}
.almuerzo-elegant-preview-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.alm-prev-item {
  font-size: 14px;
  color: #5c4538;
  line-height: 1.4;
}
.alm-prev-item strong {
  color: #1a0a03;
  font-weight: 700;
}

/* Efectos Decorativos Almuerzo Especial */
.alm-menu-glow {
  animation: glowMenu 2s ease-in-out infinite alternate;
}
@keyframes glowMenu {
  from {
    text-shadow: 0 4px 15px rgba(255,255,255,0.2), 0 0 10px rgba(245, 200, 66, 0.1);
    transform: scale(1);
  }
  to {
    text-shadow: 0 4px 25px rgba(255,255,255,0.6), 0 0 20px rgba(245, 200, 66, 0.4);
    transform: scale(1.02);
  }
}
.alm-badge-pulse {
  animation: badgePulse 2s infinite;
}
@keyframes badgePulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 200, 66, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(245, 200, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 200, 66, 0); }
}


/* --- MEJORAS UX JULIO 15 --- */
/* Botones Dorados Elegantes */
.btn-secondary-elegant {
  background: linear-gradient(135deg, #fefae8 0%, #f5e1b2 50%, #fefae8 100%) !important;
  color: #4a3626 !important;
  border: 1px solid #dcb980 !important;
  box-shadow: 0 4px 15px rgba(220, 185, 128, 0.3) !important;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  cursor: pointer;
  background-size: 200% auto !important;
  animation: goldShine 3s linear infinite;
  transition: all 0.2s ease;
}
.btn-secondary-elegant:hover {
  background: linear-gradient(135deg, #fff 0%, #fcedc5 100%) !important;
  box-shadow: 0 6px 20px rgba(220, 185, 128, 0.5) !important;
  transform: scale(1.03) !important;
}

.hero-secondary-ctas > button {
  order: -1;
  background: linear-gradient(135deg, #8c1014 0%, #b71922 100%) !important;
  color: #fff !important;
  border-color: #8c1014 !important;
  box-shadow: 0 10px 24px rgba(140, 16, 20, 0.28) !important;
}

.hero-menu-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}

.btn-carta-secondary {
  min-width: 170px;
}

.btn-promos-secondary {
  background: #fffdf8 !important;
  color: var(--red) !important;
  border-color: rgba(140, 16, 20, 0.28) !important;
  box-shadow: none !important;
}

.hero-scroll-cue {
  margin-top: 18px;
  border: none;
  background: rgba(255, 253, 248, 0.88);
  color: var(--red);
  border-radius: 999px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 6px 16px rgba(44, 30, 26, 0.08);
  cursor: pointer;
  animation: heroCueFloat 1.8s ease-in-out infinite;
  transition: opacity .25s ease, transform .25s ease;
}
.hero-scroll-cue.hero-scroll-cue-hidden {
  opacity: 0;
  pointer-events: none;
  animation: none;
}

@keyframes heroCueFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
@keyframes goldShine {
  to {
    background-position: 200% center;
  }
}

/* Boton de Carrito (rojo de marca, igual al resto de CTAs del sitio) */
.cta-cart-btn {
  background: linear-gradient(135deg, var(--red), #6f0c10);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(140, 16, 20, 0.3);
  transition: all 0.2s ease;
  position: relative;
}
.cta-cart-btn:hover {
  background: linear-gradient(135deg, #6f0c10, #6f0c10);
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(140, 16, 20, 0.4);
}
.header-actions .cta-cart-btn {
  display: flex;
}
@media (max-width: 600px) {
  .header-actions .cta-cart-btn {
    padding: 10px 12px;
  }
  .header-actions .cta-cart-btn .label-long {
    display: none;
  }
}

/* Hero CTAs Centering for Mobile */
.hero-secondary-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: stretch;
}
@media (max-width: 600px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-secondary-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-menu-links {
    width: 100%;
  }
  .hero-ctas button, .hero-secondary-ctas button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-scroll-cue {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 250;
    margin: 0;
    width: max-content;
    max-width: calc(100vw - 32px);
    padding: 11px 18px;
    background: var(--red);
    color: #fffdf8;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 26px rgba(44, 30, 26, 0.32);
    animation: heroCueFloatMobile 1.6s ease-in-out infinite;
  }
  .hero-scroll-cue.hero-scroll-cue-hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }
  .hero-scroll-cue span {
    display: inline-block;
    font-size: 12px;
  }
  .hero-scroll-cue svg {
    width: 20px;
    height: 20px;
  }
}

@keyframes heroCueFloatMobile {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

/* Toast Additions */
.toast.toast-error {
  border-left-color: var(--red, #8c1014);
}
.toast .check {
  background: var(--green, #23d160);
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.toast-msg-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  text-align: left;
}
.toast-title {
  font-size: 14px;
  font-weight: 800;
  color: #1a0a03;
  line-height: 1.3;
}

/* ==========================================
   Sección de Favoritos e Indicador Llamativo
   ========================================== */
.fav-showcase-section {
  width: 100%;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
}

.fav-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px 18px;
  background: #fffdfa;
  cursor: pointer;
  user-select: none;
}

.fav-scroll-text {
  font-size: 15px;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: #8a7a73;
  font-weight: 600;
}

.fav-scroll-main {
  font-size: 21px;
  font-weight: 800;
  color: var(--red, #8c1014);
  margin-top: 4px;
  font-family: var(--font-head);
  letter-spacing: -0.01em;
}

.fav-scroll-arrow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.fav-rays {
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.fav-rays.left {
  animation: rays-bounce-left 1.6s ease-in-out infinite;
}

.fav-rays.right {
  animation: rays-bounce-right 1.6s ease-in-out infinite;
}

@keyframes rays-bounce-left {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-3px); }
}

@keyframes rays-bounce-right {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

.fav-scroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--red, #8c1014);
  color: var(--red, #8c1014);
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(140,16,20,0.12);
  transition: all 0.2s ease;
  animation: fav-bounce 1.6s ease-in-out infinite;
  padding: 0;
}

.fav-scroll-btn:hover {
  background: var(--red, #8c1014);
  color: #fff;
  box-shadow: 0 8px 22px rgba(140,16,20,0.22);
}

@keyframes fav-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.fav-container-bg {
  background: #fbf5eb;
  border-radius: 36px 36px 0 0;
  padding: 32px 0 28px 0;
  border-top: 1.5px solid rgba(234, 215, 179, 0.45);
  box-shadow: inset 0 10px 20px -10px rgba(0,0,0,0.02);
}

.fav-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px 22px;
}

.fav-header-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.fav-sparkle {
  position: absolute;
  color: #ffb300;
  font-size: 20px;
  animation: sparkle-glow 2s ease-in-out infinite alternate;
}

.fav-sparkle.s-left {
  left: -14px;
  top: -4px;
}

.fav-sparkle.s-right {
  right: -14px;
  bottom: 0px;
  animation-delay: 1s;
}

@keyframes sparkle-glow {
  0% { transform: scale(0.8) rotate(0deg); opacity: 0.7; }
  100% { transform: scale(1.2) rotate(15deg); opacity: 1; }
}

.fav-title {
  font-size: 27px;
  font-weight: 900;
  color: #2c1e1a;
  margin: 0;
  font-family: var(--font-head);
  letter-spacing: -0.02em;
}

.fav-title .highlight {
  color: var(--red, #8c1014);
}

.fav-subtitle {
  font-size: 15px;
  color: #8a7a73;
  margin-top: 5px;
  font-weight: 600;
}

.fav-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 8px 20px 24px;
  scrollbar-width: none; /* Firefox */
}

.fav-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.fav-card {
  width: 210px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(44, 30, 26, 0.04);
  border: 1.5px solid rgba(234, 215, 179, 0.35);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fav-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(140,16,20,0.07);
  border-color: rgba(140, 16, 20, 0.15);
}

.fav-card-img-wrap {
  width: 100%;
  height: 135px;
  overflow: hidden;
  position: relative;
  background: #eaeaea;
}

.fav-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.fav-card-info {
  padding: 14px 16px;
  text-align: left;
}

.fav-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #2c1e1a;
  margin: 0;
  font-family: var(--font-head);
}

.fav-card-desc {
  font-size: 12px;
  color: #8a7a73;
  margin: 4px 0 0;
  line-height: 1.4;
  font-weight: 500;
}
