:root {
  --navy: #0a4563;
  --navy-dark: #073247;
  --teal: #20a9ae;
  --teal-light: #64d6d1;
  --aqua: #dff8f5;
  --yellow: #f7c72a;
  --yellow-light: #fff0a5;
  --coral: #f18467;
  --cream: #fffaf0;
  --white: #ffffff;
  --ink: #17323f;
  --muted: #66808c;
  --line: #dce9ec;
  --shadow: 0 18px 45px rgba(7, 50, 71, .12);
  --shadow-soft: 0 10px 28px rgba(7, 50, 71, .09);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }

/* Preserve the native HTML hidden state even on elements using display:grid/flex. */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body.locked { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
img, svg { display: block; max-width: 100%; }

.container { width: min(var(--container), calc(100% - 36px)); margin-inline: auto; }
.top-strip {
  background: var(--navy-dark);
  color: white;
  text-align: center;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
  padding: 8px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10,69,99,.08);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-mark { width: 54px; height: 54px; flex: 0 0 auto; filter: drop-shadow(0 7px 8px rgba(10,69,99,.13)); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong,
.footer-brand strong { font-family: "Baloo 2", sans-serif; font-size: 1.55rem; color: var(--navy); letter-spacing: .045em; }
.brand-copy small { color: var(--teal); font-weight: 900; font-size: .78rem; margin-top: 3px; }
.desktop-nav { display: flex; gap: 28px; font-weight: 800; color: var(--navy); }
.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 3px; border-radius: 3px; background: var(--yellow); transition: .22s; }
.desktop-nav a:hover::after { right: 0; }
.cart-trigger {
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 8px 10px 8px 17px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(10,69,99,.2);
}
.cart-trigger:hover { transform: translateY(-1px); }
.cart-icon { font-size: 1.12rem; }
.cart-count { min-width: 28px; height: 28px; display: grid; place-items: center; background: var(--yellow); color: var(--navy-dark); border-radius: 50%; font-size: .82rem; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.45) 0 12%, transparent 12.5%),
    linear-gradient(130deg, #1eb1b4 0%, #54d3ce 55%, #8ce4cf 100%);
  min-height: 650px;
}
.hero::before { content: ""; position: absolute; inset: auto 0 0; height: 125px; background: var(--cream); clip-path: ellipse(65% 46% at 50% 100%); }
.hero-grid { min-height: 650px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 60px; padding: 70px 0 120px; position: relative; z-index: 2; }
.hero-copy { color: white; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 900; }
.eyebrow::before { content: ""; width: 30px; height: 3px; border-radius: 4px; background: var(--yellow); }
.eyebrow.dark { color: var(--teal); }
.hero h1 { font-family: "Baloo 2", sans-serif; font-size: clamp(3.25rem, 6.7vw, 6.2rem); line-height: .89; letter-spacing: -.035em; margin: 18px 0 22px; text-shadow: 0 7px 0 rgba(10,69,99,.08); }
.hero h1 em { font-style: normal; color: var(--yellow-light); }
.hero-copy > p { max-width: 610px; font-size: 1.14rem; font-weight: 700; opacity: .96; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn { min-height: 50px; border: 0; border-radius: 999px; padding: 13px 24px; display: inline-flex; align-items: center; justify-content: center; font-weight: 900; transition: transform .18s, box-shadow .18s, background .18s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: var(--navy-dark); box-shadow: 0 11px 24px rgba(113,82,0,.18); }
.btn-secondary { background: rgba(255,255,255,.18); color: white; border: 2px solid rgba(255,255,255,.7); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 28px; font-size: .88rem; font-weight: 900; }

.hero-visual { position: relative; height: 500px; display: grid; place-items: center; }
.sun-disc { position: absolute; width: 375px; height: 375px; border-radius: 50%; background: rgba(255,242,163,.6); box-shadow: 0 0 0 25px rgba(255,255,255,.12), 0 0 0 50px rgba(255,255,255,.07); }
.hero-cup { position: relative; width: 245px; height: 390px; z-index: 2; transform: rotate(4deg); filter: drop-shadow(0 32px 24px rgba(7,50,71,.23)); }
.cup-body { position: absolute; left: 30px; right: 30px; bottom: 20px; height: 235px; background: linear-gradient(155deg, #fff 0%, #eafcfa 45%, #bcebe7 100%); clip-path: polygon(6% 0,94% 0,82% 100%,18% 100%); border: 6px solid var(--navy); border-top: 0; display: grid; place-items: center; }
.cup-body::before { content: ""; position: absolute; inset: 45px 20px 60px; border-radius: 55%; background: linear-gradient(180deg, rgba(32,169,174,.9), rgba(10,117,151,.95)); opacity: .92; }
.cup-body span { position: relative; z-index: 2; color: white; font-family: "Baloo 2"; font-size: 1.65rem; font-weight: 800; letter-spacing: .08em; transform: rotate(-4deg); }
.cup-lid { position: absolute; left: 16px; right: 16px; bottom: 240px; height: 32px; background: white; border: 6px solid var(--navy); border-radius: 50%; z-index: 4; }
.ice { position: absolute; border-radius: 50% 50% 45% 45%; border: 6px solid var(--navy); background: linear-gradient(145deg, #ffe67c 0 35%, #f18467 36% 66%, #20a9ae 67%); z-index: 3; }
.ice-one { width: 170px; height: 145px; left: 39px; top: 45px; transform: rotate(-5deg); }
.ice-two { width: 125px; height: 112px; left: 10px; top: 104px; background: linear-gradient(145deg, #f18467, #ffb66b 55%, #f7d538); }
.ice-three { width: 126px; height: 112px; right: 5px; top: 110px; background: linear-gradient(145deg, #20a9ae, #71ded4 55%, #d9fbf5); }
.straw { position: absolute; top: -25px; left: 142px; width: 18px; height: 150px; border: 5px solid var(--navy); border-radius: 16px; background: repeating-linear-gradient(-35deg, #fff 0 14px, #f18467 14px 28px); transform: rotate(13deg); z-index: 1; }
.cherry { position: absolute; width: 37px; height: 37px; border-radius: 50%; background: #e85252; border: 5px solid var(--navy); top: 33px; left: 175px; z-index: 5; }
.cherry::before { content: ""; position: absolute; width: 35px; height: 30px; border: 5px solid var(--navy); border-left-color: transparent; border-bottom-color: transparent; border-radius: 50%; left: -25px; top: -28px; transform: rotate(-25deg); }
.float-tag { position: absolute; z-index: 5; padding: 9px 15px; border-radius: 999px; background: white; color: var(--navy); font-family: "Baloo 2"; font-weight: 800; box-shadow: var(--shadow-soft); transform: rotate(-4deg); }
.tag-one { left: 2%; top: 30%; }
.tag-two { right: 0; top: 21%; transform: rotate(6deg); }
.tag-three { right: 8%; bottom: 17%; transform: rotate(-5deg); }
.palm { position: absolute; width: 160px; height: 230px; opacity: .85; }
.palm i { position: absolute; width: 18px; height: 190px; border-radius: 50%; background: #147f75; bottom: 0; left: 70px; transform: rotate(10deg); }
.palm b { position: absolute; width: 95px; height: 28px; border-radius: 100% 0 100% 0; background: #0f8a78; left: 70px; top: 28px; transform-origin: left center; }
.palm b:nth-of-type(1) { transform: rotate(-65deg); }
.palm b:nth-of-type(2) { transform: rotate(-25deg); }
.palm b:nth-of-type(3) { transform: rotate(20deg); }
.palm b:nth-of-type(4) { transform: rotate(62deg); }
.palm-left { left: -45px; bottom: 12px; transform: rotate(-9deg); }
.palm-right { right: -52px; bottom: 24px; transform: scaleX(-1) rotate(-7deg); }
.hero-bubbles span { position: absolute; border-radius: 50%; border: 2px solid rgba(255,255,255,.32); }
.hero-bubbles span:nth-child(1){ width: 35px;height:35px;left:4%;top:20%; }
.hero-bubbles span:nth-child(2){ width: 72px;height:72px;left:46%;top:10%; }
.hero-bubbles span:nth-child(3){ width: 25px;height:25px;right:7%;top:13%; }
.hero-bubbles span:nth-child(4){ width: 42px;height:42px;right:42%;bottom:18%; }
.hero-bubbles span:nth-child(5){ width: 95px;height:95px;right:2%;bottom:6%; }

.menu-section { padding: 90px 0 110px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 34px; }
.section-heading h2 { margin: 7px 0 0; font-family: "Baloo 2"; font-size: clamp(2.3rem, 4vw, 3.7rem); line-height: 1; color: var(--navy); }
.section-heading > p { max-width: 530px; margin: 0; color: var(--muted); font-weight: 700; }
.section-heading.centered { display: block; text-align: center; }
.menu-toolbar { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 14px; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-soft); }
.search-box { flex: 0 1 320px; min-width: 220px; background: #f6fbfb; border: 1px solid var(--line); border-radius: 999px; min-height: 48px; padding: 0 17px; display: flex; align-items: center; gap: 9px; }
.search-box span { color: var(--teal); font-weight: 900; font-size: 1.45rem; line-height: 1; }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font-weight: 700; }
.category-tabs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: thin; padding: 2px; }
.category-tab { border: 0; border-radius: 999px; background: #edf7f7; color: var(--navy); padding: 11px 17px; min-width: max-content; font-weight: 900; }
.category-tab.active { background: var(--navy); color: white; }
.results-row { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); }
.text-button { border: 0; background: transparent; color: var(--teal); font-weight: 900; padding: 8px 0; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.product-card { background: white; border-radius: var(--radius-lg); border: 1px solid rgba(10,69,99,.08); overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 10px 26px rgba(10,69,99,.075); transition: transform .2s, box-shadow .2s; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-art { position: relative; min-height: 185px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, var(--art1), var(--art2)); }
.product-art::before, .product-art::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.24); }
.product-art::before { width: 145px; height: 145px; right: -32px; top: -35px; }
.product-art::after { width: 84px; height: 84px; left: -20px; bottom: -18px; }
.product-emoji { position: relative; z-index: 2; font-size: 4.7rem; filter: drop-shadow(0 12px 11px rgba(7,50,71,.18)); transform: rotate(-4deg); }
.product-photo { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .25s ease; }
.product-photo-contain { object-fit: contain; object-position: center; padding: 8px; background: #ffd5e4; }
.product-card:hover .product-photo { transform: scale(1.035); }
.product-badge { position: absolute; top: 13px; left: 13px; z-index: 3; color: var(--navy-dark); background: rgba(255,255,255,.91); border-radius: 999px; padding: 6px 10px; font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.product-body { padding: 17px 17px 16px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { margin: 0; font-family: "Baloo 2"; color: var(--navy); line-height: 1.08; font-size: 1.35rem; }
.product-body p { margin: 8px 0 16px; color: var(--muted); font-size: .87rem; line-height: 1.4; flex: 1; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { color: var(--teal); font-weight: 900; font-size: 1.08rem; }
.add-button { border: 0; border-radius: 999px; background: var(--yellow); color: var(--navy-dark); padding: 9px 14px; font-weight: 900; display: inline-flex; align-items: center; gap: 6px; }
.add-button:hover { background: #ffdb4f; }
.empty-state { text-align: center; padding: 70px 20px; background: white; border: 1px solid var(--line); border-radius: var(--radius-xl); }
.empty-state > div { font-size: 4rem; }
.empty-state h3 { font-family: "Baloo 2"; color: var(--navy); font-size: 2rem; margin: 10px 0 0; }
.empty-state p { color: var(--muted); }

.how-section { padding: 100px 0; background: #ecf9f7; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.step-card { position: relative; background: white; border-radius: var(--radius-lg); padding: 34px 28px; text-align: center; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.step-card > span { position: absolute; top: 14px; right: 16px; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--yellow); color: var(--navy); font-weight: 900; }
.step-icon { font-size: 3.1rem; }
.step-card h3 { font-family: "Baloo 2"; color: var(--navy); font-size: 1.6rem; margin: 12px 0 5px; }
.step-card p { color: var(--muted); margin: 0; font-weight: 600; }

.contact-section { padding: 90px 0; }
.contact-card { background: linear-gradient(125deg, var(--navy-dark), var(--navy) 52%, #137f91); color: white; border-radius: var(--radius-xl); padding: 50px 56px; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.contact-card::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.07); right: -80px; top: -110px; }
.contact-card h2 { font-family: "Baloo 2"; font-size: clamp(2.3rem,4vw,3.5rem); line-height: 1; margin: 9px 0 11px; }
.contact-card p { margin: 0; color: rgba(255,255,255,.78); max-width: 620px; font-weight: 700; }
.contact-number { position: relative; z-index: 2; background: var(--yellow); color: var(--navy-dark); border-radius: var(--radius-lg); min-width: 275px; padding: 20px 25px; display: grid; box-shadow: 0 15px 35px rgba(0,0,0,.18); }
.contact-number span { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.contact-number strong { font-size: 1.45rem; }

.site-footer { background: var(--navy-dark); color: white; padding: 34px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.footer-brand { display: grid; line-height: 1; }
.footer-brand strong { color: white; }
.footer-brand span { color: var(--teal-light); font-size: .78rem; font-weight: 900; }
.footer-inner p { color: rgba(255,255,255,.65); font-size: .88rem; }
.footer-inner > a { color: var(--yellow); font-weight: 900; }

.backdrop { position: fixed; inset: 0; background: rgba(3,25,36,.62); backdrop-filter: blur(5px); z-index: 90; }
.product-modal { position: fixed; z-index: 100; left: 50%; top: 50%; transform: translate(-50%,-50%); width: min(900px, calc(100% - 28px)); max-height: min(90vh, 780px); overflow: auto; background: white; border-radius: var(--radius-xl); box-shadow: 0 30px 90px rgba(0,0,0,.32); display: grid; grid-template-columns: .85fr 1.15fr; }
.modal-close { position: absolute; right: 16px; top: 14px; z-index: 5; width: 40px; height: 40px; border-radius: 50%; border: 0; background: rgba(255,255,255,.92); color: var(--navy); font-size: 1.7rem; line-height: 1; box-shadow: 0 5px 15px rgba(0,0,0,.12); }
.modal-product-visual { min-height: 100%; display: grid; place-items: center; background: linear-gradient(145deg, var(--art1), var(--art2)); position: relative; overflow: hidden; }
.modal-product-visual::before, .modal-product-visual::after { content:""; position:absolute; border-radius:50%; background:rgba(255,255,255,.22); }
.modal-product-visual::before { width:300px;height:300px;right:-120px;top:-80px; }
.modal-product-visual::after { width:170px;height:170px;left:-70px;bottom:-40px; }
.modal-product-visual span { position: relative; z-index:2; font-size: 8rem; filter: drop-shadow(0 20px 20px rgba(7,50,71,.22)); }
.modal-product-photo { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; background: #f4fbfa; }
.modal-content { padding: 40px 38px 34px; }
.modal-category { color: var(--teal); text-transform: uppercase; letter-spacing: .09em; font-size: .76rem; font-weight: 900; }
.modal-content h2 { font-family: "Baloo 2"; color: var(--navy); font-size: 2.45rem; line-height: .98; margin: 7px 42px 8px 0; }
.modal-content > p { color: var(--muted); margin: 0 0 8px; }
.modal-price { color: var(--teal); font-size: 1.35rem; font-weight: 900; margin-bottom: 20px; }
.option-group { margin-top: 16px; }
.option-group > label { display: block; margin-bottom: 7px; color: var(--navy); font-size: .86rem; font-weight: 900; }
.option-group input, .option-group select, .option-group textarea,
.checkout-fields input, .checkout-fields select, .checkout-fields textarea { width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 13px; outline: none; background: #fbfefe; color: var(--ink); }
.option-group input:focus, .option-group select:focus, .option-group textarea:focus,
.checkout-fields input:focus, .checkout-fields select:focus, .checkout-fields textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(32,169,174,.13); }
.radio-options { display: grid; gap: 7px; }
.radio-choice { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 10px 12px; display: flex; justify-content: space-between; align-items: center; gap: 12px; cursor: pointer; font-weight: 800; background: #fbfefe; }
.radio-choice:has(input:checked) { border-color: var(--teal); background: #effbfa; box-shadow: 0 0 0 2px rgba(32,169,174,.1); }
.radio-choice input { width: auto; accent-color: var(--teal); }
.radio-choice b { color: var(--teal); margin-left: auto; }
.modal-footer { margin-top: 24px; display: flex; align-items: center; gap: 14px; }
.quantity-control { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: white; }
.quantity-control button { border: 0; background: transparent; color: var(--navy); font-weight: 900; }
.quantity-control output { min-width: 30px; text-align: center; font-weight: 900; }
.quantity-control.large button { width: 43px; height: 46px; font-size: 1.25rem; }
.quantity-control.large output { min-width: 32px; }
.add-modal-btn { flex: 1; }

.cart-drawer { position: fixed; z-index: 110; top: 0; right: 0; width: min(470px,100%); height: 100dvh; background: white; box-shadow: -25px 0 65px rgba(3,25,36,.24); display: flex; flex-direction: column; transform: translateX(102%); transition: transform .28s ease; }
.cart-drawer.open { transform: translateX(0); }
.cart-header { padding: 22px 22px 17px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.cart-header span { color: var(--teal); text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; font-weight: 900; }
.cart-header h2 { font-family: "Baloo 2"; color: var(--navy); margin: 0; line-height: 1; font-size: 2rem; }
.drawer-close { width: 42px; height: 42px; border-radius: 50%; border: 0; color: var(--navy); background: #edf7f7; font-size: 1.7rem; }
.cart-body { flex: 1; overflow-y: auto; padding: 18px 20px; }
.cart-items { display: grid; gap: 12px; }
.cart-item { display: grid; grid-template-columns: 62px 1fr auto; gap: 12px; padding: 12px; border-radius: var(--radius-md); border: 1px solid var(--line); background: #fbfefe; }
.cart-item-art { width: 62px; height: 62px; border-radius: 15px; display: grid; place-items: center; font-size: 2.05rem; background: linear-gradient(145deg, var(--art1), var(--art2)); }
.cart-item-info h4 { margin: 0; color: var(--navy); font-size: .98rem; line-height: 1.15; }
.cart-item-info p { margin: 4px 0; color: var(--muted); font-size: .75rem; line-height: 1.3; }
.cart-item-info strong { color: var(--teal); font-size: .9rem; }
.cart-item-actions { display: flex; flex-direction: column; align-items: end; justify-content: space-between; }
.remove-item { border: 0; background: transparent; color: #c9675a; font-weight: 900; font-size: .74rem; }
.cart-item .quantity-control button { width: 30px; height: 30px; }
.cart-empty { min-height: 430px; display: grid; place-items: center; align-content: center; text-align: center; }
.cart-empty > div { font-size: 4rem; }
.cart-empty h3 { font-family: "Baloo 2"; color: var(--navy); font-size: 1.8rem; margin: 9px 0 0; }
.cart-empty p { color: var(--muted); margin: 0 0 20px; }
.checkout-fields { border-top: 1px dashed var(--line); margin-top: 20px; padding-top: 20px; display: grid; gap: 12px; }
.checkout-fields h3 { margin: 0; color: var(--navy); font-family: "Baloo 2"; font-size: 1.45rem; }
.checkout-fields label { display: grid; gap: 5px; color: var(--navy); font-size: .8rem; font-weight: 900; }
.checkout-fields small { color: var(--muted); font-weight: 700; }
.cart-footer { border-top: 1px solid var(--line); padding: 15px 20px max(18px, env(safe-area-inset-bottom)); background: white; }
.cart-summary { display: flex; align-items: center; justify-content: space-between; color: var(--navy); font-size: 1.05rem; }
.cart-summary strong { color: var(--teal); font-size: 1.45rem; }
.cart-disclaimer { color: var(--muted); font-size: .72rem; line-height: 1.3; margin: 5px 0 12px; }
.whatsapp-button { width: 100%; min-height: 52px; border: 0; border-radius: 999px; background: #21b85b; color: white; display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 900; box-shadow: 0 10px 24px rgba(33,184,91,.22); }
.clear-cart { width: 100%; border: 0; background: transparent; color: #b85c50; font-size: .78rem; font-weight: 900; padding: 11px 0 0; }
.toast { position: fixed; z-index: 150; left: 50%; bottom: 28px; transform: translate(-50%,120px); background: var(--navy-dark); color: white; border-radius: 999px; padding: 12px 20px; font-weight: 900; box-shadow: 0 14px 35px rgba(0,0,0,.24); opacity: 0; transition: .24s; pointer-events: none; text-align: center; }
.toast.show { opacity: 1; transform: translate(-50%,0); }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
  .product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}
@media (max-width: 820px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding-top: 58px; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-visual { height: 410px; }
  .hero-cup { transform: scale(.86) rotate(4deg); }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 12px; }
  .menu-toolbar { align-items: stretch; flex-direction: column; }
  .search-box { flex: auto; width: 100%; }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .steps-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 38px 32px; align-items: stretch; flex-direction: column; }
  .contact-number { min-width: 0; width: 100%; }
  .product-modal { grid-template-columns: 1fr; max-height: 92vh; }
  .modal-product-visual { min-height: 230px; }
  .modal-product-visual span { font-size: 6rem; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 24px, var(--container)); }
  .top-strip { font-size: .73rem; }
  .header-inner { min-height: 72px; }
  .brand-mark { width: 45px; height: 45px; }
  .brand-copy strong { font-size: 1.32rem; }
  .brand-copy small { font-size: .68rem; }
  .cart-label { display: none; }
  .cart-trigger { padding-left: 12px; }
  .hero-grid { padding-bottom: 95px; }
  .hero h1 { font-size: clamp(3rem,16vw,4.4rem); }
  .hero-visual { height: 350px; margin-top: -15px; }
  .hero-cup { transform: scale(.72) rotate(4deg); }
  .sun-disc { width: 280px; height: 280px; }
  .float-tag { font-size: .78rem; }
  .palm { transform: scale(.75); }
  .palm-right { transform: scaleX(-1) scale(.75) rotate(-7deg); }
  .menu-section { padding-top: 70px; }
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card { display: grid; grid-template-columns: 125px 1fr; min-height: 150px; }
  .product-art { min-height: 100%; }
  .product-emoji { font-size: 3.7rem; }
  .product-badge { font-size: .58rem; padding: 5px 8px; }
  .product-body { padding: 15px; }
  .product-body h3 { font-size: 1.24rem; }
  .product-body p { font-size: .78rem; margin-bottom: 12px; }
  .product-bottom { align-items: end; }
  .add-button { padding: 8px 11px; font-size: .8rem; }
  .contact-card { padding: 32px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .modal-content { padding: 28px 20px 24px; }
  .modal-content h2 { font-size: 2rem; }
  .modal-footer { align-items: stretch; flex-direction: column; }
  .quantity-control.large { align-self: center; }
}

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

/* Normalización específica de botones visuales */
.product-art {
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  font: inherit;
}

/* Mejoras de identidad, agrupación y extras */
.brand-logo {
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 7px 9px rgba(10,69,99,.16));
}

.hero-logo-visual { isolation: isolate; }
.hero-logo-wrap {
  position: relative;
  z-index: 3;
  width: min(500px, 96%);
  display: grid;
  place-items: center;
  animation: logo-float 4.6s ease-in-out infinite;
}
.hero-main-logo {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 30px 25px rgba(7,50,71,.25));
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.extras-notice {
  margin: 28px 0 18px;
  padding: 15px 18px;
  border: 1px solid rgba(247,199,42,.55);
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, #fff8cf, #fffdf1);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(113,82,0,.07);
}
.extras-notice > span {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 1.35rem;
  font-weight: 900;
}
.extras-notice div { display: grid; }
.extras-notice strong { font-size: .96rem; }
.extras-notice small { color: #755f22; font-weight: 700; }

.radio-choice { align-items: flex-start; }
.radio-choice > input { margin-top: 4px; }
.radio-copy {
  min-width: 0;
  flex: 1;
  display: grid;
  gap: 2px;
  line-height: 1.25;
}
.radio-copy strong { color: var(--navy); font-size: .9rem; }
.radio-copy small { color: var(--muted); font-size: .72rem; font-weight: 700; }
.radio-choice b { flex: 0 0 auto; padding-top: 1px; }

.option-heading {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.option-heading label {
  color: var(--navy);
  font-size: .86rem;
  font-weight: 900;
}
.option-heading span {
  color: var(--teal);
  font-size: .76rem;
  font-weight: 900;
  white-space: nowrap;
}
.extra-adder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}
.extra-adder button {
  border: 0;
  border-radius: var(--radius-sm);
  padding: 0 15px;
  background: var(--yellow);
  color: var(--navy-dark);
  font-size: .8rem;
  font-weight: 900;
  white-space: nowrap;
}
.extra-adder button:hover { filter: brightness(.97); }
.extra-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}
.extra-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(32,169,174,.25);
  border-radius: 999px;
  background: #effbfa;
  color: var(--navy);
  padding: 6px 7px 6px 11px;
  font-size: .76rem;
  font-weight: 900;
}
.extra-chip button {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: #b85c50;
  display: grid;
  place-items: center;
  font-size: 1rem;
  line-height: 1;
}
.field-help {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.35;
  font-weight: 700;
}

@media (max-width: 820px) {
  .hero-logo-wrap { width: min(440px, 88vw); }
  .hero-main-logo { max-height: 410px; }
}

@media (max-width: 560px) {
  .brand-logo { width: 50px; height: 50px; }
  .brand-copy strong { font-size: 1.2rem; }
  .brand-copy small { font-size: .62rem; }
  .hero-logo-wrap { width: min(355px, 92vw); }
  .hero-main-logo { max-height: 350px; }
  .extras-notice { align-items: flex-start; padding: 13px 14px; }
  .extras-notice small { line-height: 1.3; }
  .extra-adder { grid-template-columns: 1fr; }
  .extra-adder button { min-height: 44px; }
  .option-heading { align-items: flex-start; flex-direction: column; gap: 2px; }
  .radio-choice { padding: 10px; }
}

/* Opciones múltiples y adicionales por producto */
.check-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 9px;
}
.check-choice {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--border, #d8e5e8);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  font-weight: 750;
}
.check-choice:has(input:checked) {
  border-color: #15aaa8;
  background: #ecfbfa;
  box-shadow: 0 0 0 2px rgba(21, 170, 168, .12);
}
.check-choice input {
  width: 19px;
  height: 19px;
  accent-color: #0b9f9d;
}
.check-choice span { flex: 1; }
.check-choice b { color: #0a6670; white-space: nowrap; }
@media (max-width: 560px) {
  .check-options { grid-template-columns: 1fr; }
}
