* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, Arial, sans-serif;
  background: #fff;
  color: #222;
}

/* ── TOPBAR ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
}

.logo a {
  text-decoration: none;
  color: #111;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: #888;
  margin-top: 2px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
  color: #222;
  line-height: 1;
}

.navlinks {
  display: flex;
  gap: 22px;
  align-items: center;
}

.navlinks a {
  text-decoration: none;
  color: #222;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.navlinks a.active {
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* ── STATUS SECTION ── */
.status-section {
  text-align: center;
  padding: 72px 24px 60px;
  border-bottom: 1px solid #eee;
}

.orders-label {
  font-size: 11px;
  letter-spacing: 5px;
  color: #aaa;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.status-msg {
  font-size: 15px;
  color: #555;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  font-style: italic;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cd-unit span {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1;
  color: #111;
}

.cd-unit small {
  font-size: 10px;
  letter-spacing: 2px;
  color: #aaa;
  margin-top: 6px;
  text-transform: uppercase;
}

.pickup-note {
  font-size: 12px;
  letter-spacing: 1px;
  color: #aaa;
  font-style: italic;
}

/* ── FORM SECTION ── */
.form-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 28px 80px;
}

.form-heading {
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 40px;
  color: #111;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.form-group label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  font-size: 16px;
  font-family: inherit;
  color: #111;
  background: transparent;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #111;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}

.form-section-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin: 32px 0 16px;
}

/* ── PRODUCT ROWS ── */
.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 12px;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.product-name {
  font-size: 15px;
  color: #222;
  line-height: 1.3;
}

.product-price {
  font-size: 13px;
  color: #888;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #ddd;
  flex-shrink: 0;
}

.qty-btn {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.qty-btn:active {
  background: #f5f5f5;
}

.qty-input {
  width: 36px;
  height: 36px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 15px;
  color: #111;
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* ── TOTAL ── */
.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 32px;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  border-top: 1px solid #ddd;
  margin-top: 8px;
}

/* ── SUBMIT ── */
.submit-btn {
  width: 100%;
  background: #111;
  color: #fff;
  border: none;
  padding: 18px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  margin-top: 8px;
}

.submit-btn:hover {
  background: #333;
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-disclaimer {
  font-size: 12px;
  color: #aaa;
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/* ── SUCCESS ── */
.success-msg {
  display: none;
  text-align: center;
  padding: 60px 24px;
}

.success-icon {
  font-size: 48px;
  color: #111;
  margin-bottom: 16px;
}

.success-msg h3 {
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 12px;
}

.success-msg p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* ── CLOSED SECTION ── */
.closed-section {
  display: none;
  text-align: center;
  padding: 80px 28px;
}

.closed-heading {
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: #111;
  margin-bottom: 20px;
}

.closed-sub {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

/* ────────────────────────────────────────
   MOBILE  (≤ 768px)
──────────────────────────────────────── */
@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .navlinks {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    z-index: 99;
  }

  .navlinks.open { display: flex; }

  .navlinks a {
    padding: 14px 28px;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
  }

  .navlinks a:last-child { border-bottom: none; }

  /* Status */
  .status-section { padding: 48px 24px 40px; }

  .cd-unit span { font-size: 30px; }

  .countdown { gap: 16px; }

  /* Form */
  .form-section { padding: 40px 20px 60px; }

  .form-heading { font-size: 22px; margin-bottom: 28px; }

  .product-row { flex-wrap: wrap; gap: 12px; }

  .product-info { width: 100%; }
}


/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid #eee;
  padding: 48px 28px 36px;
  text-align: center;
}
.footer-logo { font-size: 16px; letter-spacing: 0.5px; color: #111; margin-bottom: 4px; }
.footer-logo-sub { font-size: 9px; letter-spacing: 2.5px; color: #aaa; margin-bottom: 28px; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 20px; }
.footer-links a { text-decoration: none; color: #888; font-size: 12px; letter-spacing: 0.5px; }
.footer-links a:hover { color: #111; }
.footer-links span { color: #ddd; font-size: 12px; }
.footer-copy { font-size: 11px; color: #bbb; letter-spacing: 0.5px; }
@media (max-width: 768px) {
  .footer-links span { display: none; }
  .footer-links { gap: 10px 14px; }
}