* ============================================
   BIG GUY SHOOTOUT 2026 — CF7 FORM STYLES
   Paste into: Appearance → Customize → Additional CSS
   ============================================ */

:root {
  --bgs-green-deep: #1a3a2a;
  --bgs-green-mid: #2d5a3d;
  --bgs-green-light: #4a8c5c;
  --bgs-gold: #c9973a;
  --bgs-gold-light: #f0d080;
  --bgs-cream: #faf7f0;
  --bgs-white: #ffffff;
  --bgs-text: #1a1a1a;
  --bgs-text-mid: #4a4a4a;
  --bgs-text-muted: #7a7a7a;
  --bgs-border: #d8d0c0;
  --bgs-error: #c0392b;
  --bgs-radius: 6px;
  --bgs-radius-lg: 12px;
}

/* ── HERO ── */
.bgs-hero {
  background: var(--bgs-green-deep);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.5rem 3rem;
}
.bgs-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bgs-gold-light);
  margin-bottom: 1rem;
}
.bgs-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.4rem;
}
.bgs-hero-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-style: italic;
  color: var(--bgs-gold);
  margin-bottom: 1.25rem;
}
.bgs-hero-divider {
  width: 60px;
  height: 2px;
  background: var(--bgs-gold);
  margin: 0 auto 1.25rem;
}
.bgs-hero-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}
.bgs-hero-impact {
  display: inline-block;
  background: rgba(201,151,58,0.15);
  border: 1px solid rgba(201,151,58,0.35);
  border-radius: var(--bgs-radius);
  padding: 0.6rem 1.25rem;
  font-size: 0.84rem;
  color: var(--bgs-gold-light);
  line-height: 1.55;
}

/* ── FORM WRAPPER ── */
.bgs-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
  background: var(--bgs-cream);
}

/* ── SECTIONS ── */
.bgs-section {
  background: var(--bgs-white);
  border: 1px solid var(--bgs-border);
  border-radius: var(--bgs-radius-lg);
  padding: 1.6rem;
  margin-bottom: 1.1rem;
}
.bgs-section-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bgs-green-mid);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bgs-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bgs-border);
}
.bgs-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.72rem;
  color: var(--bgs-text-muted);
}

/* ── REGISTRATION CARDS ── */
.bgs-reg-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.bgs-reg-card {
  border: 1.5px solid var(--bgs-border);
  border-radius: var(--bgs-radius);
  padding: 1rem;
  cursor: pointer;
  transition: border-color 0.15s;
  position: relative;
  display: block;
}
.bgs-reg-card:hover { border-color: var(--bgs-green-light); }
.bgs-reg-card.bgs-selected { border-color: var(--bgs-green-mid); background: #f0f6f2; }
.bgs-radio { position: absolute; opacity: 0; width: 0; height: 0; }
.bgs-card-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--bgs-green-deep);
  line-height: 1;
}
.bgs-card-label { font-size: 0.84rem; font-weight: 600; color: var(--bgs-text-mid); margin-top: 0.3rem; }
.bgs-card-note { font-size: 0.73rem; color: var(--bgs-text-muted); margin-top: 0.2rem; }
.bgs-check-circle {
  position: absolute;
  top: 0.6rem; right: 0.6rem;
  width: 17px; height: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--bgs-border);
  transition: all 0.15s;
}
.bgs-selected .bgs-check-circle {
  background: var(--bgs-green-mid);
  border-color: var(--bgs-green-mid);
}
.bgs-selected .bgs-check-circle::after {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  margin: 4px auto 0;
}

/* ── FIELDS ── */
.bgs-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-bottom: 0.85rem; }
.bgs-field { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.85rem; }
.bgs-field:last-child { margin-bottom: 0; }
.bgs-field label { font-size: 0.76rem; font-weight: 600; color: var(--bgs-text-mid); }

.bgs-section input[type="text"],
.bgs-section input[type="email"],
.bgs-section input[type="tel"],
.bgs-section select,
.bgs-section textarea {
  font-size: 0.9rem;
  color: var(--bgs-text);
  background: var(--bgs-white);
  border: 1px solid var(--bgs-border);
  border-radius: var(--bgs-radius);
  padding: 0.52rem 0.72rem;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
}
.bgs-section input:focus,
.bgs-section select:focus,
.bgs-section textarea:focus {
  outline: none;
  border-color: var(--bgs-green-mid);
  box-shadow: 0 0 0 3px rgba(45,90,61,0.1);
}
.bgs-section textarea { min-height: 80px; resize: vertical; }
.bgs-section select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a4a4a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  padding-right: 2rem;
}

/* ── PLAYER ROWS ── */
.bgs-player-header {
  display: grid;
  grid-template-columns: 1.8fr 0.8fr 0.9fr;
  gap: 0.6rem;
  padding-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bgs-text-muted);
}
.bgs-player-row {
  display: grid;
  grid-template-columns: 1.8fr 0.8fr 0.9fr;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  align-items: center;
}
.bgs-player-name { display: flex; align-items: center; gap: 0.45rem; }
.bgs-player-name input { flex: 1; }
.bgs-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--bgs-green-deep);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  flex-shrink: 0;
}
.bgs-num-alt { background: var(--bgs-green-light); }

/* ── SPONSORSHIP TIERS ── */
.bgs-tiers { display: flex; flex-direction: column; gap: 0.55rem; }
.bgs-tier {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1.5px solid var(--bgs-border);
  border-radius: var(--bgs-radius);
  padding: 0.75rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}
.bgs-tier-radio { position: absolute; opacity: 0; width: 0; }
.bgs-tier:hover { border-color: var(--bgs-gold); }
.bgs-tier.bgs-selected { border-color: var(--bgs-gold); background: #fdf8ee; }
.bgs-tier-icon { font-size: 1.35rem; flex-shrink: 0; width: 30px; text-align: center; }
.bgs-tier-info { flex: 1; }
.bgs-tier-title { font-weight: 600; font-size: 0.92rem; color: var(--bgs-text); }
.bgs-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(201,151,58,0.15);
  color: #8a6020;
  border-radius: 4px;
  padding: 1px 6px;
  margin-left: 6px;
}
.bgs-tier-desc { font-size: 0.76rem; color: var(--bgs-text-muted); margin-top: 0.1rem; }
.bgs-tier-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bgs-green-deep);
  flex-shrink: 0;
}
.bgs-tier-dot {
  width: 17px; height: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--bgs-border);
  flex-shrink: 0;
  transition: all 0.15s;
}
.bgs-tier.bgs-selected .bgs-tier-dot {
  background: var(--bgs-gold);
  border-color: var(--bgs-gold);
}
.bgs-tier.bgs-selected .bgs-tier-dot::after {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  margin: 4px auto 0;
}
.bgs-clear-tier {
  font-size: 0.8rem;
  color: var(--bgs-text-muted);
  text-align: center;
  margin-top: 0.4rem;
  cursor: pointer;
  text-decoration: underline;
}
.bgs-clear-tier:hover { color: var(--bgs-text-mid); }

/* ── PAYMENT ── */
.bgs-payment-box {
  background: #f0f6f2;
  border: 1px solid #b8d8c0;
  border-radius: var(--bgs-radius);
  padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
}
.bgs-payment-title {
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--bgs-green-deep);
  margin-bottom: 0.4rem;
}
.bgs-payment-box p { font-size: 0.84rem; color: var(--bgs-text-mid); line-height: 1.6; }
.bgs-zelle {
  display: inline-block;
  background: #6B35CA;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 1px 7px;
  letter-spacing: 0.05em;
}
.bgs-pending-note {
  background: #fdf8ee;
  border: 1px solid #e8d08a;
  border-radius: var(--bgs-radius);
  padding: 0.75rem 1rem;
  font-size: 0.81rem;
  color: #6a4e10;
  line-height: 1.5;
}

/* ── SUMMARY ── */
.bgs-summary-line {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.86rem;
  color: var(--bgs-text-mid);
}
.bgs-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 0.7rem;
  border-top: 2px solid var(--bgs-green-deep);
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bgs-green-deep);
}
.bgs-total-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

/* ── SUBMIT BUTTON ── */
.bgs-submit,
input.bgs-submit,
.wpcf7 input.bgs-submit {
  width: 100%;
  padding: 1rem;
  background: var(--bgs-green-deep) !important;
  color: #fff !important;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none !important;
  border-radius: var(--bgs-radius) !important;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 0.25rem;
}
.bgs-submit:hover { background: var(--bgs-green-mid) !important; }

/* ── NOTES ── */
.bgs-note {
  font-size: 0.76rem;
  color: var(--bgs-text-muted);
  margin-top: 0.4rem;
  line-height: 1.5;
}

/* ── CF7 OVERRIDES ── */
.wpcf7-form-control-wrap { display: block; width: 100%; }
.wpcf7-not-valid-tip { font-size: 0.75rem; color: var(--bgs-error); margin-top: 0.2rem; }
.wpcf7-response-output {
  border-radius: var(--bgs-radius);
  font-size: 0.85rem;
  padding: 0.75rem 1rem !important;
  margin: 0.5rem 0 0 !important;
  border-width: 1px !important;
}
.wpcf7-mail-sent-ok {
  background: #f0f6f2 !important;
  border-color: #b8d8c0 !important;
  color: var(--bgs-green-deep) !important;
}
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  background: #fdf0f0 !important;
  border-color: #f5b8b8 !important;
  color: var(--bgs-error) !important;
}

/* ── FOOTER NOTE ── */
.bgs-footer-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--bgs-text-muted);
  margin-top: 1.1rem;
  line-height: 1.6;
}
.bgs-footer-note a { color: var(--bgs-green-mid); text-decoration: none; }
.bgs-footer-note a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 560px) {
  .bgs-grid-2 { grid-template-columns: 1fr; }
  .bgs-reg-cards { grid-template-columns: 1fr; }
  .bgs-player-header,
  .bgs-player-row { grid-template-columns: 1fr 0.7fr; }
  .bgs-player-header span:last-child,
  .bgs-player-row select { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
