:root {
  --wine: #350707;       /* fondo del menú */
  --wine-2: #4a0c0c;
  --berry: #7a1016;      /* círculos de precio */
  --strawberry: #e8354a;
  --pink: #ff7a93;
  --cream: #f6efe9;
  --cream-2: #ece3da;
  --ink: #2a0606;
  --muted: #7d5c5c;
  --wa: #25d366;
  --maps: #4285f4;
  --radius: 22px;
  --shadow: 0 18px 40px -18px rgba(53, 7, 7, .55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--wine);
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3 { line-height: 1.15; }

/* Fresitas cayendo de fondo */
.berries { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.berries i {
  position: absolute; top: -40px; font-style: normal; opacity: .22;
  animation: fall linear infinite;
}
@keyframes fall {
  to { transform: translateY(110vh) rotate(360deg); }
}

/* Barra superior */
.top {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  padding: .55rem 16px; padding-top: max(.55rem, env(safe-area-inset-top));
  background: rgba(53, 7, 7, .88); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.top__left { display: flex; align-items: center; gap: .5rem; min-width: 0; }
.top__logo img { height: 40px; width: auto; }
.admin-btn {
  display: inline-flex; align-items: center; gap: .3rem; flex: none;
  padding: .4rem .65rem; border-radius: 999px; text-decoration: none;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: .72rem; font-weight: 600;
}
.admin-btn:active { transform: scale(.95); }
@media (max-width: 360px) { .admin-btn span { display: none; } .status { font-size: .68rem; } }
.status { font-size: .75rem; font-weight: 600; padding: .25rem .7rem; border-radius: 999px; background: rgba(255,255,255,.1); white-space: nowrap; }
.status.is-open { background: rgba(37, 211, 102, .18); color: #7ef0a8; }
.status.is-open::before { content: "●"; margin-right: .35rem; animation: blink 1.6s infinite; }
@keyframes blink { 50% { opacity: .3; } }
.cart-btn {
  position: relative; border: 0; width: 46px; height: 46px; border-radius: 50%;
  background: var(--strawberry); color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 20px -8px var(--strawberry);
}
.cart-btn b {
  position: absolute; top: -4px; right: -4px; min-width: 22px; height: 22px; padding: 0 5px;
  border-radius: 999px; background: #fff; color: var(--wine); font-size: .75rem; display: grid; place-items: center;
}
.cart-btn.bump { animation: bump .5s; }
@keyframes bump { 30% { transform: scale(1.25) rotate(-8deg); } 60% { transform: scale(.92); } }

main, .foot { position: relative; z-index: 1; }

/* Botones */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.4rem; border-radius: 999px; border: 0;
  font-weight: 700; font-size: .95rem; text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.btn:active { transform: scale(.96); }
.btn--pink { background: linear-gradient(135deg, var(--pink), var(--strawberry)); color: #fff; box-shadow: 0 12px 26px -10px var(--strawberry); }
.btn--ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--maps { background: #fff; color: var(--ink); border: 2px solid var(--maps); }
.btn--maps svg { color: var(--maps); }
.btn--grow { flex: 1; }
.btn:disabled { opacity: .55; }

/* Portada */
.hero {
  min-height: calc(100svh - 62px);
  display: grid; align-content: center; gap: 1rem;
  padding: 2rem 16px 3rem; text-align: center;
  background: radial-gradient(circle at 50% 22%, #5a1010 0%, var(--wine) 45%);
}
.hero__logo { width: min(260px, 70vw); margin: 0 auto .6rem; animation: pop .9s cubic-bezier(.2,1.4,.4,1) both; }
.hero h1 { font-size: clamp(2rem, 9vw, 3.4rem); font-weight: 800; animation: rise .8s .15s both; }
.hero h1 span { display: block; font-family: "Great Vibes", cursive; font-weight: 400; color: var(--pink); font-size: 1.25em; }
.hero p { color: #f0d9d9; max-width: 30ch; margin: .6rem auto 0; animation: rise .8s .3s both; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-top: 1.4rem; animation: rise .8s .45s both; }
.hero__cups { position: relative; height: 250px; margin-top: 1rem; }
.cup {
  position: absolute; bottom: 0; width: 132px; border-radius: 18px;
  -webkit-mask-image: radial-gradient(ellipse 60% 66% at 50% 50%, #000 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 60% 66% at 50% 50%, #000 55%, transparent 100%);
}
.cup--1 { left: 50%; margin-left: -66px; z-index: 2; width: 150px; margin-left: -75px; animation: float 3.4s ease-in-out infinite; }
.cup--2 { left: calc(50% - 175px); bottom: 20px; transform: rotate(-10deg); animation: float2 4s ease-in-out .4s infinite; }
.cup--3 { left: calc(50% + 43px); bottom: 20px; transform: rotate(10deg); animation: float3 3.8s ease-in-out .8s infinite; }
@keyframes float { 50% { transform: translateY(-16px); } }
@keyframes float2 { 0%, 100% { transform: rotate(-10deg); } 50% { transform: translateY(-12px) rotate(-5deg); } }
@keyframes float3 { 0%, 100% { transform: rotate(10deg); } 50% { transform: translateY(-12px) rotate(5deg); } }
@keyframes pop { from { opacity: 0; transform: scale(.6); } }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } }

/* Gourmet */
.gourmet { padding: 3rem 0 2.5rem; text-align: center; }
.gourmet__title { font-family: "Poppins"; font-weight: 800; font-size: clamp(2.2rem, 11vw, 3.6rem); letter-spacing: .06em; }
.gourmet__title em { display: block; margin-top: -.5em; font-family: "Great Vibes", cursive; font-style: normal; font-weight: 400; letter-spacing: 0; color: var(--pink); font-size: .8em; }
.gourmet__sub { color: #e9caca; font-size: .9rem; margin-top: .3rem; }
.marquee { overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; touch-action: pan-x pan-y; margin-top: 1.4rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee::-webkit-scrollbar { display: none; }
.marquee__track { display: flex; gap: 14px; width: max-content; padding: 10px 16px 18px; }
@keyframes scroll { to { transform: translateX(-50%); } }
.g-card {
  flex: none; width: 150px; border: 0; background: var(--wine); color: #fff; border-radius: 20px; padding: 0 0 .8rem;
  transition: transform .25s;
}
.g-card:nth-child(odd) img { animation: bob 3s ease-in-out infinite; }
.g-card:nth-child(even) img { animation: bob 3s ease-in-out 1.5s infinite; }
@keyframes bob { 50% { transform: translateY(-8px) rotate(-2deg); } }
.g-card img { width: 150px; height: 220px; object-fit: cover; border-radius: 18px; }
.g-card span { display: inline-block; margin-top: .3rem; font-size: .8rem; font-weight: 600; background: var(--berry); padding: .25rem .8rem; border-radius: 999px; }
.g-card:active { transform: scale(.95); }

/* Menú */
.menu { background: var(--cream); color: var(--ink); border-radius: 32px 32px 0 0; padding: 2.4rem 16px 3rem; }
.menu__head { text-align: center; }
.menu__head h2 { font-size: 2rem; font-weight: 800; color: var(--wine); }
.menu__head p { color: var(--muted); }
.chips {
  position: sticky; top: 62px; z-index: 20; display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none;
  margin: 1.2rem -16px 1rem; padding: .6rem 16px; background: var(--cream);
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none; border: 2px solid var(--wine); background: transparent; color: var(--wine);
  padding: .45rem 1rem; border-radius: 999px; font-weight: 600; font-size: .88rem; transition: .2s;
}
.chip.is-active { background: var(--wine); color: #fff; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.card {
  position: relative; display: flex; flex-direction: column; background: #fff; border-radius: var(--radius);
  padding: .8rem .8rem .9rem; box-shadow: var(--shadow); overflow: hidden;
  animation: cardIn .5s both;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(20px) scale(.96); } }
.card__img { height: 120px; display: grid; place-items: center; margin-bottom: .5rem; }
.card__img img { max-height: 120px; width: auto; object-fit: contain; filter: drop-shadow(0 10px 12px rgba(53,7,7,.25)); animation: bob 3.2s ease-in-out infinite; }
.card:nth-child(3n+2) .card__img img { animation-delay: .8s; }
.card:nth-child(3n) .card__img img { animation-delay: 1.6s; }
.card__img--photo img { height: 120px; width: 100%; object-fit: cover; border-radius: 14px; filter: none; }
.card h3 { font-size: .98rem; font-weight: 700; color: var(--wine); }
.card p { font-size: .76rem; color: var(--muted); margin-top: .15rem; flex: 1; }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: .4rem; margin-top: .6rem; }
.price { font-weight: 800; color: var(--berry); font-size: 1rem; white-space: nowrap; }
.price small { font-weight: 500; font-size: .7rem; color: var(--muted); }
.add {
  border: 0; width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: var(--strawberry); color: #fff; font-size: 1.4rem; line-height: 1; display: grid; place-items: center;
  box-shadow: 0 8px 16px -8px var(--strawberry); transition: transform .2s;
}
.add:active { transform: scale(.85) rotate(90deg); }
.tag { position: absolute; top: .6rem; left: .6rem; background: var(--pink); color: #fff; font-size: .65rem; font-weight: 700; padding: .15rem .55rem; border-radius: 999px; }
.menu__note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 1.6rem; }
.menu__note a { color: var(--berry); font-weight: 600; }

/* Pasos */
.steps { background: var(--cream); color: var(--ink); padding: 0 16px 3rem; }
.steps h2, .visit h2 { font-size: 1.8rem; font-weight: 800; text-align: center; margin-bottom: 1.2rem; }
.steps h2 { color: var(--wine); }
.steps ol { list-style: none; display: grid; gap: .8rem; max-width: 560px; margin: 0 auto; }
.steps li { display: flex; gap: .9rem; background: #fff; border-radius: 18px; padding: 1rem; box-shadow: var(--shadow); }
.steps li span { flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--wine); color: #fff; font-weight: 800; display: grid; place-items: center; }
.steps b { color: var(--wine); }
.steps p { font-size: .85rem; color: var(--muted); }

/* Visítanos */
.visit { padding: 3rem 16px; }
.visit__card { max-width: 560px; margin: 0 auto; background: var(--wine-2); border-radius: var(--radius); padding: 1.2rem; display: grid; gap: 1rem; border: 1px solid rgba(255,255,255,.08); }
.visit__row { display: flex; gap: .8rem; align-items: flex-start; }
.visit__row svg { flex: none; color: var(--pink); margin-top: 2px; }
.visit__row p { color: #efd6d6; font-size: .9rem; }
.map { border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; background: #2a0505; }
.map iframe { width: 100%; height: 100%; border: 0; }
.visit__btns { display: grid; gap: .6rem; }

/* Pie */
.foot { text-align: center; padding: 2rem 16px 7rem; border-top: 1px solid rgba(255,255,255,.08); }
.foot img { width: 150px; margin: 0 auto .8rem; }
.foot p { font-size: .9rem; }
.foot a { color: var(--pink); font-weight: 600; }
.foot small { display: block; color: #c9a9a9; margin-top: .4rem; }

/* Botones flotantes */
.fab {
  position: fixed; right: 16px; z-index: 30; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; box-shadow: 0 10px 26px -8px rgba(0,0,0,.5);
}
.fab--wa { bottom: max(16px, env(safe-area-inset-bottom)); background: var(--wa); animation: pulse 2.2s infinite; }
.fab--maps { bottom: calc(max(16px, env(safe-area-inset-bottom)) + 70px); background: #fff; color: var(--maps); width: 50px; height: 50px; right: 20px; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* Hojas (personalizar y carrito) */
.sheet { position: fixed; inset: 0; z-index: 60; }
.sheet[hidden] { display: none; }
.sheet__backdrop { position: absolute; inset: 0; background: rgba(20, 2, 2, .6); animation: fade .25s; }
.sheet__panel {
  position: absolute; left: 0; right: 0; bottom: 0; max-height: 92svh; overflow-y: auto; overscroll-behavior: contain;
  background: var(--cream); color: var(--ink); border-radius: 26px 26px 0 0;
  padding: 1.2rem 16px calc(1rem + env(safe-area-inset-bottom)); animation: up .35s cubic-bezier(.2,.9,.3,1);
}
@media (min-width: 640px) { .sheet__panel { left: 50%; width: 560px; margin-left: -280px; } }
@keyframes up { from { transform: translateY(100%); } }
@keyframes fade { from { opacity: 0; } }
.sheet__x { position: absolute; top: .7rem; right: .9rem; width: 36px; height: 36px; border: 0; border-radius: 50%; background: #fff; font-size: 1.5rem; line-height: 1; color: var(--wine); z-index: 2; }
.sheet__hero { height: 150px; display: grid; place-items: center; margin-bottom: .4rem; }
.sheet__hero img { max-height: 150px; width: auto; animation: float 3s ease-in-out infinite; filter: drop-shadow(0 12px 14px rgba(53,7,7,.3)); }
.sheet__hero.is-photo img { border-radius: 18px; }
.sheet h3 { font-size: 1.4rem; font-weight: 800; color: var(--wine); padding-right: 2.5rem; }
.sheet__desc { color: var(--muted); font-size: .88rem; }

.group { margin-top: 1.1rem; border: 0; padding: 0; min-width: 0; }
.group__head { display: flex; justify-content: space-between; align-items: baseline; gap: .5rem; margin-bottom: .5rem; }
.group__head b { color: var(--wine); }
.group__head small { color: var(--muted); font-size: .75rem; text-align: right; }
.opts { display: flex; flex-wrap: wrap; gap: .45rem; }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt span {
  display: inline-flex; align-items: center; gap: .3rem; padding: .45rem .8rem; border-radius: 999px;
  background: #fff; border: 2px solid var(--cream-2); font-size: .84rem; font-weight: 500; transition: .15s;
}
.opt span em { font-style: normal; font-size: .72rem; color: var(--muted); }
.opt input:checked + span { background: var(--wine); color: #fff; border-color: var(--wine); transform: scale(1.04); }
.opt input:checked + span em { color: #ffd2da; }
.opt input:focus-visible + span { outline: 3px solid var(--pink); outline-offset: 2px; }
.notes { width: 100%; margin-top: .4rem; border: 2px solid var(--cream-2); border-radius: 14px; padding: .6rem .8rem; font: inherit; font-size: 16px; resize: vertical; }

.sheet__bar { position: sticky; bottom: calc(-1rem - env(safe-area-inset-bottom)); display: flex; gap: .7rem; align-items: center; margin: 1.2rem -16px 0; padding: .8rem 16px; background: var(--cream); border-top: 1px solid var(--cream-2); }
.qty { display: flex; align-items: center; gap: .5rem; background: #fff; border-radius: 999px; padding: .25rem; }
.qty button { width: 36px; height: 36px; border: 0; border-radius: 50%; background: var(--cream); color: var(--wine); font-size: 1.2rem; font-weight: 700; }
.qty b { min-width: 1.4rem; text-align: center; }

/* Carrito */
.line { display: flex; gap: .7rem; padding: .8rem 0; border-bottom: 1px solid var(--cream-2); }
.line img { width: 56px; height: 56px; object-fit: contain; flex: none; border-radius: 12px; background: #fff; }
.line div { flex: 1; min-width: 0; }
.line b { color: var(--wine); font-size: .95rem; }
.line p { font-size: .76rem; color: var(--muted); }
.line__side { display: flex; flex-direction: column; align-items: flex-end; gap: .3rem; }
.line__side button { border: 0; background: none; color: var(--strawberry); font-size: .78rem; font-weight: 600; }
.empty { text-align: center; color: var(--muted); padding: 1.5rem 0; }
.order { display: grid; gap: .8rem; margin-top: 1rem; }
.order label { display: grid; gap: .3rem; font-size: .85rem; font-weight: 600; color: var(--wine); }
.order label[hidden] { display: none; }
.order input, .order textarea, .order select { font: inherit; font-size: 16px; font-weight: 400; border: 2px solid var(--cream-2); border-radius: 14px; padding: .65rem .8rem; background: #fff; color: var(--ink); width: 100%; }
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; }
.seg label { display: block; }
.seg input { position: absolute; opacity: 0; }
.seg span { display: block; text-align: center; padding: .6rem; border-radius: 14px; border: 2px solid var(--cream-2); background: #fff; font-weight: 600; }
.seg input:checked + span { background: var(--wine); color: #fff; border-color: var(--wine); }
.order__total { font-size: 1.1rem; text-align: right; }
.order__total b { color: var(--berry); font-size: 1.4rem; }
.order__hint { font-size: .78rem; color: var(--muted); text-align: right; margin-top: -.6rem; }
.order__hint:empty { display: none; }

.toast {
  position: fixed; left: 50%; bottom: 96px; z-index: 80; transform: translate(-50%, 20px); opacity: 0;
  background: #fff; color: var(--wine); font-weight: 600; padding: .7rem 1.2rem; border-radius: 999px;
  box-shadow: var(--shadow); transition: .3s; pointer-events: none; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.fly { position: fixed; z-index: 90; width: 54px; height: 54px; object-fit: contain; pointer-events: none; transition: transform .7s cubic-bezier(.5,-.3,.7,1), opacity .7s; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s, transform .7s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 720px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 960px; margin: 0 auto; }
  .hero__cups { height: 300px; }
}
@media (min-width: 1000px) {
  .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .chips { justify-content: center; }
}

/* Con "reducir movimiento" solo se quitan las fresitas que caen; los vasos siguen flotando */
@media (prefers-reduced-motion: reduce) {
  .berries { display: none; }
}

/* Productos sin foto: emoji grande */
.emoji { font-size: 4.2rem; line-height: 1; animation: bob 3.2s ease-in-out infinite; filter: drop-shadow(0 10px 10px rgba(53,7,7,.25)); }
.sheet__hero .emoji { font-size: 6rem; }
.line__emoji { width: 56px; height: 56px; flex: none; display: grid; place-items: center; font-size: 2rem; background: #fff; border-radius: 12px; }

/* Pago aprobado */
.paid { text-align: center; display: grid; gap: .8rem; padding-top: 2rem; }
.paid h3 { padding: 0; }
.paid p { color: var(--muted); }
.paid__icon { font-size: 4rem; animation: pop .7s cubic-bezier(.2,1.4,.4,1) both, float 3s ease-in-out .7s infinite; }

/* Mapa de entrega (pin fijo al centro, se mueve el mapa) */
.order__dir { display: grid; gap: .5rem; }
.order__dir[hidden] { display: none; }
.order__lbl { color: var(--wine); font-size: .85rem; }
.order label small { font-weight: 400; color: var(--muted); }
.pick { position: relative; height: 230px; border-radius: 18px; overflow: hidden; border: 2px solid var(--cream-2); background: #eee; }
.pick__map { position: absolute; inset: 0; }
.pick__pin {
  position: absolute; left: 50%; top: 50%; z-index: 500; font-size: 2.4rem; line-height: 1;
  transform: translate(-50%, -100%); pointer-events: none; filter: drop-shadow(0 6px 4px rgba(0,0,0,.35)); transition: transform .2s;
}
.pick.is-moving .pick__pin { transform: translate(-50%, -125%); }
.pick__me {
  position: absolute; right: 10px; bottom: 10px; z-index: 500; border: 0; border-radius: 999px;
  background: #fff; color: var(--wine); font-weight: 700; font-size: .8rem; padding: .5rem .8rem; box-shadow: 0 6px 16px -6px rgba(0,0,0,.4);
}
.pick__tip { color: var(--muted); font-size: .75rem; margin-top: -.2rem; }

/* Seguimiento */
.track { text-align: center; display: grid; gap: .7rem; padding-top: 1.8rem; }
.track h3 { padding: 0; }
.track__icon { font-size: 3.6rem; animation: pop .6s cubic-bezier(.2,1.4,.4,1) both, float 3s ease-in-out .6s infinite; }
.track__sub { color: var(--muted); }
.track__pay { font-weight: 600; color: var(--wine); background: #fff; border-radius: 12px; padding: .5rem; }
.track__steps { list-style: none; text-align: left; display: grid; gap: 0; margin: .4rem 0; }
.track__steps li { position: relative; display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: .6rem; padding: .45rem 0; color: #b9a5a5; }
.track__steps li::before { content: ""; position: absolute; left: 19px; top: -50%; height: 100%; width: 2px; background: var(--cream-2); z-index: 0; }
.track__steps li:first-child::before { display: none; }
.track__steps li span { position: relative; z-index: 1; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 2px solid var(--cream-2); font-size: 1.1rem; filter: grayscale(1); opacity: .6; }
.track__steps li small { font-size: .75rem; }
.track__steps li.done { color: var(--ink); }
.track__steps li.done::before, .track__steps li.now::before { background: var(--strawberry); }
.track__steps li.done span { filter: none; opacity: 1; border-color: var(--strawberry); }
.track__steps li.now { color: var(--wine); }
.track__steps li.now b { font-weight: 800; }
.track__steps li.now span { filter: none; opacity: 1; background: var(--strawberry); border-color: var(--strawberry); animation: ring 1.6s infinite; }
@keyframes ring { 0% { box-shadow: 0 0 0 0 rgba(232,53,74,.5); } 70% { box-shadow: 0 0 0 12px rgba(232,53,74,0); } 100% { box-shadow: 0 0 0 0 rgba(232,53,74,0); } }
.track__detail { text-align: left; background: #fff; border-radius: 14px; padding: .6rem .9rem; }
.track__detail summary { font-weight: 600; color: var(--wine); cursor: pointer; }
.track__detail p { font-size: .85rem; margin-top: .5rem; }
.track__detail small { color: var(--muted); }
.track__total { text-align: right; border-top: 1px solid var(--cream-2); padding-top: .5rem; }
.track__folio { color: var(--muted); font-size: .75rem; }

.my-order {
  position: fixed; left: 16px; bottom: max(16px, env(safe-area-inset-bottom)); z-index: 30; border: 0; border-radius: 999px;
  background: #fff; color: var(--wine); font-weight: 700; padding: .8rem 1.1rem; box-shadow: 0 10px 26px -8px rgba(0,0,0,.5);
  animation: pop .5s both, float 3s ease-in-out .5s infinite;
}
.my-order[hidden] { display: none; }

/* Permiso de ubicación */
.geo { text-align: center; display: grid; gap: .8rem; padding-top: 1.8rem; }
.geo h3 { padding: 0; }
.geo p { color: var(--muted); }
.geo__icon { font-size: 3.4rem; animation: pop .6s cubic-bezier(.2,1.4,.4,1) both, float 2.6s ease-in-out .6s infinite; }
.btn--ghost-dark { background: #fff; color: var(--wine); border: 2px solid var(--cream-2); }
.pick__ok { color: #15803d; font-weight: 600; }

.live { color: #15803d; font-weight: 700; animation: blink 1.6s infinite; }
