/* SECTION: Design System */
:root {
  /* Palette */
  --color-bg: #050608;
  --color-bg-elevated: #0b0d12;
  --color-bg-soft: #111420;
  --color-surface: #141824;
  --color-border-subtle: rgba(255, 255, 255, 0.06);
  --color-border-strong: rgba(255, 255, 255, 0.14);

  --color-text-main: #f7f7fb;
  --color-text-muted: #a0a4b8;
  --color-text-soft: #777b92;

  --color-accent: #ffb156;
  --color-accent-soft: rgba(255, 177, 86, 0.14);
  --color-accent-strong: #ff8c39;

  --color-success: #4ade80;
  --color-danger: #fb7185;

  /* Shadows & Radii */
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.4);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;

  /* Typography */
  --font-sans: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.85rem;
  --text-base: 1rem;
  --text-lg: 1.2rem;
  --text-xl: 1.6rem;
  --text-2xl: 2.1rem;

  /* Layout */
  --app-max-width: 1120px;
  --gutter: 1.25rem;

  /* Transitions */
  --transition-fast: 0.16s ease-out;
  --transition-med: 0.22s ease;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background: radial-gradient(circle at top, #141824 0, #050608 52%, #020308 100%);
  color: var(--color-text-main);
}


/* SECTION: App Loader */
#appLoader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(circle at center, #1a1d2e 0, #050608 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#appLoader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 300px;
  padding: 1rem;
}

.loader-brand {
  width: 80px;
  height: 80px;
  border-radius: 40% 60% 45% 55%;
  background: radial-gradient(circle at 25% 0, #ffe0b5 0, #ffb156 42%, #ff8c39 80%);
  color: #171717;
  font-weight: 800;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  box-shadow: 0 0 40px rgba(255, 177, 86, 0.4);
  animation: heartbeat 1.5s ease-in-out infinite;
}

.loader-bar-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ffb156, #ff8c39);
  border-radius: 999px;
  transition: width 0.3s ease-out;
  box-shadow: 0 0 15px rgba(255, 177, 86, 0.5);
}

.loader-text {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }

  15% {
    transform: scale(1.15);
  }

  30% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.15);
  }

  60% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

body {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.app-shell {
  width: 100%;
  max-width: var(--app-max-width);
  margin: 1.5rem auto 2.5rem;
  padding: 1.25rem 1.25rem 1.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(26px) saturate(130%);
}

/* SECTION: Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1.25rem;
  padding: 0.35rem 0 0.85rem;
  border-bottom: 1px solid var(--color-border-subtle);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 40% 60% 45% 55%;
  background: radial-gradient(circle at 25% 0, #ffe0b5 0, #ffb156 42%, #ff8c39 80%);
  color: #171717;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.12em;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.7);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand-sub {
  font-size: var(--text-xs);
  color: var(--color-text-soft);
}

.main-nav {
  display: flex;
  gap: 0.25rem;
  padding: 0.1rem;
  background: rgba(4, 6, 14, 0.8);
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-subtle);
}

.nav-link {
  position: relative;
  border: none;
  outline: none;
  background: transparent;
  color: var(--color-text-muted);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.nav-link.is-active {
  background: radial-gradient(circle at top, rgba(255, 177, 86, 0.24), rgba(255, 177, 86, 0.06));
  color: var(--color-text-main);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.7);
}

.nav-link:hover {
  transform: translateY(-1px);
}

/* Sign in dropdown */
.signin-dropdown {
  position: relative;
}

.signin-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  min-width: 300px;
  background: radial-gradient(circle at top, #1a1d2e 0, #0b0d12 60%, #050608 100%);
  border: 1px solid rgba(255, 177, 86, 0.15);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 177, 86, 0.1);
  z-index: 100;
  animation: slideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px) saturate(150%);
}

.signin-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 20px;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #1a1d2e 50%, transparent 50%);
  border-left: 1px solid rgba(255, 177, 86, 0.15);
  border-top: 1px solid rgba(255, 177, 86, 0.15);
  transform: rotate(45deg);
}

.signin-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.125rem;
  border: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent);
  color: var(--color-text-main);
  text-align: left;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.signin-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 177, 86, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.signin-option:hover {
  background: linear-gradient(135deg, rgba(255, 177, 86, 0.12), rgba(255, 177, 86, 0.05));
  border-color: rgba(255, 177, 86, 0.3);
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.signin-option:hover::before {
  opacity: 1;
}

.signin-option:active {
  transform: translateX(2px) scale(0.98);
}

.signin-option+.signin-option {
  margin-top: 0.5rem;
}

.signin-icon {
  font-size: 1.875rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s ease;
}

.signin-option:hover .signin-icon {
  transform: scale(1.1);
}

.signin-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.signin-subtitle {
  font-size: 0.75rem;
  color: var(--color-text-soft);
  line-height: 1.3;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-button {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border-subtle);
  background: rgba(6, 8, 15, 0.7);
  color: var(--color-text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.icon-button:hover {
  background: rgba(10, 12, 22, 0.9);
  transform: translateY(-1px) scale(1.02);
  box-shadow: var(--shadow-subtle);
}

.icon-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #111;
  font-size: 0.65rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-cart {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 2px solid var(--color-text-main);
  position: relative;
}

.icon-cart::before,
.icon-cart::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 2px solid var(--color-text-main);
}

.icon-cart::before {
  width: 6px;
  height: 6px;
  bottom: -6px;
  left: -3px;
}

.icon-cart::after {
  width: 6px;
  height: 6px;
  bottom: -6px;
  right: -3px;
}

/* SECTION: Buttons */
.btn {
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 0.6rem 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transition: background var(--transition-med), color var(--transition-fast), box-shadow var(--transition-med), transform var(--transition-fast), border-color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
  color: #1a1308;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.75);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-main);
  border: 1px solid var(--color-border-strong);
}

.btn-outline:hover {
  background: rgba(14, 17, 28, 0.9);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-radius: var(--radius-pill);
  padding-inline: 0.8rem;
}

.btn-ghost:hover {
  color: var(--color-text-main);
  background: rgba(7, 9, 16, 0.85);
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

/* SECTION: Main layout */
.app-main {
  padding-top: 1.2rem;
}

.view {
  display: none;
}

.view.is-visible {
  display: block;
}

.view-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.view-header h2 {
  font-size: var(--text-xl);
  letter-spacing: -0.03em;
  margin: 0;
}

.eyebrow {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-soft);
  margin: 0 0 0.15rem;
}

.muted {
  color: var(--color-text-muted);
}

.tiny {
  font-size: var(--text-xs);
}

/* SECTION: Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.hero-copy h1 {
  font-size: var(--text-2xl);
  letter-spacing: -0.04em;
  margin: 0 0 0.7rem;
}

.hero-text {
  margin: 0 0 1.1rem;
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 0;
}

.stat dt {
  font-size: 1.4rem;
  font-weight: 600;
}

.stat dd {
  margin: 0;
  color: var(--color-text-soft);
  font-size: var(--text-sm);
}

.hero-panel {
  background: radial-gradient(circle at top, #262939 0, #141824 40%, #050608 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-subtle);
  padding: 1.05rem 1.1rem;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-title {
  margin: 0 0 0.75rem;
  font-size: var(--text-lg);
}

.combo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.combo-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0.7rem;
  border-radius: var(--radius-md);
  background: rgba(5, 7, 14, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.combo-card h3 {
  margin: 0 0 0.15rem;
  font-size: var(--text-base);
}

.combo-card p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.combo-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.price-tag {
  font-weight: 600;
}

.time-tag {
  font-size: var(--text-xs);
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.mini-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.06);
}

.step-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.step-badge {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent-strong);
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step-connector {
  flex: 1;
  height: 1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.12) 50%, transparent 50%);
  background-size: 6px 1px;
}

/* SECTION: Layout two column */
.layout-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 1.4rem;
}

/* SECTION: Services */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.9rem;
}

.service-card {
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: 0.9rem;
  border: 1px solid var(--color-border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  overflow: hidden;
}

.service-chip-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.35rem;
}

.chip {
  font-size: var(--text-xs);
  padding: 0.08rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text-soft);
}

.chip.hot {
  border-color: rgba(255, 177, 86, 0.6);
  color: var(--color-accent-strong);
  background: rgba(255, 177, 86, 0.12);
}

.service-name {
  margin: 0.35rem 0 0;
  font-size: var(--text-base);
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.service-price {
  font-weight: 600;
}

.service-duration {
  font-size: var(--text-xs);
  color: var(--color-text-soft);
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.service-rating {
  font-size: var(--text-xs);
  color: var(--color-text-soft);
}

.btn-add {
  padding-inline: 0.7rem;
}

/* SECTION: Cart sidebar */
.cart-sidebar {
  background: var(--color-bg-soft);
  border-radius: var(--radius-xl);
  padding: 0.9rem 0.95rem 1.05rem;
  border: 1px solid var(--color-border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sidebar-title {
  margin: 0 0 0.25rem;
  font-size: var(--text-lg);
}

.empty-state {
  padding: 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(6, 8, 16, 0.9);
  border: 1px dashed var(--color-border-subtle);
}

.cart-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 0.6rem;
  padding: 0.55rem 0.6rem;
  border-radius: var(--radius-md);
  background: rgba(3, 5, 12, 0.9);
  border: 1px solid var(--color-border-subtle);
  position: relative;
}

.cart-item-title {
  font-size: var(--text-sm);
}

.cart-item-meta {
  font-size: var(--text-xs);
  color: var(--color-text-soft);
}

.cart-item-price {
  font-weight: 600;
  font-size: var(--text-sm);
}

.cart-item-remove {
  border: none;
  background: transparent;
  color: var(--color-text-soft);
  font-size: var(--text-xs);
  cursor: pointer;
}

.cart-item-slot {
  grid-column: 1 / -1;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.slot-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.08rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.slot-pill.is-missing {
  background: rgba(127, 29, 29, 0.5);
  color: #fecaca;
}

/* SECTION: Slot picker */
.slot-picker h4 {
  margin: 0 0 0.4rem;
}

.slot-day {
  font-size: var(--text-xs);
  color: var(--color-text-soft);
  margin-bottom: 0.3rem;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 0.35rem;
}

.slot-btn {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 12, 22, 0.9);
  color: var(--color-text-main);
  font-size: var(--text-xs);
  padding: 0.25rem 0.4rem;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.slot-btn:hover {
  background: rgba(13, 17, 28, 1);
  transform: translateY(-0.5px);
}

.slot-btn.is-selected {
  background: var(--color-accent-soft);
  border-color: var(--color-accent-strong);
  color: var(--color-accent-strong);
}

/* SECTION: Cart summary */
.cart-summary {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-sm);
}

.summary-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* SECTION: Drawer */
.drawer {
  position: fixed;
  inset: 0;
  display: none;
  align-items: stretch;
  justify-content: flex-end;
  z-index: 30;
}

.drawer.is-open {
  display: flex;
}

.drawer-backdrop {
  flex: 1;
  background: radial-gradient(circle at top left, rgba(255, 177, 86, 0.1), rgba(0, 0, 0, 0.75));
}

.drawer-panel {
  width: min(420px, 100%);
  background: rgba(4, 6, 14, 0.98);
  border-left: 1px solid var(--color-border-subtle);
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  animation: slideInRight 0.28s var(--transition-med) forwards;
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
  }
}

.drawer-header {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-body {
  padding: 0.75rem 1rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.drawer-tabs {
  display: inline-flex;
  padding: 0.15rem;
  border-radius: var(--radius-pill);
  background: rgba(10, 12, 22, 0.95);
  border: 1px solid var(--color-border-subtle);
  margin-bottom: 0.75rem;
}

.tab {
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  padding: 0.3rem 0.8rem;
  color: var(--color-text-soft);
  font-size: var(--text-xs);
  cursor: pointer;
}

.tab.is-active {
  background: rgba(255, 177, 86, 0.12);
  color: var(--color-text-main);
}

.drawer-content {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.2rem;
}

.step {
  display: none;
}

.step.is-visible {
  display: block;
}

/* SECTION: Payment form */
.payment-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.field-row {
  display: flex;
  gap: 0.5rem;
}

label {
  font-size: var(--text-xs);
  color: var(--color-text-soft);
}

input {
  border-radius: 10px;
  border: 1px solid var(--color-border-subtle);
  background: rgba(7, 9, 18, 0.95);
  color: var(--color-text-main);
  padding: 0.5rem 0.55rem;
  font-family: inherit;
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

input::placeholder {
  color: var(--color-text-soft);
}

input:focus {
  border-color: var(--color-accent-strong);
  box-shadow: 0 0 0 1px rgba(255, 177, 86, 0.4);
  background: rgba(10, 13, 24, 0.98);
}

.phone-input {
  display: flex;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  background: rgba(7, 9, 18, 0.95);
}

.phone-prefix {
  padding: 0.5rem 0.6rem;
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  border-right: 1px solid var(--color-border-subtle);
}

.phone-input input {
  border: none;
  flex: 1;
  background: transparent;
}

.payment-success {
  margin-top: 0.8rem;
  padding: 0.8rem 0.7rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(74, 222, 128, 0.4);
  background: rgba(22, 101, 52, 0.45);
}

.payment-success h3 {
  margin: 0 0 0.25rem;
}

/* SECTION: Auth Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 177, 86, 0.22), rgba(0, 0, 0, 0.8));
}

.modal-dialog {
  position: relative;
  width: min(420px, calc(100% - 2.5rem));
  background: rgba(4, 6, 14, 0.98);
  border-radius: 24px;
  border: 1px solid var(--color-border-subtle);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
  padding: 0.85rem 0.95rem 0.95rem;
  z-index: 1;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.modal-body {
  padding-top: 0.4rem;
}

.auth-step {
  display: none;
}

.auth-step.is-visible {
  display: block;
}

.otp-inputs {
  display: flex;
  gap: 0.4rem;
  margin: 0.6rem 0 0.4rem;
}

.otp-box {
  width: 42px;
  text-align: center;
  font-size: var(--text-base);
}

/* SECTION: Chips & filters */
.chip-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--color-border-subtle);
  background: rgba(5, 7, 14, 0.9);
  font-size: var(--text-xs);
  color: var(--color-text-soft);
}

.chip-toggle input {
  accent-color: var(--color-accent-strong);
}

/* SECTION: Bookings */
.booking-timeline {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  border-left: 1px solid var(--color-border-subtle);
}

.booking-item {
  position: relative;
  margin-left: 0.7rem;
  padding: 0.4rem 0 0.6rem 0.5rem;
}

.booking-bullet {
  position: absolute;
  left: -0.75rem;
  top: 0.55rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-accent);
}

.booking-title {
  margin: 0 0 0.15rem;
}

.booking-meta {
  font-size: var(--text-xs);
  color: var(--color-text-soft);
}

/* SECTION: Modal */
.modal {
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  overflow-y: auto;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.9));
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: radial-gradient(circle at top, #1a1d2e 0, #0b0d12 60%, #050608 100%);
  border: 1px solid rgba(255, 177, 86, 0.15);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(255, 177, 86, 0.1);
  animation: modalSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px) saturate(150%);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 177, 86, 0.1);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.modal-header h2 {
  font-size: var(--text-xl);
  margin: 0;
  letter-spacing: -0.02em;
}

.modal-header .eyebrow {
  margin-bottom: 0.3rem;
}

.modal-header .icon-button {
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
  margin: -0.25rem -0.25rem 0 0;
  background: transparent;
  border: none;
  color: var(--color-text-soft);
  cursor: pointer;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.modal-header .icon-button:hover {
  color: var(--color-text-main);
  transform: scale(1.1);
}

.modal-body {
  padding: 1.5rem;
  max-height: 70vh;
  overflow-y: auto;
}

/* SECTION: Utilities */
.view-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

[hidden] {
  display: none !important;
}

/* SECTION: Responsive */
@media (max-width: 880px) {
  .app-shell {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 768px) {
  .site-header {
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .layout-two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-sidebar {
    order: -1;
  }

  .drawer-panel {
    width: 100%;
  }

  .field-row {
    flex-direction: column;
  }
}

/* Add these mobile-responsive improvements to your existing style.css */

/* Enhanced mobile navigation */
@media (max-width: 768px) {
  .site-header {
    flex-wrap: wrap;
    row-gap: 0.75rem;
    padding: 0.5rem 0 1rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }

  .brand-title {
    font-size: 0.9rem;
  }

  .brand-sub {
    font-size: 0.65rem;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .nav-link {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    padding: 0.5rem 0.6rem;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .icon-button {
    width: 34px;
    height: 34px;
  }

  /* Hero section mobile */
  .hero {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-copy h1 {
    font-size: 1.75rem;
  }

  .hero-text {
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat dt {
    font-size: 1.2rem;
  }

  /* Hero panel mobile */
  .hero-panel {
    padding: 0.9rem;
  }

  .panel-title {
    font-size: 1rem;
  }

  .combo-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .combo-meta {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }

  /* Services layout mobile */
  .layout-two-column {
    grid-template-columns: 1fr;
  }

  .cart-sidebar {
    order: -1;
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .services-list {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
  }

  .service-card {
    padding: 0.75rem;
  }

  .service-name {
    font-size: 0.9rem;
  }

  /* Drawer full width on mobile */
  .drawer-panel {
    width: 100%;
  }

  /* Modal responsive */
  .modal-dialog {
    width: calc(100% - 2rem);
    margin: 1rem;
  }

  /* OTP inputs mobile */
  .otp-inputs {
    gap: 0.5rem;
  }

  .otp-box {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  /* Form fields mobile */
  .field-row {
    flex-direction: column;
  }

  input {
    font-size: 16px;
    /* Prevents zoom on iOS */
  }

  /* Cart summary mobile */
  .cart-summary {
    position: sticky;
    bottom: 0;
    background: var(--color-bg-soft);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    margin-top: 0.75rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .app-shell {
    margin: 0;
    padding: 0.75rem;
    border-radius: 0;
  }

  .app-main {
    padding-top: 0.75rem;
  }

  .hero-copy h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  .combo-card h3 {
    font-size: 0.9rem;
  }

  .combo-card p {
    font-size: 0.75rem;
  }

  .mini-steps {
    flex-wrap: wrap;
  }

  .step-connector {
    display: none;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    max-width: none;
  }

  .slot-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .btn {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .drawer-header h2 {
    font-size: 1.1rem;
  }

  .drawer-body {
    padding: 0.5rem 0.75rem 0.75rem;
  }
}

/* Landscape mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }

  .drawer-panel {
    width: 70%;
  }

  .modal-dialog {
    max-height: 90vh;
    overflow-y: auto;
  }
}

/* Touch improvements */
@media (hover: none) and (pointer: coarse) {

  .btn,
  .nav-link,
  .slot-btn,
  .icon-button {
    min-height: 44px;
    min-width: 44px;
  }

  .cart-item-remove {
    padding: 0.5rem;
    min-height: 44px;
  }

  /* Better tap targets */
  .service-card .btn-add {
    padding: 0.6rem 1rem;
    margin-top: 0.25rem;
  }
}

/* Safe area insets for notched devices */
@supports (padding: max(0px)) {
  .app-shell {
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }

  .drawer-panel {
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }

  .modal-dialog {
    padding-bottom: max(0.95rem, env(safe-area-inset-bottom));
  }
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 8, 0.3);
  border-radius: inherit;
}

/* Error states */
.error-message {
  padding: 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(127, 29, 29, 0.3);
  border: 1px solid rgba(251, 113, 133, 0.4);
  color: #fecaca;
  font-size: var(--text-sm);
  margin-bottom: 0.75rem;
}

/* Success states */
.success-message {
  padding: 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(22, 101, 52, 0.3);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: #86efac;
  font-size: var(--text-sm);
  margin-bottom: 0.75rem;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

.drawer-content,
.modal-body {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Prevent text selection on buttons */
.btn,
.nav-link,
.slot-btn,
.tab {
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Better focus states for accessibility */
*:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.03) 25%,
      rgba(255, 255, 255, 0.06) 50%,
      rgba(255, 255, 255, 0.03) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* SECTION: Admin Panel */
.admin-login-step.is-visible,
.admin-dashboard-step[hidden],
.admin-header {
  display: block;
}

.admin-login-step:not(.is-visible) {
  display: none;
}

.admin-dashboard-step[hidden] {
  display: none;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border-subtle);
}

.admin-header h3 {
  margin: 0;
  font-size: var(--text-lg);
}

#adminCustomersList {
  list-style: none;
  margin: 0;
  padding: 0;
}

#adminCustomersList li {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border-subtle);
  cursor: pointer;
  transition: background var(--transition-fast);
}

#adminCustomersList li:hover {
  background: rgba(255, 177, 86, 0.05);
}

.admin-customer-detail {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border-subtle);
  font-size: var(--text-sm);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

/* Tablet & Below (< 1024px) */
@media (max-width: 1024px) {
  .app-shell {
    margin: 1rem auto;
    padding: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .layout-two-column {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cart-sidebar {
    position: sticky;
    bottom: 0;
    background: var(--color-bg-elevated);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
  }
}

/* Mobile (< 768px) */
@media (max-width: 768px) {

  /* App Shell */
  .app-shell {
    margin: 0;
    padding: 0.75rem;
    border-radius: 0;
  }

  /* Header */
  .site-header {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .brand {
    flex: 1;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-around;
    margin-top: 0.5rem;
  }

  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .header-actions {
    gap: 0.5rem;
  }

  /* Sign-in Dropdown - Mobile Top Sheet */
  .signin-dropdown {
    position: static;
  }

  .signin-menu {
    position: fixed;
    top: 0;
    bottom: auto;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 1.25rem 1rem 1rem;
    padding-top: max(1.25rem, env(safe-area-inset-top));
    animation: slideDownFromTop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
    z-index: 1000;
  }

  @keyframes slideDownFromTop {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .signin-menu::before {
    display: none;
  }

  .signin-menu::after {
    content: '';
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--color-border-strong);
    border-radius: 999px;
  }

  .signin-option {
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 177, 86, 0.2);
  }

  .signin-option:last-child {
    margin-bottom: 0;
  }

  .signin-icon {
    font-size: 2rem;
  }

  .signin-title {
    font-size: 1rem;
  }

  .signin-subtitle {
    font-size: 0.85rem;
  }

  /* Hero */
  .hero {
    gap: 1.25rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-text {
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel {
    padding: 1rem;
  }

  .panel-title {
    font-size: 1.1rem;
  }

  /* Services */
  .services-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .service-card {
    padding: 1rem;
  }

  /* Cart & Slot Picker */
  .slot-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Drawer */
  .drawer-panel {
    width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  /* Modal */
  .modal {
    padding: 0;
  }

  .modal-dialog {
    max-width: 100%;
    margin: auto 1rem;
    border-radius: var(--radius-lg);
  }

  .modal-header {
    padding: 1rem 1.25rem;
  }

  .modal-body {
    padding: 1.25rem;
  }

  /* Buttons - Touch Friendly */
  .btn {
    min-height: 44px;
    padding: 0.75rem 1.25rem;
  }

  .icon-button {
    min-width: 44px;
    min-height: 44px;
  }

  /* Forms */
  input,
  select,
  textarea {
    min-height: 44px;
    font-size: 16px;
    /* Prevents zoom on iOS */
  }

  /* View Headers */
  .view-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .view-header h2 {
    font-size: 1.5rem;
  }

  /* Stats Grid */
  .hero-stats {
    gap: 1rem;
  }

  /* Combo Cards */
  .combo-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .combo-meta {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    justify-content: space-between;
  }

  /* Mini Steps */
  .mini-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .step-connector {
    display: none;
  }

  /* Admin Dashboard */
  #adminDashboardContent>div[style*="grid"] {
    grid-template-columns: 1fr !important;
  }

  .admin-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* Admin booking action buttons */
  .btn-action {
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--color-bg-elevated);
    color: var(--color-text-main);
    border: 1px solid var(--color-border-subtle);
  }

  .btn-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }

  .btn-confirm {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(74, 222, 128, 0.05));
    color: var(--color-success);
    border-color: var(--color-success);
  }

  .btn-confirm:hover {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.25), rgba(74, 222, 128, 0.1));
  }

  .btn-cancel {
    background: linear-gradient(135deg, rgba(251, 113, 133, 0.15), rgba(251, 113, 133, 0.05));
    color: var(--color-danger);
    border-color: var(--color-danger);
  }

  .btn-cancel:hover {
    background: linear-gradient(135deg, rgba(251, 113, 133, 0.25), rgba(251, 113, 133, 0.1));
  }

  .btn-reschedule {
    background: linear-gradient(135deg, rgba(255, 177, 86, 0.15), rgba(255, 177, 86, 0.05));
    color: var(--color-accent);
    border-color: var(--color-accent);
  }

  .btn-reschedule:hover {
    background: linear-gradient(135deg, rgba(255, 177, 86, 0.25), rgba(255, 177, 86, 0.1));
  }

  .btn-details:hover {
    background: var(--color-bg-soft);
    border-color: var(--color-border-strong);
  }

  /* Filter button active state */
  .filter-btn.active {
    background: var(--color-accent-soft) !important;
    color: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
  }

  /* Period button active state */
  .period-btn.active {
    background: var(--color-accent-soft) !important;
    color: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
  }

  /* Customer notes styles */
  .admin-list li:hover {
    background: var(--color-bg-soft);
    border-color: var(--color-border-strong);
    transform: translateY(-1px);
  }

  .add-note-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--color-bg-soft);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-subtle);
  }

  .add-note-section h4 {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: var(--color-text-main);
  }

  .add-note-section textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
    color: var(--color-text-main);
    font-family: inherit;
    font-size: 0.9rem;
    resize: vertical;
    margin-bottom: 1rem;
  }

  .notes-section {
    margin-top: 2rem;
  }

  .notes-section h4 {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: var(--color-text-main);
  }

  .note-item {
    padding: 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
  }

  .note-item:hover {
    border-color: var(--color-border-strong);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .note-text {
    font-size: 0.95rem;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }

  .note-meta {
    font-size: 0.8rem;
    color: var(--color-text-soft);
  }

  .admin-list li {
    padding: 0.875rem;
  }

  /* Payment Form */
  .field-row {
    flex-direction: column;
  }

  /* Bookings */
  .booking-item {
    padding: 0.5rem 0 0.75rem 0.75rem;
  }

  .booking-meta {
    font-size: 0.8rem;
  }
}

/* Small Mobile (< 375px) */
@media (max-width: 375px) {
  .brand-mark {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .brand-title {
    font-size: 0.9rem;
  }

  .brand-sub {
    font-size: 0.7rem;
  }

  .nav-link {
    padding: 0.45rem 0.6rem;
    font-size: 0.75rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .slot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signin-option {
    padding: 0.875rem 1rem;
  }

  .signin-icon {
    font-size: 1.5rem;
  }
}

/* iPhone SE & Older Small Devices (< 320px) */
@media (max-width: 320px) {
  .signin-option {
    padding: 1rem;
    gap: 0.75rem;
  }

  .signin-title {
    font-size: 0.9rem;
  }
}

/* Standard iPhone (375px - 390px) */
@media (min-width: 375px) and (max-width: 390px) {
  .signin-menu {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .signin-option {
    padding: 1.375rem 1.5rem;
  }
}

/* Large Phones / Phablets (414px - 540px) */
@media (min-width: 414px) and (max-width: 540px) {
  .signin-menu {
    max-width: 90%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--radius-lg);
    margin-top: 1rem;
  }

  @keyframes slideDownFromTop {
    from {
      transform: translate(-50%, -100%);
      opacity: 0;
    }

    to {
      transform: translate(-50%, 0);
      opacity: 1;
    }
  }

  .signin-option {
    padding: 1.5rem;
  }

  .signin-icon {
    font-size: 2.25rem;
  }
}

/* Small Tablets (540px - 768px) */
@media (min-width: 540px) and (max-width: 768px) {
  .signin-menu {
    max-width: 420px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--radius-lg);
    margin-top: 1rem;
  }

  @keyframes slideDownFromTop {
    from {
      transform: translate(-50%, -100%);
      opacity: 0;
    }

    to {
      transform: translate(-50%, 0);
      opacity: 1;
    }
  }
}