:root {
  color-scheme:dark;
  --bg:#10110f;
  --surface:#191a17;
  --surface2:#20211d;
  --line:#34352e;
  --text:#f4f3ec;
  --muted:#b2b3a8;
  --yellow:#ffc32b;
  --green:#70df9b;
  --radius:18px;
  font-family:Arial,Helvetica,sans-serif;
  font-size:16px;
}

* {
  box-sizing:border-box;
}

body {
  margin:0;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
}

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

button,input {
  font:inherit;
}

button,a {
  -webkit-tap-highlight-color:transparent;
}

button {
  cursor:pointer;
}

button:disabled {
  cursor:default;
}

a:focus-visible,button:focus-visible,[tabindex]:focus-visible,input:focus-visible {
  outline:3px solid var(--yellow);
  outline-offset:5px;
}

button {
  color:inherit;
}

.icon-defs {
  position:absolute;
  width:0;
  height:0;
  overflow:hidden;
}

.icon {
  width:21px;
  height:21px;
  flex-shrink:0;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.wrap {
  width:min(1240px,calc(100% - 80px));
  margin:0 auto;
}

.site-header {
  border-bottom:1px solid var(--line);
}

.header-inner {
  min-height:108px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

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

.brand-monogram {
  position:relative;
  color:var(--yellow);
  font-size:55px;
  font-weight:900;
  line-height:1;
  letter-spacing:-4px;
  padding-top:7px;
}

.brand-stars {
  position:absolute;
  top:-4px;
  left:3px;
  font-size:11px;
  letter-spacing:2px;
  white-space:nowrap;
}

.brand-name {
  font-size:17px;
  font-weight:800;
  line-height:1.03;
  letter-spacing:2.6px;
}

.brand-sub {
  display:block;
  margin-top:8px;
  letter-spacing:1.15px;
  font-size:10px;
  font-weight:500;
  color:var(--muted);
}

.header-contact {
  display:flex;
  align-items:center;
  gap:27px;
}

.phone-link {
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:600;
}

.phone-link .icon {
  color:var(--yellow);
}

.btn {
  min-height:49px;
  border-radius:8px;
  padding:13px 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:14px;
  font-weight:700;
  border:1px solid transparent;
  transition:background .18s,transform .18s;
}

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

.btn-yellow {
  background:var(--yellow);
  color:#18190f;
}

.btn-yellow:hover {
  background:#ffd45e;
}

.btn-outline {
  border-color:#57584b;
  background:transparent;
}

.btn-outline:hover {
  background:var(--surface2);
}

.btn-green {
  background:var(--green);
  color:#0d2919;
}

.btn-green:hover {
  background:#9be8b8;
}

.btn:disabled {
  opacity:.42;
  transform:none;
}

.intro {
  padding:40px 0 32px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
}

.eyebrow {
  font-size:12px;
  letter-spacing:2px;
  font-weight:700;
  color:var(--yellow);
  margin:0 0 12px;
}

h1 {
  font-size:clamp(36px,4.4vw,54px);
  font-weight:800;
  letter-spacing:-2.1px;
  line-height:1.08;
  margin:0;
}

h1 span {
  color:var(--yellow);
}

.intro>p {
  font-size:14px;
  color:var(--muted);
  line-height:1.8;
  margin:0 0 2px;
}

h2 {
  font-size:30px;
  line-height:1.15;
  margin:0;
  letter-spacing:-.8px;
}

h3 {
  margin:0;
}

.categories {
  display:flex;
  gap:8px;
  padding:7px;
  background:#1c1d19;
  border:1px solid var(--line);
  border-radius:12px;
  margin-bottom:28px;
}

.categories button {
  border:0;
  flex:1;
  background:none;
  border-radius:7px;
  min-height:48px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  font-size:14px;
  font-weight:700;
  padding:11px 13px;
  white-space:nowrap;
}

.categories button span {
  font-size:12px;
  font-weight:500;
  color:var(--muted);
  border:1px solid #46473d;
  padding:3px 7px;
  border-radius:4px;
}

.categories button[aria-selected=true] {
  background:var(--yellow);
  color:#191a10;
}

.categories button[aria-selected=true] span {
  border-color:#c99512;
  color:#3c310c;
}

.categories button:hover:not([aria-selected=true]) {
  background:#30312a;
}

#menu-panel:focus {
  outline:none;
}

.daily-grid {
  display:grid;
  grid-template-columns:345px 1fr;
  gap:30px;
  align-items:start;
}

.daily-feature {
  border:1px solid #4f4427;
  border-radius:var(--radius);
  background:var(--surface);
  overflow:hidden;
}

.feature-photo {
  height:190px;
  position:relative;
  overflow:hidden;
  background:#090a08;
}

.feature-photo img {
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  padding:16px 20px;
}

.feature-badge {
  position:absolute;
  left:17px;
  top:16px;
  background:var(--yellow);
  color:#241b03;
  font-size:12px;
  font-weight:800;
  letter-spacing:.5px;
  padding:7px 10px;
  border-radius:5px;
}

.feature-content {
  padding:23px;
}

.feature-price-row {
  display:flex;
  gap:10px;
  align-items:flex-end;
  justify-content:space-between;
}

.feature-price-row h2 {
  font-size:29px;
}

.price {
  white-space:nowrap;
  color:var(--yellow);
  font-size:43px;
  font-weight:800;
  letter-spacing:-1.8px;
  line-height:1;
}

.price small {
  font-size:15px;
  letter-spacing:0;
  font-weight:600;
}

.feature-includes {
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
  margin:13px 0 0;
}

.gift-note {
  display:flex;
  gap:8px;
  align-items:center;
  font-size:13px;
  color:var(--yellow);
  padding:14px 0 18px;
  border-bottom:1px solid var(--line);
  margin:0;
}

.gift-note .icon {
  width:16px;
  height:16px;
}

.summary {
  list-style:none;
  padding:4px 0 0;
  margin:0 0 17px;
}

.summary li {
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:13px;
  line-height:1.5;
  padding-top:11px;
}

.summary .summary-number {
  display:grid;
  place-items:center;
  flex-shrink:0;
  border:1px solid #44453d;
  width:20px;
  height:20px;
  border-radius:50%;
  font-size:11px;
  color:var(--muted);
}

.summary .is-filled .summary-number {
  background:var(--yellow);
  color:#17180f;
  border-color:var(--yellow);
}

.summary-label {
  color:var(--muted);
  font-size:12px;
  display:block;
}

.summary-value {
  display:block;
  font-size:14px;
  margin-top:2px;
}

.full-width {
  width:100%;
}

.help {
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
  text-align:center;
  margin:9px 0 0;
}

.builder {
  padding-top:5px;
}

.builder-heading {
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
}

.builder-heading h2 {
  font-size:27px;
}

.step-count {
  font-size:13px;
  color:var(--muted);
  white-space:nowrap;
}

.steps {
  display:flex;
  gap:7px;
  margin:22px 0 25px;
}

.step {
  position:relative;
  flex:1;
  text-align:left;
  padding:13px 4px 0;
  background:none;
  border:0;
  border-top:3px solid #3b3c33;
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
}

.step.active {
  border-color:var(--yellow);
  color:var(--yellow);
}

.step.done {
  border-color:#91803c;
  color:#dbdccf;
}

.step[disabled] {
  opacity:.4;
}

.step span {
  font-weight:700;
  margin-right:6px;
}

.choice-heading {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:15px;
}

.choice-heading h3 {
  font-size:18px;
}

.weight-tag {
  color:var(--muted);
  font-size:12px;
  border:1px solid var(--line);
  padding:5px 9px;
  border-radius:5px;
  white-space:nowrap;
}

.choices {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.choice {
  position:relative;
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--surface);
  padding:0;
  overflow:hidden;
  text-align:left;
  display:flex;
  flex-direction:column;
  transition:border-color .18s,background .18s;
}

.choice:hover {
  border-color:#857342;
  background:#22231c;
}

.choice[aria-checked=true] {
  border-color:var(--yellow);
  background:#2a281a;
  box-shadow:inset 0 0 0 1px var(--yellow);
}

.choice img {
  width:100%;
  height:118px;
  object-fit:contain;
  object-position:center;
  padding:12px 14px;
  background:#070806;
}

.choice-body {
  display:block;
  padding:12px 14px 14px;
  width:100%;
}

.choice-title {
  display:block;
  font-size:14px;
  font-weight:700;
  line-height:1.35;
  padding-right:13px;
}

.choice-description {
  display:block;
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
  margin-top:6px;
}

.choice-radio {
  position:absolute;
  right:11px;
  top:10px;
  border:1px solid #797a6a;
  width:21px;
  height:21px;
  border-radius:50%;
  background:#151611bb;
  display:grid;
  place-items:center;
}

.choice[aria-checked=true] .choice-radio {
  background:var(--yellow);
  color:#191a10;
  border-color:var(--yellow);
}

.choice-radio .icon {
  width:15px;
  height:15px;
  display:none;
}

.choice[aria-checked=true] .choice-radio .icon {
  display:block;
}

.builder-actions {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid var(--line);
}

.builder-hint {
  font-size:13px;
  color:var(--muted);
  line-height:1.5;
  margin:0;
  max-width:235px;
}

.back-button {
  border:0;
  background:none;
  color:var(--muted);
  padding:12px 0;
  font-size:14px;
  text-decoration:underline;
  text-underline-offset:4px;
}

.subtle-note {
  font-size:12px;
  line-height:1.6;
  color:var(--muted);
  margin:15px 0 0;
}

.fasting-card {
  display:flex;
  align-items:center;
  gap:22px;
  margin-top:28px;
  padding:22px;
  border-radius:14px;
  background:var(--surface);
  border:1px solid var(--line);
}

.fasting-card img {
  width:135px;
  height:92px;
  object-fit:contain;
  padding:5px;
  border-radius:8px;
  background:#070806;
}

.fasting-body {
  flex:1;
}

.fasting-body h3 {
  font-size:21px;
  display:flex;
  align-items:center;
  gap:9px;
}

.fasting-body h3 .icon {
  color:var(--green);
}

.fasting-body p {
  font-size:14px;
  line-height:1.6;
  color:var(--muted);
  margin:8px 0 0;
  max-width:640px;
}

.fasting-order {
  display:flex;
  align-items:center;
  gap:23px;
}

.small-price {
  font-size:30px;
}

.section-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:25px;
  margin:31px 0 23px;
}

.section-heading h2 {
  font-size:34px;
}

.section-heading p {
  font-size:14px;
  color:var(--muted);
  line-height:1.6;
  margin:9px 0 0;
}

.section-label {
  font-size:12px;
  letter-spacing:1.3px;
  color:var(--yellow);
  font-weight:700;
  white-space:nowrap;
}

.product-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.product {
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--surface);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:border-color .18s,transform .18s;
}

.product:hover {
  border-color:#696044;
  transform:translateY(-3px);
}

.product-image {
  position:relative;
  height:224px;
  background:#070806;
  overflow:hidden;
}

.product-image img {
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  padding:20px 24px;
}

.product-size {
  position:absolute;
  top:14px;
  right:14px;
  background:#151610e8;
  border:1px solid #4f4f40;
  padding:6px 9px;
  border-radius:6px;
  font-size:12px;
}

.product-body {
  padding:21px;
  flex:1;
  display:flex;
  flex-direction:column;
}

.product-title-row {
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
}

.product h3 {
  font-size:23px;
  letter-spacing:-.4px;
  line-height:1.16;
}

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

.product .price small {
  font-size:13px;
}

.product-description {
  font-size:14px;
  line-height:1.7;
  color:var(--muted);
  margin:13px 0 20px;
  flex:1;
}

.product-actions {
  display:flex;
  gap:9px;
}

.product-actions .btn {
  flex:1;
  min-height:45px;
  padding:10px 12px;
}

.product-actions .call-small {
  flex:0 0 45px;
  padding:10px;
}

.ready-panel {
  background:#20281e;
  border:1px solid #476441;
  border-radius:12px;
  padding:24px;
  margin-top:15px;
}

.ready-panel h3 {
  font-size:24px;
}

.ready-panel p {
  color:#bdcbbb;
  line-height:1.7;
  font-size:14px;
}

.ready-panel .btn {
  margin-top:3px;
}

.ready-check {
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--green);
  color:#14301b;
  width:42px;
  height:42px;
  margin-bottom:16px;
}

.contact-strip {
  margin-top:48px;
  padding:32px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.contact-strip h2 {
  font-size:27px;
}

.contact-strip .eyebrow {
  font-size:11px;
}

.contact-strip .btn {
  min-width:225px;
}

.order-note {
  font-size:12px;
  line-height:1.8;
  color:var(--muted);
  max-width:940px;
  margin:20px 0 30px;
}

.site-footer {
  padding:23px 0 32px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  color:var(--muted);
  font-size:12px;
}

.footer-brand {
  font-size:24px;
  font-weight:900;
  color:var(--yellow);
  display:flex;
  align-items:center;
  gap:9px;
}

.footer-brand span {
  font-size:11px;
  font-weight:700;
  color:var(--text);
  letter-spacing:1.5px;
}

.mobile-contact {
  display:none;
}

.noscript {
  padding:30px;
  text-align:center;
}

button:disabled .icon {
  opacity:.7;
}

@media(min-width:1450px) {
  .wrap {
    width:min(1300px,calc(100% - 100px));
  }
  .daily-grid {
    grid-template-columns:360px 1fr;
  }
  .choice img {
    height:130px;
  }
}

@media(max-width:1050px) {
  .wrap {
    width:calc(100% - 48px);
  }
  .daily-grid {
    grid-template-columns:305px 1fr;
    gap:23px;
  }
  .choices {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .intro>p {
    max-width:300px;
  }
  .categories button {
    gap:7px;
    padding:10px 9px;
    font-size:13px;
  }
  .categories button span {
    font-size:11px;
  }
  .product-grid {
    gap:16px;
  }
  .product-image {
    height:190px;
  }
  .product-body {
    padding:17px;
  }
  .product h3 {
    font-size:21px;
  }
  .fasting-order {
    flex-direction:column;
    gap:13px;
  }
  .feature-content {
    padding:20px;
  }
  .step {
    font-size:12px;
  }
  .builder-hint {
    max-width:155px;
  }
  .header-contact {
    gap:18px;
  }
}

@media(max-width:760px) {
  .wrap {
    width:calc(100% - 36px);
  }
  .header-inner {
    min-height:86px;
  }
  .brand-monogram {
    font-size:45px;
  }
  .brand-name {
    font-size:14px;
    letter-spacing:2px;
  }
  .brand-sub {
    display:none;
  }
  .header-wa {
    display:none;
  }
  .phone-link {
    font-size:13px;
    gap:7px;
  }
  .phone-link .icon {
    width:17px;
  }
  .intro {
    padding:29px 0 23px;
    display:block;
  }
  .intro .eyebrow {
    font-size:11px;
    margin-bottom:10px;
  }
  h1 {
    font-size:39px;
    letter-spacing:-1.6px;
  }
  .intro>p {
    margin-top:13px;
    max-width:unset;
    font-size:13px;
    line-height:1.65;
  }
  .intro>p br {
    display:none;
  }
  .categories {
    overflow-x:auto;
    gap:4px;
    scrollbar-width:none;
    margin-bottom:23px;
    padding:5px;
    position:sticky;
    top:0;
    z-index:5;
    box-shadow:0 5px 15px #10110f88;
  }
  .categories::-webkit-scrollbar {
    display:none;
  }
  .categories button {
    flex:0 0 auto;
    min-height:43px;
    font-size:13px;
    padding:11px 12px;
  }
  .categories button span {
    font-size:11px;
  }
  .daily-grid {
    display:flex;
    flex-direction:column;
    gap:25px;
  }
  .daily-feature {
    width:100%;
    display:grid;
    grid-template-columns:114px 1fr;
    position:relative;
  }
  .feature-photo {
    height:100%;
    min-height:155px;
  }
  .feature-photo img {
    object-fit:contain;
    object-position:center;
    padding:8px;
  }
  .feature-badge {
    font-size:10px;
    padding:6px;
    left:8px;
    top:9px;
  }
  .feature-content {
    padding:17px 15px;
  }
  .feature-price-row {
    align-items:center;
    gap:12px;
  }
  .feature-price-row h2 {
    font-size:22px;
    max-width:100px;
  }
  .price {
    font-size:35px;
    letter-spacing:-1px;
  }
  .price small {
    font-size:12px;
  }
  .feature-includes {
    font-size:12px;
    line-height:1.6;
    margin-top:9px;
  }
  .gift-note {
    font-size:11px;
    line-height:1.5;
    border:0;
    padding:9px 0 0;
    align-items:flex-start;
  }
  .gift-note .icon {
    width:13px;
    height:13px;
    margin-top:1px;
  }
  .daily-feature .summary,.daily-feature .summary-order,.daily-feature .help {
    display:none;
  }
  .builder {
    width:100%;
    padding-top:0;
  }
  .builder-heading h2 {
    font-size:25px;
  }
  .step-count {
    font-size:12px;
  }
  .steps {
    margin:21px 0 23px;
    gap:7px;
  }
  .step {
    font-size:12px;
  }
  .step span {
    margin-right:3px;
  }
  .choice-heading h3 {
    font-size:18px;
  }
  .choices {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }
  .choice img {
    height:128px;
  }
  .choice-body {
    padding:12px;
  }
  .choice-title {
    font-size:14px;
    line-height:1.4;
  }
  .choice-description {
    font-size:12px;
  }
  .builder-actions {
    margin-top:18px;
    padding-top:15px;
  }
  .builder-hint {
    font-size:12px;
    max-width:155px;
  }
  .builder-actions .btn {
    font-size:13px;
    padding:12px;
  }
  .fasting-card {
    padding:18px;
    gap:16px;
    display:grid;
    grid-template-columns:88px 1fr;
    margin-top:25px;
  }
  .fasting-card img {
    width:88px;
    height:92px;
  }
  .fasting-body h3 {
    font-size:20px;
  }
  .fasting-body p {
    font-size:12px;
  }
  .fasting-order {
    grid-column:1/-1;
    flex-direction:row;
    justify-content:space-between;
    padding-top:13px;
    border-top:1px solid var(--line);
  }
  .fasting-order .btn {
    min-height:44px;
  }
  .section-heading {
    align-items:flex-start;
    margin:28px 0 20px;
  }
  .section-heading h2 {
    font-size:30px;
  }
  .section-heading p {
    font-size:13px;
  }
  .section-label {
    display:none;
  }
  .product-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:13px;
  }
  .product-image {
    height:167px;
  }
  .product-image img {
    padding:18px 12px;
  }
  .product-body {
    padding:15px 12px;
  }
  .product-title-row {
    display:block;
  }
  .product h3 {
    font-size:20px;
    min-height:46px;
  }
  .product .price {
    margin-top:11px;
    font-size:29px;
  }
  .product-description {
    font-size:12px;
    line-height:1.65;
    margin:11px 0 16px;
  }
  .product-actions {
    gap:7px;
  }
  .product-actions .btn {
    font-size:12px;
    padding:11px 9px;
    gap:6px;
    min-height:44px;
  }
  .product-actions .icon {
    width:17px;
    height:17px;
  }
  .product-actions .call-small {
    display:none;
  }
  .product-size {
    font-size:11px;
    top:9px;
    right:9px;
  }
  .contact-strip {
    margin-top:33px;
    padding:26px 0;
    display:block;
  }
  .contact-strip h2 {
    font-size:25px;
    max-width:300px;
  }
  .contact-strip .btn {
    margin-top:21px;
  }
  .order-note {
    margin-top:17px;
    font-size:12px;
  }
  .site-footer {
    padding:19px 0 101px;
    flex-wrap:wrap;
    gap:12px;
    font-size:11px;
  }
  .site-footer>a {
    display:none;
  }
  .mobile-contact {
    display:flex;
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:20;
    padding:10px 18px calc(10px + env(safe-area-inset-bottom));
    gap:10px;
    background:#141511f5;
    backdrop-filter:blur(12px);
    border-top:1px solid var(--line);
  }
  .mobile-contact a {
    min-height:47px;
    border:1px solid #44453a;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    font-weight:700;
    font-size:14px;
    flex:1;
  }
  .mobile-contact .mobile-whatsapp {
    color:#102718;
    background:var(--green);
    border-color:var(--green);
    flex:1.3;
  }
  .ready-panel {
    padding:20px;
  }
  .ready-panel .summary {
    display:block;
  }
  .ready-panel .summary-label {
    font-size:12px;
  }
  .ready-panel .summary-value {
    font-size:14px;
  }
}

@media(max-width:365px) {
  .wrap {
    width:calc(100% - 28px);
  }
  .brand {
    gap:8px;
  }
  .phone-link {
    font-size:12px;
  }
  h1 {
    font-size:34px;
  }
  .daily-feature {
    grid-template-columns:94px 1fr;
  }
  .feature-content {
    padding:15px 12px;
  }
  .feature-price-row h2 {
    font-size:20px;
  }
  .choice img {
    height:108px;
  }
  .choice-title {
    font-size:13px;
  }
  .product-grid {
    grid-template-columns:1fr;
  }
  .product-image {
    height:210px;
  }
  .product h3 {
    min-height:0;
  }
  .product-title-row {
    display:flex;
  }
  .product .price {
    margin-top:0;
  }
  .product-actions .call-small {
    display:flex;
  }
  .step {
    font-size:11px;
  }
}

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

/* Drinks menu */
.categories {
  overflow-x:auto;
}

.drinks-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  align-items:start;
}

.drinks-section {
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
}

.drinks-heading {
  padding:24px;
  border-bottom:1px solid var(--line);
}

.drinks-heading h3 {
  font-size:25px;
  letter-spacing:-.5px;
}

.drinks-heading p {
  margin:8px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}

.drink-row {
  display:flex;
  align-items:center;
  gap:16px;
  padding:20px 24px;
  border-bottom:1px solid var(--line);
}

.drink-row:last-child {
  border-bottom:0;
}

.drink-info {
  flex:1;
  min-width:0;
}

.drink-info h3 {
  font-size:16px;
  line-height:1.4;
  font-weight:600;
}

.drink-volume {
  display:block;
  font-size:14px;
  color:var(--muted);
  margin-top:6px;
}

.drink-price {
  font-size:25px;
  letter-spacing:-.7px;
  white-space:nowrap;
  color:var(--yellow);
  font-weight:700;
}

.drink-price small {
  font-size:13px;
  letter-spacing:0;
}

.drink-whatsapp {
  min-height:42px;
  padding:10px;
  color:var(--green);
  border-color:#425247;
}

.drink-whatsapp span {
  display:none;
}

.drink-variant {
  max-width:100%;
  margin-top:8px;
  min-height:38px;
  border:1px solid #57584b;
  border-radius:5px;
  background:#111210;
  color:var(--muted);
  font:inherit;
  font-size:14px;
  padding:7px 9px;
  cursor:pointer;
}

.drink-variant:focus-visible {
  outline:3px solid var(--yellow);
  outline-offset:3px;
}

.visually-hidden {
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip-path:inset(50%);
  white-space:nowrap;
}

@media(max-width:760px) {
  .drinks-grid {
    grid-template-columns:1fr;
    gap:22px;
  }
  .drinks-heading {
    padding:20px;
  }
  .drink-row {
    padding:18px;
    gap:13px;
  }
  .drink-info h3 {
    font-size:15px;
  }
  .drink-price {
    font-size:25px;
  }
  .drink-whatsapp {
    min-width:44px;
    min-height:44px;
  }
  .drinks-heading h3 {
    font-size:23px;
  }
}


/* Multiple selections and the order summary on the same page. */
[hidden] { display: none !important; }
.phone-link { background: none; border: 0; padding: 0; color: var(--text); }
body.has-order { padding-bottom: 132px; }
.has-order .mobile-contact { display: none; }
.mobile-contact button { min-height: 47px; border: 1px solid #44453a; border-radius: 8px; display: flex; align-items: center; justify-content: center; gap: 9px; font-weight: 700; font-size: 14px; flex: 1; }
.add-product { width: 100%; min-height: 46px; }
.add-product > span { font-size: 22px; font-weight: 500; }
.quantity-control { display: inline-flex; flex-shrink: 0; align-items: center; justify-content: space-between; overflow: hidden; min-width: 130px; border: 1px solid #79662d; border-radius: 8px; background: #242319; }
.quantity-control button { width: 44px; height: 44px; border: 0; background: transparent; font-size: 25px; color: var(--yellow); }
.quantity-control button:hover:not(:disabled) { background: #39331d; }
.quantity-control button:disabled { opacity: .35; }
.quantity-control button:focus-visible { outline-offset: -4px; }
.quantity-value { min-width: 30px; text-align: center; font-size: 17px; font-weight: 700; }
.product-actions .quantity-control { width: 100%; }
.quantity-compact { min-width: 112px; }
.quantity-compact button { width: 39px; }
.add-compact { width: auto; min-width: 112px; padding: 10px 12px; font-size: 13px; }
.drink-row { flex-wrap: wrap; }
.drink-info { flex-basis: 160px; }
.daily-quantity-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 20px 0 16px; font-size: 16px; }
.daily-added { color: #97e6b2 !important; display: flex; align-items: center; gap: 9px; }
.new-daily { margin-top: 16px !important; }
.fasting-order .add-product { min-width: 120px; }
.order-dock { position: fixed; z-index: 50; bottom: 18px; left: 50%; transform: translateX(-50%); width: min(980px, calc(100% - 48px)); }
.order-dock-inner { background: #1b1c18; border: 1px solid #75632f; border-radius: 16px; box-shadow: 0 12px 70px #000a; overflow: hidden; display: flex; flex-direction: column; max-height: calc(100dvh - 32px); }
.order-expanded { overflow-y: auto; overscroll-behavior: contain; max-height: 62dvh; min-height: 0; padding: 24px 28px 16px; }
.order-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 14px; }
.order-heading h2 { font-size: 25px; }
.close-order { border: 1px solid var(--line); border-radius: 7px; background: none; color: var(--muted); width: 42px; height: 42px; font-size: 27px; }
.order-lines { list-style: none; margin: 0; padding: 0; }
.order-line { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); padding: 19px 0; }
.order-line-copy { min-width: 0; flex: 1; }
.order-line h3 { font-size: 16px; line-height: 1.5; }
.order-line h3 > span { color: var(--muted); font-weight: 400; font-size: 14px; }
.order-line-details { list-style: none; padding: 0; margin: 9px 0 0; }
.order-line-details li { font-size: 13px; color: var(--muted); line-height: 1.7; }
.unit-price { font-size: 12px; color: var(--muted); margin: 8px 0; }
.remove-line { padding: 4px 0; background: none; border: 0; color: #dda79b; text-decoration: underline; text-underline-offset: 3px; font-size: 13px; }
.order-line-right { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.order-line-right > strong { font-size: 20px; color: var(--yellow); white-space: nowrap; }
.order-confirmation-note { font-size: 12px; line-height: 1.65; color: var(--muted); margin: 4px 0; }
.order-bar { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 24px; padding: 19px 24px; border-top: 1px solid #484331; flex-shrink: 0; }
.order-toggle { display: flex; align-items: center; gap: 12px; text-align: left; padding: 0; background: none; border: 0; min-height: 46px; }
.order-toggle strong { font-size: 16px; display: block; }
.order-toggle small { display: block; font-size: 12px; color: var(--muted); margin-top: 5px; }
.order-count { border-radius: 8px; min-width: 39px; height: 39px; padding: 0 8px; display: grid; place-items: center; font-size: 16px; font-weight: 700; background: var(--yellow); color: #171a0e; }
.order-caret { margin-left: 5px; font-size: 22px; color: var(--yellow); }
.order-total { text-align: right; white-space: nowrap; }
.order-total > span { display: block; font-size: 12px; color: var(--muted); margin-bottom: 5px; }
.order-total strong { font-size: 27px; color: var(--yellow); letter-spacing: -.7px; }
.order-total strong small { font-size: 14px; letter-spacing: 0; }
.finalize-order { min-height: 48px; }
.back-to-order { background: none; border: 0; color: var(--yellow); text-decoration: underline; text-underline-offset: 4px; font-size: 13px; min-height: 40px; }
.checkout-intro { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0 0 20px; }
.checkout-intro strong { color: var(--text); }
.customer-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.customer-field { min-width: 0; }
.customer-field label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 600; }
.customer-field input, .customer-field textarea { display: block; width: 100%; min-height: 46px; border: 1px solid #505146; border-radius: 7px; padding: 12px; color: var(--text); background: #11120f; font: inherit; font-size: 16px; line-height: 1.5; }
.customer-field input::placeholder, .customer-field textarea::placeholder { color: #878b7e; }
.customer-field textarea { resize: vertical; min-height: 81px; max-height: 180px; }
.address-field { grid-column: 1 / -1; }
.payment-options { border: 0; padding: 0; margin: 20px 0 0; display: flex; gap: 14px; }
.payment-options legend { padding: 0; margin-bottom: 11px; font-size: 14px; font-weight: 600; }
.payment-choice { display: flex; align-items: center; gap: 12px; flex: 1; padding: 13px; border: 1px solid #505146; border-radius: 8px; background: #151612; cursor: pointer; }
.payment-choice:has(input:checked) { border-color: var(--yellow); background: #2a2819; }
.payment-choice input { width: 19px; height: 19px; margin: 0; flex-shrink: 0; accent-color: var(--yellow); }
.payment-choice strong { display: block; font-size: 16px; }
.payment-choice small { display: block; font-size: 12px; color: var(--muted); margin-top: 4px; }
.checkout-privacy { font-size: 12px; line-height: 1.7; color: var(--muted); margin: 17px 0 0; }
.checkout-actions { display: grid; grid-template-columns: 1fr auto; gap: 9px; }
.checkout-actions .btn { min-height: 47px; }
.checkout-actions [aria-disabled="true"] { opacity: .42; cursor: pointer; transform: none; }
.checkout-action-hint { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.checkout-active .order-bar { column-gap: 18px; }
@media (max-width: 1000px) {
  .drinks-grid { gap: 17px; }
  .drink-row { padding: 17px; gap: 12px; }
  .drink-info { flex-basis: 135px; }
  .checkout-active .order-bar { grid-template-columns: 1fr auto; }
  .checkout-actions { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  body.has-order { padding-bottom: 182px; }
  .order-dock { bottom: 0; left: 0; transform: none; width: 100%; }
  .order-dock-inner { border-radius: 15px 15px 0 0; max-height: calc(100dvh - 16px); }
  .order-expanded { padding: 19px 18px 14px; max-height: calc(100dvh - 185px); }
  .order-bar { grid-template-columns: 1fr auto; gap: 14px 16px; padding: 14px 18px calc(12px + env(safe-area-inset-bottom)); }
  .finalize-order { grid-column: 1 / -1; width: 100%; }
  .order-heading { gap: 12px; }
  .order-heading h2 { font-size: 23px; }
  .order-toggle { min-height: 42px; gap: 9px; }
  .order-toggle strong { font-size: 15px; }
  .order-toggle small { font-size: 12px; }
  .order-total strong { font-size: 25px; }
  .order-count { min-width: 34px; height: 36px; }
  .order-line { gap: 13px; }
  .order-line h3 { font-size: 15px; }
  .order-line-details li { font-size: 12px; }
  .order-line-right > strong { font-size: 18px; }
  .order-line .quantity-compact { min-width: 99px; }
  .order-line .quantity-compact button { width: 33px; height: 42px; }
  .order-line .quantity-value { min-width: 27px; font-size: 15px; }
  .customer-fields { gap: 14px; grid-template-columns: 1fr; }
  .customer-field input, .customer-field textarea { padding: 10px 11px; }
  .payment-options { gap: 10px; }
  .payment-choice { padding: 12px 10px; gap: 9px; }
  .payment-choice small { font-size: 11px; }
  .checkout-actions { width: 100%; grid-template-columns: 1fr auto; }
  .checkout-actions .btn { padding: 12px; font-size: 13px; }
  .checkout-action-hint { font-size: 11px; }
  .checkout-active .order-expanded { max-height: calc(100dvh - 216px); }
  .daily-quantity-row { margin-top: 17px; }
  .drink-row { flex-wrap: nowrap; padding: 16px; gap: 12px; }
  .drink-info { flex-basis: auto; }
  .drink-price { font-size: 22px; }
  .drink-row .quantity-compact, .drink-row .add-compact { min-width: 96px; }
  .drink-row .quantity-compact button { width: 33px; }
  .drink-row .quantity-value { min-width: 28px; }
  .add-compact { padding: 10px; font-size: 12px; }
  .product-actions .quantity-control { min-width: 0; }
  .product-actions .quantity-control button { width: 40px; }
}
@media (max-width: 365px) {
  .drink-row { gap: 10px; padding: 14px 12px; flex-wrap: wrap; }
  .drink-info { flex-basis: calc(100% - 70px); }
  .drink-row .quantity-control, .drink-row .add-product { margin-left: auto; }
  .checkout-actions .btn { padding: 10px; font-size: 12px; gap: 7px; }
  .order-caret { display: none; }
  .back-to-order { font-size: 12px; }
}

/* Bara de jos pe mobil: apel direct + comanda */
.mobile-contact .mobile-call { min-height: 47px; border: 1px solid #44453a; border-radius: 8px; display: flex; align-items: center; justify-content: center; gap: 9px; font-weight: 700; font-size: 14px; flex: 1; }
.mobile-contact .mobile-whatsapp { flex: 1.3; }
