/* ============================================
   THE ALLEY OS — V4 Premium Modern Theme
   Clean, high-end entertainment venue
   ============================================ */

/* ---- Design Tokens ---- */
:root {
  --white: #FFFFFF;
  --charcoal: #2D2D2D;
  --charcoal-light: #3D3D3D;
  --violet: #7C3AED;
  --violet-light: #8B5CF6;
  --violet-dark: #6D28D9;
  --violet-glow: rgba(124, 58, 237, 0.15);
  --violet-glow-strong: rgba(124, 58, 237, 0.3);
  --coral: #FF6B6B;
  --coral-light: #FF8A8A;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden {
  display: none !important;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-accent {
  color: var(--violet);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  gap: 8px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--violet);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--violet-glow-strong);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--violet);
  color: var(--violet);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid rgba(45, 45, 45, 0.2);
}

.btn-ghost:hover {
  border-color: var(--charcoal);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 17px;
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
  color: var(--charcoal);
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---- Scroll Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   DEMO BANNER
   ============================================ */
:root {
  --demo-banner-h: 40px;
}
.demo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  min-height: var(--demo-banner-h);
  background: #7C3AED;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font: 500 14px/1.4 'Plus Jakarta Sans', system-ui, sans-serif;
  box-sizing: border-box;
}
.demo-banner a {
  color: #fff;
  text-decoration: underline;
  margin-left: 6px;
}
body {
  padding-top: var(--demo-banner-h);
}
@media (max-width: 640px) {
  :root { --demo-banner-h: 56px; }
  .demo-banner { font-size: 12px; padding: 8px 12px; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: var(--demo-banner-h);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--gray-200);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  text-decoration: none;
  font-weight: 800;
}

.logo-the {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.logo-alley {
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.logo-os {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--violet);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
}

.nav-menu a:hover {
  color: var(--charcoal);
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--charcoal);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--violet) !important;
  color: var(--white) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: var(--gray-50);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--violet-glow);
  top: -200px;
  right: -100px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 107, 0.08);
  bottom: -100px;
  left: -100px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--violet);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.title-accent {
  color: var(--violet);
}

.hero-tagline {
  font-size: 18px;
  color: var(--gray-500);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 80px;
  z-index: 1;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gray-300), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   ACTIVITIES
   ============================================ */
.activities {
  padding: 120px 0;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.activity-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.activity-card:hover {
  border-color: var(--violet-glow-strong);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.activity-card.activity-featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.activity-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}

.activity-featured .activity-card-img {
  aspect-ratio: auto;
  min-height: 400px;
}

.activity-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.activity-card:hover .activity-card-img img {
  transform: scale(1.05);
}

.activity-content {
  padding: 32px;
}

.activity-featured .activity-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.activity-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--violet);
  background: var(--violet-glow);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.badge-bar {
  color: var(--coral);
  background: rgba(255, 107, 107, 0.1);
}

.activity-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.activity-content p {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.activity-features {
  list-style: none;
  margin-bottom: 20px;
}

.activity-features li {
  font-size: 14px;
  color: var(--gray-600);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.activity-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}

/* ============================================
   ROCK-N-BOWL
   ============================================ */
.rock-n-bowl {
  padding: 120px 0;
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.rnb-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--violet-glow-strong) 0%, transparent 70%);
  pointer-events: none;
}

.rnb-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.rnb-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--violet-light);
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.rnb-title {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 20px;
}

.rnb-subtitle {
  font-size: 18px;
  color: var(--gray-400);
  margin-bottom: 40px;
}

.rnb-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.rnb-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-300);
  font-size: 14px;
  font-weight: 500;
}

.rnb-feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
}

.rnb-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.rnb-cta .btn-primary {
  background: var(--violet);
}

.rnb-cta .btn-primary:hover {
  background: var(--violet-light);
  box-shadow: 0 8px 24px var(--violet-glow-strong);
}

.rnb-time {
  font-size: 14px;
  color: var(--gray-500);
}

/* ============================================
   BOOKING
   ============================================ */
.booking-section {
  padding: 120px 0;
  background: var(--gray-50);
}

.booking-widget {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

/* Step Indicator */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  background: var(--gray-100);
  color: var(--gray-400);
  border: 2px solid var(--gray-200);
  transition: all var(--transition);
}

.step.active .step-number {
  background: var(--violet);
  color: var(--white);
  border-color: var(--violet);
}

.step.completed .step-number {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.step.active .step-label {
  color: var(--violet);
}

.step.completed .step-label {
  color: var(--charcoal);
}

.step-connector {
  width: 60px;
  height: 2px;
  background: var(--gray-200);
  margin: 0 8px;
  margin-bottom: 24px;
  transition: background var(--transition);
}

.step-connector.active {
  background: var(--charcoal);
}

/* Booking Step Content */
.booking-step-content h3 {
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
}

/* Activity Selector */
.activity-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.activity-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 20px 24px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  text-align: left;
}

.activity-option:hover {
  border-color: var(--gray-300);
}

.activity-option.selected {
  border-color: var(--violet);
  background: var(--violet-glow);
}

.ao-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
}

.ao-price {
  font-size: 13px;
  color: var(--gray-500);
}

/* Calendar & Time */
.datetime-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cal-nav {
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--charcoal);
  font-family: var(--font);
}

.cal-nav:hover {
  background: var(--gray-100);
}

.cal-month {
  font-size: 16px;
  font-weight: 700;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day-header {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  text-align: center;
  padding: 8px 0;
}

.cal-days {
  display: contents;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.cal-day:hover:not(.disabled):not(.empty) {
  background: var(--gray-100);
}

.cal-day.today {
  color: var(--violet);
  font-weight: 700;
}

.cal-day.selected {
  background: var(--violet) !important;
  color: var(--white);
}

.cal-day.disabled {
  color: var(--gray-300);
  cursor: default;
}

.cal-day.empty {
  cursor: default;
}

/* Time Picker */
.time-picker h4 {
  font-size: 16px;
  margin-bottom: 16px;
}

.time-slots {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 8px;
}

.time-slots::-webkit-scrollbar {
  width: 4px;
}

.time-slots::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 4px;
}

.time-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  transition: all var(--transition);
}

.time-slot:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
}

.time-slot.selected {
  border-color: var(--violet);
  background: var(--violet-glow);
}

.slot-avail {
  font-size: 12px;
  color: var(--gray-400);
}

.slot-avail.limited {
  color: var(--coral);
  font-weight: 600;
}

.time-hint {
  color: var(--gray-400);
  font-size: 14px;
  text-align: center;
  padding: 40px 0;
}

/* Details Form */
.details-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.form-input {
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  transition: border-color var(--transition);
  outline: none;
  background: var(--white);
}

.form-input:focus {
  border-color: var(--violet);
}

.form-input::placeholder {
  color: var(--gray-400);
}

/* Quantity Selector */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 16px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--charcoal);
  font-family: var(--font);
}

.qty-btn:hover {
  border-color: var(--violet);
  color: var(--violet);
}

.qty-value {
  font-size: 20px;
  font-weight: 700;
  min-width: 32px;
  text-align: center;
}

.capacity-note {
  font-size: 12px;
  color: var(--gray-400);
}

/* Duration */
.duration-options {
  display: flex;
  gap: 8px;
}

.duration-btn {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--charcoal);
}

.duration-btn:hover {
  border-color: var(--gray-300);
}

.duration-btn.active {
  border-color: var(--violet);
  background: var(--violet-glow);
  color: var(--violet);
}

/* Add-Ons */
.addons-section h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.addon-card {
  cursor: pointer;
}

.addon-card input {
  display: none;
}

.addon-inner {
  padding: 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.addon-card:hover .addon-inner {
  border-color: var(--gray-300);
}

.addon-card input:checked + .addon-inner {
  border-color: var(--violet);
  background: var(--violet-glow);
}

.addon-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
}

.addon-desc {
  font-size: 12px;
  color: var(--gray-500);
}

.addon-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--violet);
}

/* Summary */
.summary-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.summary-header {
  padding: 20px 24px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.summary-header h4 {
  font-size: 16px;
}

.summary-details {
  padding: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.summary-row span:first-child {
  color: var(--gray-500);
}

.summary-row span:last-child {
  font-weight: 600;
}

.summary-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 12px 0;
}

.summary-total span:last-child {
  font-size: 20px;
  color: var(--violet);
  font-weight: 800;
}

.summary-contact {
  padding: 20px 24px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.summary-contact p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 2px 0;
}

/* Booking Navigation */
.booking-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.price-estimate {
  text-align: center;
}

.price-label {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.price-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--charcoal);
}

/* Confirmation */
.confirmation-screen {
  text-align: center;
  padding: 40px 0;
}

.confirm-icon {
  color: var(--violet);
  margin-bottom: 24px;
}

.confirm-icon svg {
  width: 80px;
  height: 80px;
}

.confirmation-screen h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.confirmation-screen p {
  color: var(--gray-500);
  margin-bottom: 8px;
}

.confirm-id {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 24px !important;
}

/* ============================================
   PARTIES
   ============================================ */
.parties {
  padding: 120px 0;
}

.party-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.party-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.party-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.party-card.party-featured {
  border-color: var(--violet);
  box-shadow: 0 0 0 1px var(--violet);
}

.party-card-img {
  margin: -32px -32px 24px;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-100);
}

.party-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.party-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.badge-premium {
  color: var(--violet);
  background: var(--violet-glow);
}

.party-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.party-price {
  margin-bottom: 20px;
}

.price-from {
  font-size: 13px;
  color: var(--gray-400);
}

.price-amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--charcoal);
}

.party-featured .price-amount {
  color: var(--violet);
}

.price-per {
  font-size: 13px;
  color: var(--gray-500);
}

.party-includes {
  list-style: none;
  margin-bottom: 24px;
}

.party-includes li {
  font-size: 14px;
  color: var(--gray-600);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
  padding-left: 20px;
  position: relative;
}

.party-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-300);
}

.party-featured .party-includes li::before {
  background: var(--violet);
}

.party-note {
  text-align: center;
  padding: 32px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}

.party-note p {
  font-size: 15px;
  color: var(--gray-600);
}

.party-note a {
  color: var(--violet);
  font-weight: 600;
}

.member-discount {
  color: var(--violet) !important;
  font-weight: 600;
  margin-top: 8px;
}

/* ============================================
   MEMBERSHIP
   ============================================ */
.membership {
  padding: 120px 0;
  background: var(--gray-900);
}

.membership-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

.membership .section-tag {
  color: var(--violet-light);
}

.membership .section-title {
  color: var(--white);
}

.membership-desc {
  color: var(--gray-400);
  font-size: 17px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.membership-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--violet-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-light);
}

.benefit-check svg {
  width: 16px;
  height: 16px;
}

.benefit strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 2px;
}

.benefit span {
  font-size: 13px;
  color: var(--gray-500);
}

/* CTA Card */
.membership-cta-card {
  position: relative;
}

.cta-card-inner {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.cta-card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--violet);
  background: var(--violet-glow);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.cta-card-inner h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

.cta-price {
  margin-bottom: 20px;
}

.cta-price-amount {
  font-size: 56px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.04em;
}

.cta-price-per {
  font-size: 18px;
  color: var(--gray-400);
}

.cta-card-inner > p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.6;
}

.cta-card-inner .btn-primary {
  background: var(--violet);
  margin-bottom: 16px;
}

.cta-card-inner .btn-primary:hover {
  background: var(--violet-dark);
}

.cta-note {
  font-size: 13px;
  color: var(--gray-400);
}

/* ============================================
   EVENTS
   ============================================ */
.events {
  padding: 120px 0;
  background: var(--gray-50);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.event-card {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.event-card:hover {
  box-shadow: var(--shadow-md);
}

.event-card.event-highlight {
  border-color: var(--violet);
  background: var(--violet-glow);
}

.event-date {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
}

.event-day {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.event-daynum {
  display: block;
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
}

.event-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.event-info p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 8px;
}

.event-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 3px 10px;
  border-radius: 100px;
}

.tag-special {
  color: var(--violet);
  background: var(--violet-glow);
}

/* ============================================
   MENU
   ============================================ */
.menu-section {
  padding: 120px 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.menu-category h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.menu-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--coral);
  margin-bottom: 20px;
}

.menu-items {
  display: flex;
  flex-direction: column;
}

.menu-item {
  display: flex;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.item-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
}

.item-dots {
  flex: 1;
  margin: 0 12px;
  border-bottom: 1px dotted var(--gray-300);
  min-width: 40px;
  position: relative;
  top: -4px;
}

.item-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  white-space: nowrap;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: 120px 0;
  background: var(--gray-50);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-quote {
  font-size: 72px;
  font-weight: 800;
  color: var(--violet-glow-strong);
  line-height: 0.5;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.review-stars {
  margin-bottom: 16px;
}

.review-stars span {
  color: var(--coral);
  font-size: 16px;
}

.review-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-500);
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 14px;
}

.review-author span {
  font-size: 13px;
  color: var(--gray-400);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 120px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 45, 45, 0);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: background var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(45, 45, 45, 0.4);
}

.gallery-overlay span {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.gallery-item:hover .gallery-overlay span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--violet-glow);
  color: var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

.contact-item a {
  color: var(--violet);
}

/* Hours */
.hours-table h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.hours-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.hours-btn {
  padding: 10px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--gray-600);
}

.hours-btn.active {
  border-color: var(--violet);
  background: var(--violet-glow);
  color: var(--violet);
}

.hours-content {
  display: flex;
  flex-direction: column;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}

.hours-row span:first-child {
  color: var(--gray-600);
}

.hours-row span:last-child {
  font-weight: 600;
}

/* Map */
.contact-map {
  position: sticky;
  top: 100px;
}

.map-placeholder {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-inner {
  text-align: center;
  color: var(--gray-400);
}

.map-inner svg {
  color: var(--violet);
  margin-bottom: 16px;
}

.map-inner p {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 40px;
  background: var(--gray-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
}

.footer .nav-logo .logo-the,
.footer .nav-logo .logo-os {
  color: var(--gray-500);
}

.footer .nav-logo .logo-alley {
  color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--gray-500);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-contact a {
  color: var(--gray-500);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--violet-light);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gray-800);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--violet);
  color: var(--white);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-600);
}

.footer-credit a {
  color: var(--gray-500);
  transition: color var(--transition);
}

.footer-credit a:hover {
  color: var(--violet-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activity-card.activity-featured {
    grid-column: span 2;
  }

  .membership-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 0;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center !important;
  }

  .hero-title {
    font-size: clamp(40px, 12vw, 64px);
  }

  .hero-stats {
    gap: 24px;
    margin-top: 48px;
  }

  .stat-number {
    font-size: 28px;
  }

  .activities-grid {
    grid-template-columns: 1fr;
  }

  .activity-card.activity-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .activity-featured .activity-card-img {
    min-height: 240px;
  }

  .party-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .booking-widget {
    padding: 24px;
  }

  .activity-selector {
    grid-template-columns: 1fr;
  }

  .datetime-picker {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }

  .booking-steps {
    gap: 0;
    justify-content: space-between;
  }

  .step-connector {
    width: 24px;
  }

  .step-label {
    display: none;
  }

  .rnb-title {
    font-size: clamp(36px, 10vw, 56px);
  }

  .rnb-features {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 20px 60px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ============================================
   Booking Nav Right Group
   ============================================ */
.booking-nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--gray-300);
  color: var(--gray-500);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-ghost:hover {
  background: var(--gray-100);
  color: var(--gray-700);
}

/* ============================================
   Add-Ons Step
   ============================================ */
.addons-step-header { text-align: center; margin-bottom: 1.75rem; }
.addons-step-subtitle { color: var(--gray-500); font-size: 0.95rem; max-width: 480px; margin: 0 auto; }
.addons-container { display: flex; flex-direction: column; gap: 1.5rem; }

.addon-category { background: var(--gray-50); border-radius: var(--radius-md); border: 1px solid var(--gray-200); overflow: hidden; }
.addon-category-featured { background: linear-gradient(135deg,#fff9eb,#fff3cd); border-color: #f59e0b; }
.addon-category-header { display: flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1.1rem; background: var(--gray-100); border-bottom: 1px solid var(--gray-200); }
.addon-category-featured .addon-category-header { background: rgba(245,158,11,0.1); border-bottom-color: rgba(245,158,11,0.2); }
.addon-category-emoji { font-size: 1.2rem; line-height: 1; }
.addon-category-title { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--charcoal); margin: 0; }
.addon-badge-best { margin-left: auto; background: #FFCB05; color: #1a1a1a; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.2rem 0.6rem; border-radius: 999px; }

.addon-items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.addon-items-packages { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.addon-item-card { padding: 0.85rem 1rem; border-right: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); display: flex; flex-direction: column; gap: 0.6rem; transition: background 0.2s; background: var(--white); }
.addon-item-card:hover { background: var(--gray-50); }
.addon-category-featured .addon-item-card { background: rgba(255,255,255,0.7); }
.addon-item-card-featured { border-left: 3px solid #FFCB05; background: rgba(255,253,235,0.6) !important; }
.addon-item-body { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; }
.addon-item-info { display: flex; flex-direction: column; gap: 0.2rem; flex: 1; }
.addon-item-name { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); line-height: 1.3; }
.addon-item-desc { font-size: 0.78rem; color: var(--gray-500); line-height: 1.4; }
.addon-item-price { font-size: 0.82rem; font-weight: 700; color: #059669; white-space: nowrap; flex-shrink: 0; }
.addon-item-controls { display: flex; align-items: center; justify-content: flex-end; }

.addon-qty-control { display: flex; align-items: center; gap: 0.5rem; background: var(--gray-100); border-radius: 999px; padding: 0.2rem 0.5rem; }
.addon-qty-btn { width: 26px; height: 26px; border-radius: 50%; border: none; background: var(--gray-200); color: var(--charcoal); font-size: 1rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, opacity 0.2s; line-height: 1; padding: 0; }
.addon-qty-btn:hover:not(:disabled) { background: var(--violet); color: #fff; }
.addon-qty-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.addon-qty-val { min-width: 20px; text-align: center; font-size: 0.9rem; font-weight: 700; color: var(--charcoal); }

.addon-toggle { display: flex; align-items: center; gap: 0.4rem; cursor: pointer; }
.addon-toggle input[type="checkbox"] { display: none; }
.addon-toggle-label { font-size: 0.8rem; font-weight: 600; color: var(--gray-400); background: var(--gray-100); padding: 0.3rem 0.75rem; border-radius: 999px; border: 1px solid var(--gray-300); transition: all 0.2s; cursor: pointer; }
.addon-toggle input:checked ~ .addon-toggle-label { background: #10b981; color: #fff; border-color: #10b981; }

.addons-running-total { margin-top: 0.75rem; text-align: center; font-size: 0.9rem; font-weight: 600; color: #059669; padding: 0.6rem 1rem; background: rgba(5,150,105,0.07); border-radius: var(--radius-md); border: 1px solid rgba(5,150,105,0.2); }
.summary-addon-line { display: block; font-size: 0.85rem; line-height: 1.6; }
