/* =====================================================
   BAR-PAYMENT.CSS – BAR CALCULATOR, PAYMENT BUTTONS, INCLUDED CALLOUTS

   Purpose:
   - Styles specific to the bar estimator tool
   - Tab styling, result grids, and responsive adjustments
   - Payment button design and hover effects
   - Included callouts for packages and highlights

   Usage:
   - Include after global.css and components.css
   - Keeps calculator & payment UI consistent across pages

   Sections:
   1. Bar estimator
   2. Payment buttons
   3. Included callouts
===================================================== */

#bar-estimator .tab-group { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
#bar-estimator .tab-btn { flex: 1; min-width: 70px; padding: 12px 10px; font-size: 0.95rem; letter-spacing: 0.3px; transition: all 0.25s ease; }
#bar-estimator .tab-btn.active { background: linear-gradient(135deg, #b8860b, #d4af37); color: #fff; font-weight: 600; box-shadow: 0 4px 10px rgba(184,134,11,0.3); transform: translateY(-2px); border-color: #b8860b; }
#bar-estimator .tab-btn:hover { background: #fff7e6; border-color: #C19A6B; transform: translateY(-2px); }

#bar-estimator .result-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 15px; }
#bar-estimator .result-grid div { font-size: 0.95rem; }
#bar-estimator .estimator-results { margin-top: 25px; }
#bar-estimator .result-card { background: #fdfbf7; border-radius: 12px; padding: 20px; text-align: center; }
#bar-estimator .result-highlight { font-size: 1.8rem; font-weight: 600; margin: 10px 0 20px; }
#bar-estimator .result-note { font-size: 0.85rem; color: #777; }
#bar-estimator .result-subtext { font-size: 1rem; color: #555; margin: 5px 0 15px; font-weight: 500; text-align: center; }

/* PAYMENT BUTTONS */
.payment-section { text-align: center; margin: 40px auto 20px; padding: 20px 20px; max-width: 1000px; }
.payment-note { text-align: left; }
.pay-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 34px;
  background: linear-gradient(135deg, #2e7d32, #388e3c);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.pay-btn:hover { transform: translateY(-2px); }

/* INCLUDED CALLOUT */
.included-callout { margin-top: 20px; padding: 18px 20px; background: #f8f6f2; border-radius: 10px; }
.included-callout.highlight { border: 1px solid #e5e1d8; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.included-eyebrow { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: #888; margin-bottom: 6px; }
.included-title { font-size: 18px; margin-bottom: 10px; }
.included-list { padding-left: 18px; margin-bottom: 10px; }
.included-list li { margin-bottom: 6px; }
.included-value { font-size: 14px; color: #555; margin-bottom: 10px; }
.included-link a { font-weight: bold; text-decoration: none; }
.included-link a:hover { color: #b8860b; }