:root {
  --yellow:#FFD400;
  --black:#111;
  --white:#fff;
  --soft:#fff6b8;
}

* {
  box-sizing:border-box;
}

body {
  margin:0;
  font-family:Arial, sans-serif;
  background:var(--yellow);
  color:var(--black);
}

.container {
  max-width:950px;
  margin:auto;
  padding:14px;
}

header {
  text-align:center;
  padding:25px 0 12px;
}

.logo {
  display:inline-block;
  background:#000;
  color:#FFD400;
  padding:12px 22px;
  border-radius:14px;
  font-size:34px;
  font-weight:900;
  letter-spacing:1px;
  box-shadow:0 8px 0 rgba(0,0,0,.15);
}

.subtitle {
  font-weight:700;
  line-height:1.4;
  padding:0 12px;
}

.card {
  background:white;
  border:3px solid #000;
  border-radius:18px;
  padding:16px;
  margin:16px 0;
  box-shadow:5px 5px 0 #000;
}

h2 {
  margin:0 0 14px;
}

.notice {
  background:#000;
  color:#FFD400;
  padding:13px;
  border-radius:12px;
  text-align:center;
  font-weight:900;
  margin-bottom:14px;
}

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

.item {
  background:var(--soft);
  border:2px solid #000;
  border-radius:14px;
  padding:12px;
}

.top {
  display:flex;
  justify-content:space-between;
  gap:8px;
  font-weight:900;
  font-size:16px;
}

.desc {
  font-size:13px;
  margin:6px 0 12px;
  line-height:1.35;
}

.qty-control {
  display:flex;
  align-items:center;
  gap:10px;
}

.qty-btn {
  width:42px;
  height:42px;
  border-radius:50%;
  border:0;
  background:#000;
  color:#FFD400;
  font-size:30px;
  font-weight:900;
  cursor:pointer;
  line-height:42px;
  text-align:center;
}

.qty-number {
  min-width:36px;
  text-align:center;
  font-size:26px;
  font-weight:900;
}

label {
  display:block;
  font-weight:900;
  margin-bottom:6px;
}

input,
textarea,
select {
  width:100%;
  padding:13px;
  border:2px solid #000;
  border-radius:12px;
  font-size:16px;
  margin-bottom:12px;
  background:#fffef0;
}

textarea {
  min-height:90px;
}

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

.delivery-cost {
  background:#fff6b8;
  color:#000;
  border:2px solid #000;
  padding:12px;
  border-radius:14px;
  text-align:center;
  font-size:18px;
  font-weight:900;
  margin-top:14px;
}

.total {
  background:#000;
  color:#FFD400;
  padding:16px;
  border-radius:14px;
  text-align:center;
  font-size:24px;
  font-weight:900;
  margin-top:10px;
}

.send {
  width:100%;
  background:#000;
  color:#FFD400;
  border:3px solid #000;
  padding:16px;
  border-radius:16px;
  font-size:20px;
  font-weight:900;
  cursor:pointer;
}

.send:hover {
  transform:translateY(-2px);
  box-shadow:0 6px 0 rgba(0,0,0,.25);
}

.small {
  text-align:center;
  font-size:13px;
  font-weight:700;
}

footer {
  text-align:center;
  padding:25px;
  font-weight:700;
}

footer a {
  color:#000;
  font-weight:900;
}

@media(max-width:720px) {
  .menu-grid,
  .form-grid {
    grid-template-columns:1fr;
  }

  .logo {
    font-size:28px;
  }
}
