/* ===========================
   5:5 Nail Bar — Main Styles
   Generated from Figma/React source
   Using theme.css design tokens as CSS custom properties
   =========================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* --- Design Tokens (from theme.css) --- */
:root {
  --background: #ffffff;
  --foreground: #0a0a0a;
  --card: #ffffff;
  --card-foreground: #0a0a0a;
  --primary: #030213;
  --primary-foreground: #ffffff;
  --secondary: oklch(0.95 0.0058 264.53);
  --secondary-foreground: #030213;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --accent: #e9ebef;
  --accent-foreground: #030213;
  --destructive: #d4183d;
  --border: rgba(0, 0, 0, 0.1);
  --input-background: #f3f3f5;
  --ring: oklch(0.708 0 0);
  --radius: 0.625rem;

  /* Brand Neon Colors */
  --neon-pink: #ff1493;
  --neon-yellow: #ffff00;
  --dark-bg: #1a1a1a;
  --darker-bg: #0a0a0a;
  --border-dark: #333333;
}

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

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--dark-bg);
  color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-dark);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.logo-pink {
  color: var(--neon-pink);
  text-shadow: 0 0 10px rgba(255, 20, 147, 0.8);
}

.logo-yellow {
  color: var(--neon-yellow);
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--neon-pink);
}

.cart-btn {
  position: relative;
  background: none;
  color: #ffffff;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.cart-btn:hover {
  color: var(--neon-pink);
}

.cart-btn svg {
  width: 24px;
  height: 24px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--neon-pink);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark-bg);
  padding: 8rem 1.5rem 4rem;
}

.hero-glows {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-glow-1 {
  top: 20%;
  left: 20%;
  background: var(--neon-pink);
  opacity: 0.15;
}

.hero-glow-2 {
  bottom: 20%;
  right: 20%;
  background: var(--neon-yellow);
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 48rem;
}

.hero-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero-title-pink {
  color: var(--neon-pink);
  text-shadow: 0 0 20px rgba(255, 20, 147, 0.9);
  display: block;
}

.hero-title-yellow {
  color: var(--neon-yellow);
  text-shadow: 0 0 20px rgba(255, 255, 0, 0.9);
  display: block;
}

.hero-sparkle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.hero-tagline {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-yellow));
  color: #000;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.25rem 3rem;
  border-radius: 9999px;
  box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
  transition: all 0.2s ease;
}

.hero-cta:hover {
  opacity: 0.9;
  box-shadow: 0 0 40px rgba(255, 20, 147, 0.7);
  transform: translateY(-1px);
}

/* ===========================
   SECTION TITLES (shared)
   =========================== */
.section-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
}

.section-title-pink {
  color: var(--neon-pink);
  text-shadow: 0 0 15px rgba(255, 20, 147, 0.8);
}

.section-title-white {
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 2rem;
}

/* ===========================
   SERVICES SWIPE
   =========================== */
.services-section {
  padding: 4rem 1.5rem;
  background: var(--dark-bg);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 2rem;
}

.progress-bar {
  display: flex;
  gap: 4px;
  max-width: 400px;
  margin: 0 auto 2rem;
}

.progress-segment {
  flex: 1;
  height: 4px;
  background: var(--border-dark);
  border-radius: 9999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.services-cards-area {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card {
  position: absolute;
  width: 100%;
  max-width: 28rem;
  height: 500px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(255, 20, 147, 0.3);
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: grab;
}

.service-card:active {
  cursor: grabbing;
}

.service-card-image {
  height: 60%;
  overflow: hidden;
}

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

.service-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.service-card-body {
  padding: 1.5rem;
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.service-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.service-card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-yellow);
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.6);
}

.service-card-desc {
  color: #d1d5db;
  line-height: 1.6;
}

.services-empty {
  text-align: center;
  padding: 5rem 0;
}

.services-empty h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.services-empty p {
  font-size: 1.125rem;
  color: #9ca3af;
  margin-bottom: 2rem;
}

.btn-reset {
  display: inline-block;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-yellow));
  color: #000;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  transition: opacity 0.2s ease;
}

.btn-reset:hover {
  opacity: 0.9;
}

.swipe-hint {
  text-align: center;
  margin-top: 1.5rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.cart-status {
  text-align: center;
  margin-top: 2rem;
}

.cart-status span {
  color: var(--neon-pink);
  font-weight: 700;
}

/* ===========================
   MOOD SELECTOR
   =========================== */
.mood-section {
  padding: 4rem 1.5rem;
  background: var(--dark-bg);
}

.mood-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mood-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.mood-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mood-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.mood-card:hover {
  transform: scale(1.03);
  border-color: rgba(255, 255, 255, 0.2);
}

.mood-card-emoji {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  display: block;
}

.mood-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.375rem;
}

.mood-card-desc {
  font-size: 0.875rem;
  color: #9ca3af;
}

.mood-card-overlay {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* ===========================
   MOOD SUBSECTIONS (modal)
   =========================== */
.mood-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.mood-modal {
  width: 100%;
  max-width: 80rem;
  max-height: 90vh;
  background: var(--dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mood-modal-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mood-modal-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mood-modal-emoji {
  font-size: 2rem;
}

.mood-modal-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
}

.mood-modal-close {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 0.5rem;
  color: #ffffff;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mood-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mood-modal-subtitle {
  color: #9ca3af;
  margin-top: 0.25rem;
}

.mood-modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

.subsection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.subsection-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.subsection-card:hover {
  border-color: rgba(255, 20, 147, 0.5);
  box-shadow: 0 0 30px rgba(255, 20, 147, 0.3);
  transform: translateY(-2px);
}

.subsection-image {
  height: 12rem;
  overflow: hidden;
}

.subsection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.subsection-body {
  padding: 1.25rem;
}

.subsection-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.subsection-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

.subsection-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--neon-yellow);
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.6);
}

.subsection-desc {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.btn-add-cart {
  width: 100%;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-yellow));
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
  transition: all 0.2s ease;
}

.btn-add-cart:hover {
  opacity: 0.9;
  box-shadow: 0 0 30px rgba(255, 20, 147, 0.6);
}

/* ===========================
   GALLERY PREVIEW
   =========================== */
.gallery-section {
  padding: 4rem 1.5rem;
  background: var(--dark-bg);
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header {
  margin-bottom: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  height: 500px;
  margin-bottom: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
}

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

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

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay p {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
}

.gallery-item-overlay span {
  color: var(--neon-yellow);
  font-size: 0.75rem;
}

.gallery-cta {
  text-align: center;
}

.btn-gallery {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-yellow));
  color: #000;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
  transition: all 0.2s ease;
}

.btn-gallery:hover {
  opacity: 0.9;
  box-shadow: 0 0 30px rgba(255, 20, 147, 0.6);
}

.btn-gallery svg {
  width: 20px;
  height: 20px;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--darker-bg);
  border-top: 1px solid var(--border-dark);
  padding: 3rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  color: #9ca3af;
  line-height: 1.6;
  max-width: 20rem;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-links li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-links a {
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  color: #6b7280;
  font-size: 0.875rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-socials a {
  color: #9ca3af;
  transition: color 0.2s;
  display: flex;
}

.footer-socials a:hover {
  color: var(--neon-pink);
}

.footer-socials svg {
  width: 24px;
  height: 24px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    height: auto;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .gallery-item {
    height: 200px;
  }

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

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

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

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

  .services-cards-area {
    height: 420px;
  }

  .service-card {
    max-width: 90%;
    height: 420px;
  }

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

@media (max-width: 480px) {
  .header-nav {
    gap: 1.25rem;
  }

  .hero {
    padding-top: 6rem;
  }

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

  .service-card {
    height: 380px;
  }
}

/* ===========================
   UTILITIES
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-8 { margin-top: 2rem; }

/* Sparkle SVG styling */
.sparkle-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Cart Sheet (sidebar) */
.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}

.cart-sheet {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 301;
  width: 100%;
  max-width: 420px;
  background: var(--dark-bg);
  border-left: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}

.cart-sheet-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-sheet-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.cart-sheet-close {
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  padding: 0.375rem;
  color: #fff;
  display: flex;
}

.cart-sheet-close:hover {
  background: rgba(255,255,255,0.2);
}

.cart-sheet-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 0;
  color: #6b7280;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-dark);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: 0.5rem;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}

.cart-item-price {
  color: var(--neon-yellow);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.cart-item-remove {
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  padding: 0.375rem;
  color: #9ca3af;
  align-self: flex-start;
  display: flex;
}

.cart-item-remove:hover {
  background: rgba(212, 24, 61, 0.3);
  color: var(--destructive);
}

.cart-sheet-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-dark);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-total-label {
  font-weight: 600;
  color: #fff;
}

.cart-total-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neon-yellow);
}

.btn-checkout {
  width: 100%;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-yellow));
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem;
  border-radius: 9999px;
  box-shadow: 0 0 20px rgba(255,20,147,0.4);
  transition: all 0.2s;
}

.btn-checkout:hover {
  opacity: 0.9;
  box-shadow: 0 0 30px rgba(255,20,147,0.6);
}

/* ---- BOOKING FORM ---- */
.form-group {
  margin-bottom: 1rem;
}
.form-label {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
  box-sizing: border-box;
}
.form-input:focus {
  border-color: var(--neon-pink);
}
.form-input::placeholder {
  color: rgba(255,255,255,0.3);
}
textarea.form-input {
  resize: vertical;
  min-height: 60px;
}
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
