/* 100 Entrepreneurs - COMPLETE FINAL CSS */

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #FF5100;
  --secondary: #272C4D;
  --dark: #2C2E3B;
  --light: #AFB5CA;

  --radius: 18px;
  --radius2: 22px;

  --shadow: 0 18px 48px rgba(0,0,0,0.30);
  --shadow2: 0 10px 26px rgba(0,0,0,0.22);

  --font-en: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

html[data-theme="light"] {
  --bg: #f3f4f7;
  --surface: #ffffff;
  --surface2: #f7f8fb;
  --border: rgba(39,44,77,0.14);
  --text: #14172b;
  --muted: rgba(20,23,43,0.70);
  --muted2: rgba(20,23,43,0.55);
  --slot: rgba(39,44,77,0.05);
  --slotHover: rgba(39,44,77,0.08);
  --input: rgba(39,44,77,0.06);
  --ctaInk: #0f0f17;
  --glow: rgba(255,81,0,0.28);
  --unavail: rgba(255,77,94,0.45);
}

html[data-theme="dark"] {
  --bg: var(--secondary);
  --surface: rgba(255,255,255,0.06);
  --surface2: rgba(255,255,255,0.09);
  --border: rgba(255,255,255,0.12);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.72);
  --muted2: rgba(255,255,255,0.55);
  --slot: rgba(255,255,255,0.05);
  --slotHover: rgba(255,255,255,0.08);
  --input: rgba(0,0,0,0.18);
  --ctaInk: #160a05;
  --glow: rgba(255,81,0,0.35);
  --unavail: rgba(255,77,94,0.55);
}

* { 
  box-sizing: border-box; 
}

html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-en);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: color-mix(in srgb, var(--bg) 92%, #000 8%);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--surface);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.brand-text {
  min-width: 0;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-title {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chip {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
  font-size: 14px;
}

.chip:active { 
  transform: translateY(1px); 
}

.chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--muted2);
  flex-shrink: 0;
}

.chip-dot-orange { 
  background: var(--primary); 
}

.page {
  width: min(980px, 92vw);
  margin: 0 auto;
  padding-bottom: 84px;
  max-width: 100%;
}

.hero {
  position: relative;
  padding: 34px 0 22px;
}

.hero-bg {
  position: absolute;
  inset: -140px -120px auto -120px;
  height: 420px;
  pointer-events: none;
  overflow: hidden;
  width: calc(100% + 240px);
  left: -120px;
}

.ring {
  position: absolute;
  border-radius: 999px;
  border: 2px solid color-mix(in srgb, var(--primary) 35%, transparent 65%);
  filter: drop-shadow(0 14px 32px rgba(0,0,0,0.18));
  animation: float 6s ease-in-out infinite;
  opacity: 0.55;
}

.ring-a { 
  width: 420px; 
  height: 420px; 
  left: -120px; 
  top: 0; 
}

.ring-b { 
  width: 260px; 
  height: 260px; 
  right: -70px; 
  top: 60px; 
  animation-delay: 0.7s; 
  opacity: 0.45; 
}

.ring-c { 
  width: 160px; 
  height: 160px; 
  left: 55%; 
  top: 170px; 
  animation-delay: 1.2s; 
  opacity: 0.35; 
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.hero-content {
  position: relative;
  border-radius: var(--radius2);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--surface) 82%, transparent 18%),
    color-mix(in srgb, var(--surface) 65%, transparent 35%)
  );
  border: 1px solid var(--border);
  padding: 18px 16px;
  box-shadow: var(--shadow2);
}

.h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 7vw, 46px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0.2px;
}

.lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
  max-width: 52ch;
}

.hero-cta {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.cta-note {
  color: var(--muted2);
  font-size: 12px;
}

.booking { 
  margin-top: 18px; 
}

.section-head { 
  margin-bottom: 12px; 
}

.h2 { 
  margin: 0 0 6px; 
  font-size: 18px; 
  font-weight: 950; 
}

.sub { 
  margin: 0; 
  color: var(--muted); 
  line-height: 1.7; 
  font-size: 13px; 
}

.booking-card {
  border-radius: var(--radius2);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface2) 80%, transparent 20%);
}

.step {
  padding: 12px 10px;
  text-align: center;
  font-weight: 950;
  color: var(--muted);
  font-size: 13px;
  position: relative;
}

.step.active { 
  color: var(--text); 
}

.step.active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
}

.booking-grid {
  display: grid;
  gap: 12px;
  padding: 12px;
}

.panel {
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface2) 80%, transparent 20%);
  border: 1px solid var(--border);
  padding: 12px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.panel-hidden {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.panel-show {
  display: block;
  animation: slideIn 0.4s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.panel-title { 
  font-weight: 950; 
  font-size: 13px; 
}

.panel-hint { 
  color: var(--muted2); 
  font-size: 12px; 
  font-weight: 800; 
}

.monthbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.monthLabel {
  font-weight: 950;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  flex: 1;
}

.icon {
  width: 42px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, background 160ms ease;
  flex-shrink: 0;
}

.icon:active { 
  transform: translateY(1px); 
}

.icon:hover { 
  background: var(--surface2); 
}

.dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  color: var(--muted2);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 8px;
}

.dow div { 
  text-align: center; 
  padding: 4px 0; 
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.day {
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--slot);
  color: var(--text);
  font-weight: 950;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  font-size: 14px;
}

.day:hover:not(:disabled):not(.muted) { 
  background: var(--slotHover); 
}

.day:active { 
  transform: scale(0.98); 
}

.day.muted { 
  opacity: 0.35; 
  cursor: not-allowed; 
}

.day.selected {
  background: color-mix(in srgb, var(--primary) 22%, var(--slot) 78%);
  border-color: color-mix(in srgb, var(--primary) 55%, var(--border) 45%);
}

.day.today {
  outline: 2px solid color-mix(in srgb, var(--primary) 22%, transparent 78%);
  outline-offset: 2px;
}

.legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  color: var(--muted2);
  font-weight: 800;
  font-size: 12px;
}

.lg { 
  display: flex; 
  align-items: center; 
  gap: 6px; 
}

.dot { 
  width: 9px; 
  height: 9px; 
  border-radius: 999px; 
  background: var(--muted2); 
  flex-shrink: 0;
}

.dot-orange { 
  background: var(--primary); 
}

.dot-unavail { 
  background: var(--unavail); 
}

.slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.slot {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--slot);
  padding: 12px 10px;
  font-weight: 950;
  color: var(--text);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  font-size: 14px;
}

.slot:hover:not(:disabled):not(.taken) { 
  background: var(--slotHover); 
}

.slot:active { 
  transform: scale(0.98); 
}

.slot.selected {
  background: color-mix(in srgb, var(--primary) 22%, var(--slot) 78%);
  border-color: color-mix(in srgb, var(--primary) 55%, var(--border) 45%);
}

.slot.taken {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.summary {
  margin-top: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 12px;
}

.summary-title {
  font-size: 12px;
  font-weight: 950;
  color: var(--muted2);
}

.summary-value {
  margin-top: 6px;
  font-weight: 950;
  color: var(--text);
  font-size: 14px;
}

.details .fields { 
  display: grid; 
  gap: 10px; 
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.field input {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--input);
  color: var(--text);
  outline: none;
  transition: box-shadow 160ms ease, border-color 160ms ease;
  font-size: 14px;
}

.field input:focus {
  border-color: color-mix(in srgb, var(--primary) 55%, var(--border) 45%);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 18%, transparent 82%);
}

.error {
  min-height: 16px;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 900;
  color: #ff4d5e;
}

.actions {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.note {
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.6;
}

.btn {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 12px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, filter 160ms ease;
  font-size: 14px;
}

.btn:active { 
  transform: translateY(1px); 
}

.btn:hover { 
  background: var(--surface2); 
}

.btn-primary {
  background: var(--primary);
  border-color: color-mix(in srgb, var(--primary) 70%, #000 30%);
  color: var(--ctaInk);
}

.btn-glow {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.btn-glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(500px 120px at 50% 0%, rgba(255,255,255,0.35), transparent 60%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.btn-glow::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -30%;
  width: 60%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: rotate(18deg) translateX(-140%);
  transition: transform 520ms cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}

.btn-primary.btn-glow:hover {
  filter: brightness(1.03);
  box-shadow: 0 18px 40px var(--glow);
}

.btn-primary.btn-glow:hover::before { 
  opacity: 1; 
}

.btn-primary.btn-glow:hover::after {
  transform: rotate(18deg) translateX(220%);
}

.btn-ghost { 
  background: transparent; 
}

.btn-wide { 
  width: 100%; 
}

.toast {
  display: none;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
}

.footer {
  margin-top: 16px;
  padding: 16px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted2);
  font-weight: 800;
  border-top: 1px solid var(--border);
  font-size: 13px;
  flex-wrap: wrap;
}

.link {
  border: 0;
  background: transparent;
  color: var(--primary);
  font-weight: 950;
  cursor: pointer;
  font-size: 13px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 0;
  backdrop-filter: blur(4px);
  overflow-y: auto;
}

.modal {
  width: min(560px, 100vw);
  max-height: 100vh;
  border-radius: var(--radius2);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease-out;
  margin: auto;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.success-modal {
  position: relative;
  padding-top: 50px;
}

.success-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: white;
  font-size: 32px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid var(--border);
}

.modal-title { 
  font-weight: 950;
  font-size: 18px;
}

.modal-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.modal-body {
  padding: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 14px;
  border-top: 1px solid var(--border);
}

/* Success Alert Overlay */
.success-alert {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  backdrop-filter: blur(10px);
}

.success-alert.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.success-content {
  text-align: center;
  padding: 40px 30px;
  max-width: 400px;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.5);
  animation: successBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-checkmark::before {
  content: "✓";
  font-size: 48px;
  color: white;
  font-weight: bold;
}

@keyframes successBounce {
  0% { transform: scale(0) rotate(-180deg); opacity: 0; }
  50% { transform: scale(1.1) rotate(10deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

.success-title {
  font-size: 28px;
  font-weight: 950;
  color: white;
  margin-bottom: 12px;
  animation: slideUp 0.5s ease 0.2s both;
}

.success-message {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 24px;
  animation: slideUp 0.5s ease 0.3s both;
}

.success-confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  animation: confettiFall 3s linear;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes confettiFall {
  0% { 
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% { 
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fab {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  z-index: 30;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--primary) 55%, var(--border) 45%);
  background: var(--primary);
  color: var(--ctaInk);
  padding: 14px 16px;
  font-weight: 950;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  cursor: pointer;
  font-size: 14px;
}

.fab:active { 
  transform: translateX(-50%) translateY(1px); 
}

.fab-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
  flex-shrink: 0;
}

.fab-glow:hover {
  box-shadow: 0 22px 55px var(--glow);
  filter: brightness(1.03);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design for Tablets */
@media (max-width: 768px) {
  .topbar {
    padding: 10px 12px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .brand-sub {
    font-size: 11px;
  }

  .brand-title {
    font-size: 13px;
  }

  .chip {
    padding: 8px 10px;
    font-size: 13px;
  }

  .h1 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .lead {
    font-size: 13px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 10px;
  }

  .calendar {
    gap: 6px;
  }

  .day {
    height: 40px;
    font-size: 13px;
  }

  .slots {
    grid-template-columns: 1fr;
  }

  .slot {
    padding: 14px 12px;
  }

  .step {
    font-size: 12px;
    padding: 10px 8px;
  }

  .modal-backdrop {
    padding: 0;
    align-items: flex-start;
  }
  
  .modal {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    border: none;
    margin: 0;
  }
  
  .modal-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-actions .btn {
    width: 100%;
  }
  
  .booking-card {
    border-radius: 16px;
    margin: 0 2vw;
  }
  
  .page {
    width: 100vw;
    padding: 0 2vw 84px;
  }
}

/* Desktop */
@media (min-width: 900px) {
  .page { 
    width: min(1200px, 92vw); 
  }
  
  .hero-content { 
    padding: 22px 20px; 
  }
  
  .booking-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
  
  .details {
    grid-column: 1 / -1;
  }
  
  .slots { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .fab { 
    display: none; 
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  html {
    width: 100%;
    overflow-x: hidden;
  }
  
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }
  
  .page {
    width: 100%;
    max-width: 100%;
    padding: 0 12px 84px;
    margin: 0;
    box-sizing: border-box;
  }

  .hero {
    padding: 20px 0 16px;
    width: 100%;
  }

  .hero-content {
    padding: 14px 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .hero-bg {
    display: none;
  }

  .h1 {
    font-size: 22px;
  }

  .booking-card {
    margin: 0;
    border-radius: 16px;
    width: 100%;
    max-width: 100%;
  }
  
  .booking-grid {
    padding: 12px;
    gap: 12px;
    width: 100%;
  }

  .dow {
    font-size: 9px;
    gap: 3px;
  }

  .calendar {
    gap: 4px;
  }

  .day {
    height: 40px;
    font-size: 12px;
    border-radius: 10px;
  }

  .icon {
    width: 36px;
    height: 34px;
    font-size: 18px;
  }

  .monthLabel {
    font-size: 12px;
  }

  .monthbar {
    gap: 6px;
    margin-bottom: 8px;
  }

  .panel {
    padding: 12px;
    margin-bottom: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .panel-title {
    font-size: 14px;
  }

  .panel-hint {
    font-size: 12px;
  }

  .slots {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .slot {
    padding: 14px 12px;
    font-size: 14px;
    border-radius: 12px;
  }

  .field input {
    font-size: 16px;
    padding: 14px 12px;
  }

  .btn {
    padding: 14px 12px;
    font-size: 15px;
  }

  .footer {
    font-size: 11px;
    gap: 6px;
    padding: 16px 12px 8px;
  }

  .steps {
    font-size: 12px;
  }

  .step {
    padding: 12px 8px;
    font-size: 12px;
  }

  .legend {
    font-size: 11px;
    gap: 10px;
  }

  .summary {
    padding: 12px;
  }

  .summary-title {
    font-size: 12px;
  }

  .summary-value {
    font-size: 13px;
  }

  .fab {
    font-size: 14px;
    padding: 14px 16px;
    bottom: 16px;
  }
  
  .success-content {
    padding: 30px 20px;
  }
  
  .success-checkmark {
    width: 70px;
    height: 70px;
  }
  
  .success-checkmark::before {
    font-size: 40px;
  }
  
  .success-title {
    font-size: 24px;
  }
  
  .success-message {
    font-size: 14px;
  }
  
  .panel-show {
    display: block !important;
    animation: slideInMobile 0.3s ease forwards;
  }
  
  @keyframes slideInMobile {
    from {
      opacity: 0;
      transform: translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .topbar {
    width: 100%;
    padding: 10px 12px;
    box-sizing: border-box;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .day {
    height: 34px;
    font-size: 10px;
  }

  .brand-title {
    font-size: 12px;
  }

  .brand-sub {
    font-size: 10px;
  }

  .slot {
    font-size: 11px;
  }
}