@import "https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap";
/* [project]/src/styles/globals.css [client] (css) */
:root {
  --brand-primary: #ff3b6b;
  --brand-secondary: #ff7c2a;
  --brand-tertiary: #7c3aed;
  --brand-cyan: #06b6d4;
  --brand-yellow: #fbbf24;
  --grad-hero: linear-gradient(135deg, #0f0c29 0%, #1a0533 40%, #0c1445 100%);
  --grad-brand: linear-gradient(135deg, #ff3b6b 0%, #ff7c2a 100%);
  --grad-violet: linear-gradient(135deg, #7c3aed 0%, #ff3b6b 100%);
  --grad-card: linear-gradient(145deg, #ffffff0a 0%, #ffffff03 100%);
  --grad-glow: radial-gradient(circle at 50% 50%, #ff3b6b26 0%, transparent 70%);
  --bg: #08070f;
  --bg2: #0f0d1a;
  --bg3: #161428;
  --surface: #ffffff0d;
  --surface2: #ffffff14;
  --surface3: #ffffff1f;
  --border: #ffffff17;
  --border2: #ffffff29;
  --border-brand: #ff3b6b59;
  --text: #f7f6ff;
  --text2: #c8c4e0;
  --muted: #8b85a8;
  --accent: #ff3b6b;
  --accent2: #e8225a;
  --accent-soft: #ff3b6b26;
  --accent-glow: #ff3b6b4d;
  --green: #10d97e;
  --red: #ff4560;
  --yellow: #fbbf24;
  --orange: #ff7c2a;
  --purple: #7c3aed;
  --teal: #06b6d4;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 4px 16px #00000059, 0 1px 3px #00000080;
  --shadow-lg: 0 12px 40px #0000008c, 0 4px 12px #0006;
  --shadow-xl: 0 24px 64px #000000a6, 0 8px 24px #00000080;
  --shadow-brand: 0 8px 32px #ff3b6b59, 0 2px 8px #ff3b6b33;
  --shadow-glow: 0 0 40px #ff3b6b33, 0 0 80px #7c3aed1a;
  --nav-h: 64px;
}

[data-theme="light"] {
  --bg: #fafafa;
  --bg2: #fff;
  --bg3: #f0f0f5;
  --surface: #00000008;
  --surface2: #0000000f;
  --surface3: #0000001a;
  --border: #00000014;
  --border2: #00000024;
  --border-brand: #ff3b6b4d;
  --text: #12111a;
  --text2: #3e3b52;
  --muted: #6e6a82;
  --accent: #e8225a;
  --accent2: #c71850;
  --accent-soft: #e8225a1a;
  --accent-glow: #e8225a33;
  --green: #059c5f;
  --red: #dc2626;
  --yellow: #d97706;
  --orange: #ea580c;
  --purple: #6d28d9;
  --teal: #0891b2;
  --shadow: 0 2px 12px #00000014, 0 1px 3px #0000000f;
  --shadow-lg: 0 8px 32px #0000001f, 0 2px 8px #00000014;
  --shadow-xl: 0 16px 48px #00000029, 0 4px 16px #0000001a;
  --shadow-brand: 0 8px 32px #e8225a40, 0 2px 8px #e8225a26;
  --grad-hero: linear-gradient(135deg, #1a0533 0%, #0c1445 100%);
}

[data-theme="light"] .alert-error {
  color: #9b0d0d;
}

[data-theme="light"] .alert-success {
  color: #0a5c26;
}

[data-theme="light"] .alert-info {
  color: #004a99;
}

[data-theme="light"] .alert-warning {
  color: #7c4800;
}

[data-theme="light"] ::-webkit-scrollbar-thumb {
  background: #0000002e;
}

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

input, button, textarea, select {
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  font-family: Plus Jakarta Sans, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
  transition: background-color .25s, color .25s;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -.03em;
  color: var(--text);
  font-family: Plus Jakarta Sans, sans-serif;
  font-weight: 800;
  line-height: 1.1;
}

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.card {
  background: var(--grad-card);
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--shadow);
  transition: transform .25s cubic-bezier(.22, .68, 0, 1.2), box-shadow .25s, border-color .2s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border2);
  transform: translateY(-5px)scale(1.01);
}

.card-static {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--shadow);
}

.btn {
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -.01em;
  -webkit-user-select: none;
  user-select: none;
  border: none;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1.2rem;
  font-size: .85rem;
  font-weight: 700;
  line-height: 1;
  transition: all .2s cubic-bezier(.22, .68, 0, 1.2);
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.btn:after {
  content: "";
  background: #fff0;
  transition: background .2s;
  position: absolute;
  inset: 0;
}

.btn:hover:after {
  background: #ffffff12;
}

.btn:active {
  transform: scale(.96);
}

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 40px #ff3b6b80, 0 4px 12px #ff7c2a4d;
}

.btn-secondary {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--surface3);
  border-color: var(--border2);
}

.btn-ghost {
  color: var(--muted);
  background: none;
}

.btn-ghost:hover {
  color: var(--text);
  background: var(--surface);
}

.btn-outline {
  color: var(--text);
  border: 1.5px solid var(--border2);
  background: none;
  border-radius: 50px;
}

.btn-outline:hover {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-glass {
  color: var(--text);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #ffffff14;
  border: 1.5px solid #ffffff2e;
  border-radius: 50px;
}

.btn-glass:hover {
  background: #ffffff24;
  border-color: #ffffff47;
}

.btn-destructive {
  color: var(--red);
  background: #ff453a1f;
  border: 1px solid #ff453a40;
}

.btn-destructive:hover {
  background: #ff453a33;
}

.btn-lg {
  border-radius: 50px;
  padding: .85rem 2rem;
  font-size: .95rem;
  font-weight: 800;
}

.btn-sm {
  border-radius: 50px;
  padding: .4rem .85rem;
  font-size: .78rem;
}

.btn-icon {
  background: var(--surface);
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  color: var(--muted);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: all .2s;
  display: inline-flex;
}

.btn-icon:hover {
  color: var(--text);
  background: var(--surface2);
  border-color: var(--border2);
}

.input {
  background: var(--bg3);
  border: 1.5px solid var(--border);
  width: 100%;
  color: var(--text);
  border-radius: 50px;
  outline: none;
  padding: .7rem 1rem;
  font-family: inherit;
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
}

.input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.input::placeholder {
  color: var(--muted);
}

.badge {
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 999px;
  align-items: center;
  gap: .3rem;
  padding: .2rem .65rem;
  font-size: .68rem;
  font-weight: 700;
  display: inline-flex;
}

.badge-event {
  color: #ff8fa9;
  background: #ff3b6b2e;
  border: 1px solid #ff3b6b4d;
}

.badge-virtual {
  color: #67e8f9;
  background: #06b6d42e;
  border: 1px solid #06b6d44d;
}

.badge-place {
  color: #6ee7b7;
  background: #10d97e2e;
  border: 1px solid #10d97e4d;
}

.badge-private {
  color: #fde68a;
  background: #fbbf242e;
  border: 1px solid #fbbf244d;
}

.badge-default {
  background: var(--surface2);
  color: var(--muted);
  border: 1px solid var(--border);
}

.tag {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  border-radius: 999px;
  align-items: center;
  padding: .4rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
}

.tag:hover, .tag.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.segmented {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  gap: 2px;
  padding: 3px;
  display: inline-flex;
}

.segmented-item {
  color: var(--muted);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  background: none;
  border: none;
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  transition: all .2s;
}

.segmented-item:hover {
  color: var(--text);
}

.segmented-item.active {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 2px 8px #ff3b6b59;
}

.toggle {
  background: var(--surface2);
  border: 1px solid var(--border);
  cursor: pointer;
  border-radius: 999px;
  flex-shrink: 0;
  width: 44px;
  height: 26px;
  transition: all .2s;
  position: relative;
}

.toggle.active {
  background: var(--accent);
  border-color: var(--accent2);
}

.toggle-knob {
  background: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  transition: transform .2s;
  position: absolute;
  top: 2px;
  left: 2px;
  box-shadow: 0 1px 4px #0000004d;
}

.toggle.active .toggle-knob {
  transform: translateX(18px);
}

.alert {
  border-radius: var(--radius-sm);
  align-items: flex-start;
  gap: .6rem;
  padding: .85rem 1.1rem;
  font-size: .85rem;
  line-height: 1.55;
  display: flex;
}

.alert-error {
  color: #fca5a5;
  background: #ff453a1a;
  border: 1px solid #ff453a40;
}

.alert-success {
  color: #6ee7b7;
  background: #10d97e14;
  border: 1px solid #10d97e33;
  font-size: .8rem;
}

.alert-info {
  color: #67e8f9;
  background: #06b6d414;
  border: 1px solid #06b6d433;
}

.alert-warning {
  color: #fde68a;
  background: #fbbf241a;
  border: 1px solid #fbbf2440;
}

.form-label {
  color: var(--muted);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: .4rem;
  font-size: .8rem;
  font-weight: 600;
  display: block;
}

.form-group {
  margin-bottom: 1.25rem;
}

.listing-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  display: grid;
}

.section {
  padding: 4rem 0;
}

.section-title {
  letter-spacing: -.04em;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  font-weight: 900;
}

.section-title span {
  background: var(--grad-brand);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.divider {
  background: var(--border);
  height: 1px;
  margin: 1.5rem 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spinner {
  border: 2.5px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin: 4rem auto;
  animation: .7s linear infinite spin;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(200%);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px #ff3b6b4d;
  }

  50% {
    box-shadow: 0 0 40px #ff3b6b99, 0 0 80px #ff7c2a33;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.fade-up {
  animation: .4s both fadeUp;
}

.fade-in {
  animation: .4s both fadeIn;
}

.empty-state {
  text-align: center;
  color: var(--muted);
  padding: 4rem 2rem;
}

.empty-state h3 {
  color: var(--text);
  margin-bottom: .5rem;
  font-size: 1.1rem;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: #ffffff1f;
  border-radius: 3px;
}

.tooltip-wrapper {
  display: inline-flex;
  position: relative;
}

.tooltip-wrapper:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%)translateY(0);
}

.tooltip {
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--text2);
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  z-index: 50;
  border-radius: 8px;
  padding: .4rem .8rem;
  font-size: .72rem;
  transition: all .15s;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%)translateY(4px);
}

.progress-track {
  background: var(--surface2);
  border-radius: 999px;
  height: 5px;
  overflow: hidden;
}

.progress-fill {
  background: var(--grad-brand);
  border-radius: 999px;
  height: 100%;
  transition: width .4s;
}

.avatar {
  color: #fff;
  background: var(--grad-brand);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  display: inline-flex;
}

.avatar-sm {
  width: 30px;
  height: 30px;
  font-size: .75rem;
}

.avatar-md {
  width: 38px;
  height: 38px;
  font-size: .9rem;
}

.avatar-lg {
  width: 52px;
  height: 52px;
  font-size: 1.15rem;
}

@media (max-width: 1024px) {
  .listing-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 58px;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .listing-grid {
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
  }

  footer, .desktop-nav {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex !important;
  }

  .detail-grid {
    grid-template-columns: 1fr !important;
  }

  .sticky-panel {
    position: relative !important;
    top: 0 !important;
  }

  .checkout-grid {
    grid-template-columns: 1fr !important;
  }

  .checkout-summary-first {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }

  .theme-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .listing-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }
}

.bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .bottom-nav {
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-top: 1px solid var(--border);
    z-index: 1000;
    height: 64px;
    padding-bottom: env(safe-area-inset-bottom);
    background: #08070feb;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -4px 24px #0006;
  }

  .layout-main {
    padding-bottom: 80px;
  }
}

.navbar {
  z-index: 100;
  height: var(--nav-h);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-bottom: 1px solid var(--border);
  background: #08070fcc;
  transition: background .25s;
  position: sticky;
  top: 0;
}

[data-theme="light"] .navbar {
  background: #fafafad9;
}

.hero-section {
  background-color: var(--bg2);
  text-align: center;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-section:before, .hero-section:after {
  display: none;
}

.hero-eyebrow {
  color: var(--brand-primary);
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #ff3b6b26;
  border: 1px solid #ff3b6b4d;
  border-radius: 999px;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  padding: .4rem 1.1rem;
  font-size: .78rem;
  font-weight: 700;
  animation: .5s both fadeUp;
  display: inline-flex;
}

.hero-title {
  letter-spacing: -.04em;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  animation: .5s .1s both fadeUp;
}

.hero-title .grad-text {
  background: var(--grad-brand);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-sub {
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  line-height: 1.65;
  animation: .5s .18s both fadeUp;
}

.hero-search-wrap {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  animation: .5s .26s both fadeUp;
}

.hero-search-box {
  background: var(--surface);
  border: 1.5px solid var(--border);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 999px;
  align-items: center;
  gap: .5rem;
  padding: .35rem .35rem .35rem 1.5rem;
  transition: border-color .2s, box-shadow .2s;
  display: flex;
}

.hero-search-box:focus-within {
  border-color: #ff3b6b99;
  box-shadow: 0 0 0 4px #ff3b6b1f;
}

.hero-search-input {
  color: var(--text);
  background: none;
  border: none;
  outline: none;
  flex: 1;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 500;
}

.hero-search-input::placeholder {
  color: var(--muted);
  font-weight: 400;
}

.category-pill {
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text2);
  white-space: nowrap;
  border-radius: 999px;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.1rem;
  font-size: .83rem;
  font-weight: 700;
  transition: all .22s cubic-bezier(.22, .68, 0, 1.2);
  display: inline-flex;
}

.category-pill svg {
  color: var(--pill-color, var(--accent));
  flex-shrink: 0;
  transition: transform .2s;
}

.category-pill:hover {
  border-color: var(--pill-color, var(--accent));
  color: var(--pill-color, var(--accent));
  background: color-mix(in srgb, var(--pill-color, var(--accent)) 12%, transparent);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--pill-color, var(--accent)) 35%, transparent);
  transform: translateY(-2px);
}

.category-pill:hover svg {
  transform: scale(1.15);
}

.ai-search-btn {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background: linear-gradient(135deg, #ff3b6b 0%, #ff7c2a 100%);
  border: none;
  border-radius: 50px;
  flex-shrink: 0;
  align-items: center;
  gap: .45rem;
  padding: .65rem 1.4rem;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 700;
  transition: all .2s cubic-bezier(.22, .68, 0, 1.2);
  display: flex;
  box-shadow: 0 4px 16px #ff3b6b66;
}

.ai-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px #ff3b6b8c;
}

.ai-search-btn:active {
  transform: scale(.97);
}

.ai-search-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.suggestion-chip {
  color: #fff9;
  cursor: pointer;
  background: #ffffff12;
  border: 1px solid #ffffff21;
  border-radius: 999px;
  align-items: center;
  gap: .35rem;
  padding: .32rem .88rem;
  font-family: inherit;
  font-size: .78rem;
  font-weight: 500;
  transition: all .18s;
  display: inline-flex;
}

.suggestion-chip:hover {
  color: #fff;
  background: #ff3b6b2e;
  border-color: #ff3b6b61;
}

.listing-card {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  flex-direction: column;
  height: 100%;
  transition: transform .3s cubic-bezier(.22, .68, 0, 1.2), box-shadow .3s, border-color .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.listing-card:hover {
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border2);
  border-color: #ff3b6b33;
  transform: translateY(-6px)scale(1.01);
}

.listing-card-cover {
  background: var(--bg3);
  flex-shrink: 0;
  height: 185px;
  position: relative;
  overflow: hidden;
}

.listing-card-cover img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s;
}

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

.listing-card-body {
  flex-direction: column;
  flex: 1;
  gap: .35rem;
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
}

.listing-card-title {
  letter-spacing: -.02em;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
}

.listing-card-meta {
  flex-direction: column;
  flex: 1;
  gap: .22rem;
  margin-top: .1rem;
  display: flex;
}

.listing-card-meta-item {
  color: var(--muted);
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 500;
  display: flex;
}

.listing-card-footer {
  border-top: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  margin-top: .85rem;
  padding-top: .85rem;
  display: flex;
}

.listing-card-price {
  letter-spacing: -.025em;
  background: var(--grad-brand);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1rem;
  font-weight: 800;
}

.listing-card-price.free {
  -webkit-text-fill-color: var(--green);
  color: var(--green);
  background: none;
}

.search-section {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.search-container {
  max-width: 800px;
  margin: 0 auto;
}

.carousel-section {
  padding: 2rem 0;
  overflow: hidden;
}

.carousel-container {
  border-radius: var(--radius-xl);
  width: 100%;
  height: clamp(260px, 48vw, 460px);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  opacity: 0;
  transition: opacity .9s ease-in-out;
  position: absolute;
  inset: 0;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.carousel-overlay {
  color: #fff;
  background: linear-gradient(to top, #000000e0 0%, #0006 45%, #0000 100%);
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  position: absolute;
  inset: 0;
}

.carousel-info {
  max-width: 620px;
}

.carousel-title {
  letter-spacing: -.05em;
  text-shadow: 0 2px 24px #00000080;
  margin-bottom: .9rem;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.08;
}

.carousel-meta {
  opacity: .9;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: .88rem;
  font-weight: 500;
  display: flex;
}

.carousel-dots {
  gap: .5rem;
  display: flex;
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.carousel-dot {
  cursor: pointer;
  background: #ffffff4d;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  transition: all .2s;
}

.carousel-dot.active {
  background: var(--brand-primary);
  border-radius: 4px;
  width: 28px;
}

.carousel-nav {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fff;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  background: #ffffff1f;
  border: 1px solid #fff3;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-container:hover .carousel-nav {
  opacity: 1;
}

.carousel-nav:hover {
  background: #ff3b6b66;
  border-color: #ff3b6b80;
}

.carousel-nav-prev {
  left: 1.25rem;
}

.carousel-nav-next {
  right: 1.25rem;
}

.stats-bar {
  background: linear-gradient(135deg, #ff3b6b14 0%, #7c3aed14 100%);
  border-top: 1px solid #ff3b6b26;
  border-bottom: 1px solid #7c3aed26;
  padding: 0;
}

.stat-item {
  text-align: center;
  padding: 2rem 1.25rem;
  position: relative;
}

.stat-item + .stat-item:before {
  content: "";
  background: var(--border);
  width: 1px;
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 0;
}

.stat-value {
  letter-spacing: -.04em;
  background: var(--grad-brand);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: .35rem;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .72rem;
  font-weight: 600;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: left;
  padding: 2rem 1.75rem;
  transition: transform .25s cubic-bezier(.22, .68, 0, 1.2), box-shadow .25s, border-color .2s;
  position: relative;
  overflow: hidden;
}

.step-card:before {
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, #ff3b6b0d 0%, #0000 60%);
  transition: opacity .3s;
  position: absolute;
  inset: 0;
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: #ff3b6b40;
  transform: translateY(-6px);
}

.step-card:hover:before {
  opacity: 1;
}

.step-number {
  letter-spacing: -.05em;
  background: var(--grad-brand);
  -webkit-text-fill-color: transparent;
  opacity: .18;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: -.5rem;
  right: 1.25rem;
}

.step-icon-wrap {
  width: 48px;
  height: 48px;
  color: var(--accent);
  background: #ff3b6b1f;
  border: 1px solid #ff3b6b40;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
  display: flex;
}

.cta-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(80% 60%, #ff3b6b1f 0%, #0000 70%), radial-gradient(40% 40% at 10% 100%, #7c3aed1a 0%, #0000 60%);
  position: absolute;
  inset: 0;
}

.cta-card {
  border-radius: var(--radius-xl);
  text-align: center;
  background: linear-gradient(135deg, #ff3b6b14 0%, #7c3aed14 100%);
  border: 1px solid #ff3b6b33;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-card:before {
  content: "";
  pointer-events: none;
  background: conic-gradient(from 45deg, #ff3b6b0d, #7c3aed0d, #06b6d408, #ff3b6b0d);
  width: 200%;
  height: 200%;
  animation: 20s linear infinite spin;
  position: absolute;
  top: -50%;
  left: -50%;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3.5rem 0 3rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .cta-card {
    padding: 2.5rem 1.5rem;
  }

  .carousel-overlay {
    padding: 1.25rem;
  }

  .carousel-dots {
    bottom: .75rem;
  }

  .stat-item + .stat-item:before {
    display: none;
  }

  .listing-sidebar {
    display: none !important;
  }

  .mobile-book-bar {
    display: flex !important;
  }
}

.mobile-book-bar {
  z-index: 900;
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--border);
  background: #08070ff2;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .75rem 1.25rem;
  display: none;
  position: fixed;
  bottom: 64px;
  left: 0;
  right: 0;
  box-shadow: 0 -8px 32px #0006;
}

@keyframes marquee-train {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-section {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.marquee-fade {
  z-index: 10;
  pointer-events: none;
  width: 120px;
  position: absolute;
  top: 0;
  bottom: 0;
}

.marquee-fade-left {
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
  left: 0;
}

.marquee-fade-right {
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
  right: 0;
}

.marquee-track {
  will-change: transform;
  gap: 1rem;
  width: max-content;
  animation: 32s linear infinite marquee-train;
  display: flex;
}

.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-card {
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  border-radius: 16px;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: flex-end;
  width: 150px;
  height: 225px;
  padding: .85rem;
  transition: transform .25s cubic-bezier(.22, .68, 0, 1.2), box-shadow .25s, border-color .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.marquee-card:before {
  content: "";
  background: linear-gradient(135deg, color-mix(in srgb, var(--card-color) 20%, transparent) 0%, transparent 60%);
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.marquee-card:hover {
  box-shadow: 0 16px 48px #0006, 0 0 0 1px var(--card-color);
  border-color: var(--card-color);
  transform: translateY(-6px)scale(1.04);
}

.marquee-card-glow {
  background: var(--card-color);
  opacity: .18;
  filter: blur(32px);
  pointer-events: none;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  transition: opacity .3s;
  position: absolute;
  top: -30%;
  right: -20%;
}

.marquee-card:hover .marquee-card-glow {
  opacity: .35;
}

.marquee-card-icon {
  background: color-mix(in srgb, var(--card-color) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--card-color) 35%, transparent);
  width: 40px;
  height: 40px;
  color: var(--card-color);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  transition: transform .25s;
  display: flex;
  position: absolute;
  top: .85rem;
  right: .85rem;
}

.marquee-card:hover .marquee-card-icon {
  transform: scale(1.1)rotate(-5deg);
}

.marquee-card-content {
  z-index: 1;
  flex-direction: column;
  gap: .22rem;
  display: flex;
  position: relative;
}

.marquee-card-title {
  color: var(--text);
  letter-spacing: -.025em;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.2;
  display: -webkit-box;
  overflow: hidden;
}

.marquee-card-sub {
  color: var(--muted);
  align-items: center;
  gap: .28rem;
  font-size: .72rem;
  font-weight: 500;
  display: flex;
}

.marquee-card-badge {
  background: var(--card-color);
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: 0;
  border-radius: 999px;
  align-items: center;
  gap: .25rem;
  padding: .22rem .6rem;
  font-size: .65rem;
  font-weight: 800;
  transition: opacity .2s, transform .2s;
  display: flex;
  position: absolute;
  bottom: .85rem;
  right: .85rem;
  transform: translateY(4px);
}

.marquee-card:hover .marquee-card-badge {
  opacity: 1;
  transform: translateY(0);
}

/* [next]/internal/font/google/plus_jakarta_sans_ed7ad5ec.module.css [client] (css) */
@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/0b1dc8ddaa74ba49-s.8624a701.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/e629b5bc06499d58-s.8e66b869.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/1a099d89ee94ee96-s.f6ed4c33.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/fba5a26ea33df6a3-s.p.1bbdebe6.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/0b1dc8ddaa74ba49-s.8624a701.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/e629b5bc06499d58-s.8e66b869.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/1a099d89ee94ee96-s.f6ed4c33.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/fba5a26ea33df6a3-s.p.1bbdebe6.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/0b1dc8ddaa74ba49-s.8624a701.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/e629b5bc06499d58-s.8e66b869.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/1a099d89ee94ee96-s.f6ed4c33.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/fba5a26ea33df6a3-s.p.1bbdebe6.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/0b1dc8ddaa74ba49-s.8624a701.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/e629b5bc06499d58-s.8e66b869.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/1a099d89ee94ee96-s.f6ed4c33.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/fba5a26ea33df6a3-s.p.1bbdebe6.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../media/0b1dc8ddaa74ba49-s.8624a701.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../media/e629b5bc06499d58-s.8e66b869.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../media/1a099d89ee94ee96-s.f6ed4c33.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Plus Jakarta Sans;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../media/fba5a26ea33df6a3-s.p.1bbdebe6.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Plus Jakarta Sans Fallback;
  src: local(Arial);
  ascent-override: 98.88%;
  descent-override: 21.15%;
  line-gap-override: 0.0%;
  size-adjust: 104.98%;
}

.plus_jakarta_sans_ed7ad5ec-module__WXLUcW__className {
  font-family: Plus Jakarta Sans, Plus Jakarta Sans Fallback;
  font-style: normal;
}

.plus_jakarta_sans_ed7ad5ec-module__WXLUcW__variable {
  --font-plus-jakarta: "Plus Jakarta Sans", "Plus Jakarta Sans Fallback";
}

/*# sourceMappingURL=%5Broot-of-the-server%5D__f8e55dd6._.css.map*/