@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --red: #ef1d24;
  --orange: #ff7938;
  --peach: #fff3ea;
  --cream: #fffaf5;
  --text: #1f1f1f;
  --muted: #777;
  --line: #f0ded0;
  --card: #fff;
  --shadow: 0 10px 28px rgba(239, 29, 36, 0.1);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(180deg, #fff4ea, #fff);
  color: var(--text);
}
a {
  text-decoration: none;
  color: inherit;
}
.app {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--cream);
  box-shadow: 0 0 0 1px #f4e2d6;
}
.top {
  position: sticky;
  top: 0;
  z-index: 3;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  padding: 16px 18px;
  border-radius: 0 0 22px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-weight: 800;
}
.icon-btn {
  background: rgba(255, 255, 255, 0.18);
  padding: 8px 10px;
  border-radius: 12px;
}
.content {
  padding: 14px 14px 90px;
}
.date {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  color: #555;
  margin-bottom: 20px;
}
.section-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  margin: 16px 0 10px;
}
.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.tab {
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  background: #fff0e4;
  color: #333;
  font-weight: 700;
}
.tab.active {
  background: var(--red);
  color: #fff;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.grid.drink {
  grid-template-columns: repeat(3, 1fr);
}
.product {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
}
.product img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  background: #fff0e7;
}
.drink .product img {
  height: 70px;
}
.product .p {
  padding: 9px;
}
.product b {
  font-size: 15px;
}
.price {
  color: var(--red);
  font-weight: 800;
  margin-top: 5px;
}
.btn {
  border: 0;
  border-radius: 14px;
  padding: 13px 16px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
}
.btn-red {
  background: linear-gradient(135deg, var(--red), #ff3a31);
  color: white;
  margin-top: 8px;
}
.btn-orange {
  background: linear-gradient(135deg, #ffb36b, var(--orange));
  color: white;
}
.btn-light {
  background: #fff0df;
  color: #222;
  border: 1px solid var(--line);
  font-family: "Roboto";
}
.full {
  width: 100%;
}
.row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.qty {
  display: flex;
  gap: 10px;
  margin: 8px 0 14px;
}
.qty input {
  flex: 1;
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}
.qty button {
  width: 56px;
}
.choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.summary-card,
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  margin-top: 12px;
}
.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mini {
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fff8f0;
  border-radius: 12px;
  padding: 10px;
}
.mini .emoji {
  font-size: 24px;
}
.big-total {
  font-size: 28px;
  color: var(--red);
  font-weight: 900;
}
.bottom {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  max-width: 480px;
  width: 100%;
  background: #fff;
  border-top: 1px solid var(--line);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  padding: 8px 8px 10px;
}
.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #555;
  font-size: 12px;
}
.nav span {
  display: block;
  font-size: 21px;
}
.nav.active {
  color: var(--red);
  font-weight: 800;
}
.cart-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #f4e4d8;
  padding: 12px 0;
}
.cart-item img {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
}
.cart-qty-box {
  min-width: 132px;
}
.cart-qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff7f1;
}
.cart-qty-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(239, 29, 36, 0.18);
}
.cart-qty-btn:active {
  transform: scale(0.97);
}
.cart-qty-input {
  width: 48px;
  min-width: 48px;
  padding: 8px 4px;
  border: 0;
  background: transparent;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  box-shadow: none;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-line-total {
  margin-top: 8px;
}
.small {
  font-size: 13px;
  color: var(--muted);
}
.input {
  width: 100%;
}
.input,
select {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  font-size: 15px;
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
}
.table th,
.table td {
  padding: 11px;
  border-bottom: 1px solid #f3e2d6;
  text-align: left;
  font-size: 14px;
}
.table th {
  color: var(--red);
  background: #fff4ec;
}
.right {
  text-align: right !important;
}
.success {
  text-align: center;
  padding: 45px 16px;
}
.check {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: white;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  font-size: 54px;
  color: var(--red);
  box-shadow: var(--shadow);
}
.danger {
  color: var(--red);
}
