/* ============================================
   Flytkt — Static HTML/CSS Version
   Design tokens from src/app/globals.css
   ============================================ */

:root {
  --background: #ffffff;
  --foreground: #1a202c;
  --accent: #ffcc00;
  --accent-hover: #e6b800;
  --surface-muted: #f8f9fa;
  --footer-from: #1a202c;
  --footer-to: #0d0d0d;
  --gold: #ffd700;
  --card-bg: #fcf9f2;
  --max-width: 72rem; /* max-w-6xl */
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
}

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

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

button,
input,
select {
  font: inherit;
}

ul {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section {
  background: var(--background);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .section-title {
    font-size: 1.875rem;
  }
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=80");
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.52) 50%,
    rgba(0, 0, 0, 0.38) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  padding-top: 1.5rem;
  padding-bottom: 7rem;
}

/* Header */
.hero__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
}

.brand__icon {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 9999px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.brand__icon svg {
  width: 100%;
  height: 100%;
}

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

.btn-login {
  display: inline-flex;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-menu {
  padding: 0.25rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  transition: color 0.2s;
}

.btn-menu:hover {
  color: #fff;
}

.btn-menu svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* Service Nav */
.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  transition: background 0.2s;
  cursor: pointer;
}

.service-pill:hover {
  background: rgba(255, 255, 255, 0.15);
}

.service-pill--active {
  border-color: transparent;
  background: var(--foreground);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.35);
}

/* Hero Headline */
.hero__headline {
  margin-top: 2.5rem;
  max-width: 56rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.hero__headline .accent {
  color: var(--accent);
}

@media (min-width: 640px) {
  .hero__headline {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero__headline {
    font-size: 3.15rem;
  }
}

.hero__form-wrap {
  width: 100%;
  margin-top: 2.5rem;
}

/* ============================================
   Flight Search Form
   ============================================ */

.search-form {
  width: 100%;
}

.trip-type {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1.25rem;
  border: 0;
  padding: 0;
}

.trip-type label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

.trip-type input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.radio-custom {
  display: flex;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid #fff;
  transition: background 0.2s;
}

.trip-type input:checked + .radio-custom {
  background: #fff;
}

.trip-type input:checked + .radio-custom::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--foreground);
}

.trip-type input:focus-visible + .radio-custom {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.flight-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Shared tile */
.form-tile {
  display: flex;
  min-height: 5.5rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.125rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #f5f5f5;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #737373;
}

.form-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-value--muted {
  color: #d4d4d4;
}

.form-sub {
  font-size: 0.75rem;
  line-height: 1.375;
  color: #a3a3a3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-placeholder {
  font-size: 0.875rem;
  color: #a3a3a3;
}

/* Row 1: From/To + dates */
.form-row--primary {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .form-row--primary {
    flex-direction: row;
    align-items: stretch;
  }
}

.endpoints {
  position: relative;
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .endpoints {
    flex-direction: row;
    align-items: stretch;
  }
}

.endpoints .form-tile--from,
.endpoints .form-tile--to {
  flex: 1;
  min-width: 0;
}

@media (min-width: 640px) {
  .form-tile--from {
    padding-right: 2.5rem;
  }

  .form-tile--to {
    padding-left: 2.5rem;
  }
}

.swap-btn-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .swap-btn-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.btn-swap {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid #fff;
  background: #fff;
  color: var(--foreground);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-swap:hover {
  background: #fafafa;
}

.btn-swap svg {
  width: 1.25rem;
  height: 1.25rem;
}

.form-tile--date {
  width: 100%;
}

@media (min-width: 1024px) {
  .form-tile--date {
    width: 11.5rem;
    flex-shrink: 0;
  }
}

/* Row 2: options + search */
.form-row--secondary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .form-row--secondary {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row--secondary .btn-search {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .form-row--secondary {
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
  }

  .form-row--secondary .btn-search {
    grid-column: auto;
  }
}

.form-tile--select .select-wrap {
  position: relative;
}

.form-tile--select select {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0 1.75rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  cursor: pointer;
  appearance: none;
  outline: none;
}

.form-tile--select .select-wrap svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: #737373;
  pointer-events: none;
}

.btn-search {
  display: flex;
  min-height: 3rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 0.75rem;
  background: var(--accent);
  padding: 0 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background 0.2s;
}

@media (min-width: 1024px) {
  .btn-search {
    min-height: 5.5rem;
  }
}

.btn-search:hover {
  background: var(--accent-hover);
}

.btn-search svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ============================================
   Popular Routes
   ============================================ */

.routes-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .routes-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.region-select {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.region-select select {
  appearance: none;
  background: transparent;
  border: none;
  padding: 0.25rem 1.75rem 0.25rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #737373;
  cursor: pointer;
  outline: none;
  transition: color 0.2s;
}

.region-select select:hover {
  color: #262626;
}

.region-select svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: #a3a3a3;
  pointer-events: none;
}

.routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .routes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.route-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(245, 245, 245, 0.8);
  background: var(--card-bg);
  transition: all 0.2s;
  cursor: pointer;
}

.route-card:hover {
  border-color: transparent;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.route-card__image-wrap {
  padding: 0.75rem 0.75rem 0;
}

.route-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #e5e5e5;
}

.route-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.route-card:hover .route-card__image img {
  transform: scale(1.02);
}

.route-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.75rem 1rem 1rem;
}

.route-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.route-card__header-left {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 500;
  color: #737373;
}

.route-card__header-left--bold {
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
}

.route-card__header-right {
  flex-shrink: 0;
  text-align: right;
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
}

.flight-legs {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.flight-leg {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
}

.flight-leg__city {
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
}

.flight-leg__airport {
  margin-top: 0.125rem;
  font-size: 0.7rem;
  line-height: 1.375;
  color: #737373;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.flight-leg__to {
  text-align: right;
}

.plane-icon-wrap {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--gold);
  color: var(--foreground);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.plane-icon-wrap svg {
  width: 1rem;
  height: 1rem;
}

.leg-divider {
  border-top: 1px solid rgba(229, 229, 229, 0.9);
}

.route-card__price {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(229, 229, 229, 0.7);
  font-size: 0.875rem;
}

.route-card__price strong {
  font-weight: 700;
  color: #000;
}

.route-card__arrow {
  font-size: 1rem;
  color: #000;
  transition: transform 0.2s;
}

.route-card:hover .route-card__arrow {
  transform: translateX(2px);
}

/* ============================================
   Inspired Trips
   ============================================ */

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

.btn-scroll {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #e5e5e5;
  background: #fff;
  font-size: 1.25rem;
  color: #404040;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-scroll:hover {
  background: #fafafa;
}

@media (min-width: 768px) {
  .btn-scroll {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .btn-scroll {
    display: none;
  }
}

.trips-scroller {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.trips-scroller::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .trips-scroller {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    padding-bottom: 0;
  }
}

.trip-card {
  position: relative;
  height: 16rem;
  min-width: 85%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 1rem;
  scroll-snap-align: center;
}

@media (min-width: 640px) {
  .trip-card {
    min-width: 420px;
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .trip-card {
    min-width: 0;
  }
}

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

.trip-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    transparent 100%
  );
}

.trip-card__tag {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--foreground);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.trip-card__title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
  .trip-card__title {
    font-size: 3rem;
  }
}

/* ============================================
   Popular Airlines
   ============================================ */

.airlines-section {
  padding-top: 0.5rem;
  padding-bottom: 4rem;
}

.airlines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .airlines-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .airlines-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .airlines-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.airline-item {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e5e5;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.airline-badge {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
}

.airline-name {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.375;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .airline-name {
    font-size: 0.875rem;
  }
}

/* Airline gradient colors */
.grad-green-600 { background: linear-gradient(to bottom right, #16a34a, #166534); }
.grad-red-600 { background: linear-gradient(to bottom right, #dc2626, #991b1b); }
.grad-maroon { background: linear-gradient(to bottom right, #5c0a33, #8a1049); }
.grad-red-700 { background: linear-gradient(to bottom right, #b91c1c, #7f1d1d); }
.grad-amber { background: linear-gradient(to bottom right, #f59e0b, #b45309); }
.grad-green-700 { background: linear-gradient(to bottom right, #15803d, #14532d); }
.grad-blue-800 { background: linear-gradient(to bottom right, #1e40af, #172554); }
.grad-blue-600 { background: linear-gradient(to bottom right, #2563eb, #1e40af); }
.grad-emerald { background: linear-gradient(to bottom right, #065f46, #022c22); }
.grad-red-500 { background: linear-gradient(to bottom right, #ef4444, #b91c1c); }
.grad-sky { background: linear-gradient(to bottom right, #0369a1, #1e3a8a); }
.grad-rose { background: linear-gradient(to bottom right, #e11d48, #9f1239); }
.grad-indigo { background: linear-gradient(to bottom right, #4338ca, #1e1b4b); }
.grad-orange { background: linear-gradient(to bottom right, #ea580c, #9a3412); }
.grad-slate { background: linear-gradient(to bottom right, #475569, #1e293b); }
.grad-teal { background: linear-gradient(to bottom right, #0d9488, #134e4a); }
.grad-blue-500 { background: linear-gradient(to bottom right, #3b82f6, #1d4ed8); }
.grad-violet { background: linear-gradient(to bottom right, #6d28d9, #4c1d95); }
.grad-fuchsia { background: linear-gradient(to bottom right, #c026d3, #701a75); }
.grad-cyan { background: linear-gradient(to bottom right, #0891b2, #155e75); }

/* ============================================
   Footer
   ============================================ */

.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--footer-from), var(--footer-to));
  color: #d4d4d4;
}

.site-footer__watermark {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 18%);
  font-size: clamp(3.5rem, 16vw, 10rem);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1;
  letter-spacing: -0.025em;
  color: rgba(255, 255, 255, 0.08);
  user-select: none;
}

.site-footer__content {
  position: relative;
  z-index: 10;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}

.footer-col p,
.footer-col li {
  font-size: 0.875rem;
}

.footer-col p {
  margin-top: 1rem;
  max-width: 24rem;
  line-height: 1.625;
  color: #a3a3a3;
}

.footer-col ul {
  margin-top: 1rem;
}

.footer-col li + li {
  margin-top: 0.5rem;
}

.footer-col a {
  color: #a3a3a3;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.social-btn {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(64, 64, 64, 0.8);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background 0.2s;
}

.social-btn:hover {
  background: #525252;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.payment-badge {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.payment-badge--visa { color: #1e3a8a; }
.payment-badge--mc { color: #b91c1c; }
.payment-badge--amex { color: #171717; }

.footer-copyright {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.75rem;
  color: #737373;
}

/* ============================================
   Coming Soon Modal
   ============================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(26, 32, 44, 0.55);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.modal-dialog {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 28rem;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid #f5f5f5;
  background: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
  .modal-overlay {
    padding: 1.5rem;
  }

  .modal-dialog {
    padding: 2rem;
  }
}

.modal-logo {
  display: flex;
  justify-content: center;
}

.modal-logo span {
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-logo svg {
  width: 100%;
  height: 100%;
}

.modal-title {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

.modal-desc {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.625;
  color: #525252;
}

.btn-modal-close {
  margin-top: 2rem;
  width: 100%;
  padding: 0.875rem;
  border: none;
  border-radius: 0.75rem;
  background: var(--foreground);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-modal-close:hover {
  background: #2d3748;
}

body.modal-open {
  overflow: hidden;
}
