* {
  box-sizing: border-box;
}

:root {
  --bg: #f4f6f8;
  --card: #ffffff;
  --text: #1c1f23;
  --muted: #6b7280;
  --border: #d9dee5;
  --accent: #b0f768;
  --accent-hover: #9ee14f;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  --radius: 16px;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

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

nav {
  background: #111;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 600;
}

.page-wrap {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 18px 14px 28px;
}

.order-pickup {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 16px;
}

.order-pickup h2 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  line-height: 1.2;
}

.order-pickup h3 {
  margin: 20px 0 10px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.intro-text {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.pickup-form {
  display: grid;
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
  font-weight: 700;
}

input,
select,
textarea,
button {
  width: 100%;
  font: inherit;
}

input,
select,
textarea {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #8fcf4a;
  box-shadow: 0 0 0 4px rgba(176, 247, 104, 0.2);
}

input[readonly] {
  background: #f7f9fb;
}

.field-group {
  display: grid;
  gap: 12px;
}

.hint {
  margin: -4px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

button,
.submit-btn {
  min-height: 52px;
  padding: 12px 18px;
  border: 0;
  border-radius: 14px;
  background: var(--accent);
  color: #111;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.15s ease;
}

button:hover,
.submit-btn:hover {
  background: var(--accent-hover);
}

button:active,
.submit-btn:active {
  transform: translateY(1px);
}

.footer {
  padding: 22px 14px 30px;
}

.footer-content {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.company-name {
  margin: 0 0 8px;
  color: var(--text);
  font-weight: 700;
}

.card-note {
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f7fbe8;
  color: #3b4b1d;
  font-size: 0.92rem;
}

.hidden-fields {
  display: none;
}


@media (min-width: 700px) {
  .page-wrap {
    padding: 28px 20px 36px;
  }

  .order-pickup {
    padding: 28px;
  }

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}


