.gvp-page {
  --gvp-text: #1f2937;
  --gvp-muted: #6b7280;
  --gvp-border: rgba(194, 156, 118, 0.28);
  --gvp-accent: #b77941;
  color: var(--gvp-text);
}

.gvp-page [hidden] {
  display: none !important;
}

.gvp-hero {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  padding: 1rem 0 0.5rem;
  text-align: center;
  background: #fff;
}

.gvp-kicker {
  display: inline-block;
  margin: 0 0 0.65rem;
  color: var(--gvp-accent);
  font-weight: 700;
  font-size: 1.15rem;
}

.gvp-hero h1,
.gvp-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.gvp-hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.05;
}

.gvp-hero p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--gvp-muted);
  font-size: 1.05rem;
}

.gvp-form {
  display: grid;
  gap: 1.75rem;
}

.gvp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.gvp-panel {
  padding: 1.6rem;
  border: 1px solid var(--gvp-border);
  border-radius: 24px;
  background: #fff;
}

.gvp-panel--full {
  grid-column: 1 / -1;
}

.gvp-panel__header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.gvp-panel__step {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: #f3e7da;
  color: #8f5b2f;
  font-weight: 700;
}

.gvp-panel__header p {
  margin: 0.2rem 0 0;
  color: var(--gvp-muted);
}

.gvp-amounts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.gvp-choice {
  position: relative;
  display: block;
  padding: 1.1rem;
  border: 1px solid var(--gvp-border);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  text-align: center;
}

.gvp-choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.gvp-choice span {
  font-size: 1.25rem;
  font-weight: 700;
}

.gvp-choice:has(input:checked),
.gvp-delivery__item:has(input:checked) {
  border-color: #8f5b2f;
  box-shadow: 0 10px 26px rgba(143, 91, 47, 0.12);
}

.gvp-custom-amount,
.gvp-schedule {
  display: none;
}

.gvp-panel:has(input[name="selected_amount"][value="custom"]:checked) .gvp-custom-amount {
  display: block;
}

.gvp-panel--full:has(input[name="delivery_method"][value="email"]:checked) .gvp-schedule {
  display: block;
}

.gvp-label {
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.gvp-delivery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gvp-delivery__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 170px;
  padding: 1.35rem 1rem;
  border: 1px solid var(--gvp-border);
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  text-align: center;
}

.gvp-delivery__item input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.gvp-delivery__content strong {
  display: block;
  font-size: 1.08rem;
}

.gvp-delivery__content small {
  display: block;
  margin-top: 0.5rem;
  color: var(--gvp-muted);
  line-height: 1.5;
}

.gvp-delivery__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
}

.gvp-delivery__icon img {
  display: block;
  width: 44px;
  height: auto;
  max-width: none;
  max-height: none;
}

.gvp-schedule {
  margin-top: 1.4rem;
  padding: 1.2rem;
  border-radius: 18px;
  background: #faf6f1;
}

.gvp-schedule__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gvp-time-selects {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
}

.gvp-time-separator {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gvp-muted);
}

.gvp-submit-wrap {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0 0;
  background: transparent;
}

.gvp-submit {
  min-width: 240px;
  padding: 1rem 1.6rem;
  border: 0;
  border-radius: 999px;
  background: #1f2937;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .gvp-grid,
  .gvp-delivery,
  .gvp-schedule__grid {
    grid-template-columns: 1fr;
  }
}
