﻿:root {
  color-scheme: dark;
  --black: #08070a;
  --deep: #120913;
  --night: #1a0b1a;
  --magenta: #ff2e87;
  --hotpink: #ff5fb3;
  --rose: #ff8fd1;
  --silver: #e2d7df;
  --smoke: rgba(255, 255, 255, 0.75);
  --mist: rgba(20, 10, 20, 0.6);
  --glass: rgba(18, 9, 19, 0.78);
  --shadow: rgba(0, 0, 0, 0.5);
  --glow: rgba(255, 95, 179, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background: radial-gradient(circle at top right, #2b0c2a 0%, #110610 55%, #060508 100%);
  color: var(--silver);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  opacity: 0.35;
  z-index: 0;
  mix-blend-mode: screen;
}

.orb-one {
  width: 520px;
  height: 520px;
  top: -140px;
  right: -160px;
  background: radial-gradient(circle, rgba(255, 95, 179, 0.8) 0%, rgba(255, 95, 179, 0) 70%);
}

.orb-two {
  width: 620px;
  height: 620px;
  bottom: -240px;
  left: -200px;
  background: radial-gradient(circle, rgba(255, 46, 135, 0.65) 0%, rgba(255, 46, 135, 0) 72%);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 52px 6vw 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #fff4fb;
  text-transform: uppercase;
}

.logo img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo span {
  display: block;
  line-height: 1.1;
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  flex: 1;
}

.account-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.auth-only {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.login-link {
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 95, 179, 0.55);
  background: rgba(18, 9, 19, 0.7);
  color: #ffe6f3;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.cart-menu {
  position: static;
  display: inline-flex;
  align-items: center;
}

.cart-toggle {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 95, 179, 0.55);
  background: rgba(18, 9, 19, 0.7);
  color: #ffe6f3;
  cursor: pointer;
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff5fb3;
  color: #120913;
  border-radius: 999px;
  font-size: 10px;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.cart-count.hidden {
  display: none;
}

.cart-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 180px;
  background: rgba(12, 8, 14, 0.95);
  border: 1px solid rgba(255, 95, 179, 0.35);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 10;
}

.cart-items {
  display: grid;
  gap: 8px;
  margin: 8px 0;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: #ffe6f3;
  align-items: center;
}

.cart-item-row button {
  background: transparent;
  border: 1px solid rgba(255, 95, 179, 0.6);
  color: #ffe6f3;
  border-radius: 999px;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 11px;
}

.cart-summary {
  margin-top: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 143, 209, 0.9);
}

.cart-empty {
  font-size: 12px;
  color: rgba(255, 230, 243, 0.7);
}

.cart-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #ffe6f3;
  font-size: 13px;
}

.cart-dropdown a:hover {
  background: rgba(255, 95, 179, 0.18);
}

.cart-menu.open .cart-dropdown {
  display: block;
}

.account-link {
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 95, 179, 0.55);
  background: rgba(18, 9, 19, 0.7);
  color: #ffe6f3;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.account-toggle {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 95, 179, 0.55);
  background: rgba(18, 9, 19, 0.7);
  color: #ffe6f3;
  cursor: pointer;
}

.account-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 180px;
  background: rgba(12, 8, 14, 0.95);
  border: 1px solid rgba(255, 95, 179, 0.35);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 10;
}

.account-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #ffe6f3;
  font-size: 13px;
}

.account-dropdown a:hover {
  background: rgba(255, 95, 179, 0.18);
}

.account-menu.open .account-dropdown {
  display: block;
}

.pill {
  text-decoration: none;
  color: #ffe6f3;
  border: 1px solid rgba(255, 95, 179, 0.55);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  transition: all 0.25s ease;
  background: rgba(18, 9, 19, 0.7);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 95, 179, 0.25);
  background: rgba(255, 46, 135, 0.15);
}

.hero-content {
  max-width: 720px;
  margin-top: 70px;
  animation: fadeIn 0.8s ease both;
}

.gallery {
  background: rgba(18, 9, 19, 0.75);
  border: none;
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.4);
  margin-top: 24px;
}

.gallery h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #fff4fb;
}

.gallery-frame {
  height: 430px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 143, 209, 0.7), transparent 55%),
    linear-gradient(135deg, rgba(255, 46, 135, 0.35), rgba(10, 8, 14, 0.95));
  border: 1px solid rgba(255, 95, 179, 0.35);
  box-shadow: inset 0 0 35px rgba(255, 95, 179, 0.25);
  position: relative;
  margin-top: 20px;
}

.gallery-note {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 143, 209, 0.85);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 95, 179, 0.5);
  background: rgba(10, 8, 14, 0.65);
  color: #ffe6f3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.gallery-arrow.left {
  left: 28px;
}

.gallery-arrow.right {
  right: 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: 12px;
  color: var(--rose);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5.4vw, 56px);
  margin: 0 0 18px;
  color: #fff2fa;
}

.lead {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 30px;
  color: rgba(255, 230, 243, 0.85);
}

.hero-metrics {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.metric {
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
}

.metric-label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 143, 209, 0.9);
}

.main {
  position: relative;
  z-index: 1;
  padding: 12px 6vw 90px;
}

.section {
  margin-top: 64px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  flex-wrap: wrap;
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3vw, 36px);
  margin: 0;
  color: #fff2fa;
}

.section p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 230, 243, 0.7);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.card {
  padding: 22px;
  border-radius: 22px;
  text-decoration: none;
  color: #fff4fb;
  background: rgba(18, 9, 19, 0.75);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 95, 179, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(255, 95, 179, 0.25);
  border: 1px solid rgba(255, 95, 179, 0.35);
}

.tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: var(--rose);
}

.card h3 {
  margin: 0;
  font-size: 20px;
  color: #fff7fb;
}

.profile-card {
  width: 220px;
  min-height: 340px;
  align-items: center;
  text-align: center;
  margin: 0;
  gap: 10px;
}

.cards.profiles {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.cards.profiles .profile-card {
  scroll-snap-align: start;
}

.cards.profiles::-webkit-scrollbar {
  height: 6px;
}

.cards.profiles::-webkit-scrollbar-thumb {
  background: rgba(255, 95, 179, 0.5);
  border-radius: 999px;
}

.profile-card p {
  margin: 0;
  line-height: 1.4;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.profile-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  align-items: center;
}

.profile-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.stat-card {
  background: rgba(18, 9, 19, 0.8);
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 95, 179, 0.25);
}

.stat-card span {
  display: block;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 143, 209, 0.85);
}

.stat-card strong {
  font-size: 20px;
  color: #fff4fb;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 95, 179, 0.15);
  border: 1px solid rgba(255, 95, 179, 0.4);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffe6f3;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.media-card {
  border-radius: 18px;
  padding: 16px;
  background: rgba(18, 9, 19, 0.75);
  border: 1px solid rgba(255, 95, 179, 0.25);
}

.profile-photo {
  width: 100%;
  max-width: 180px;
  height: 240px;
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(255, 95, 179, 0.5), transparent 55%),
    linear-gradient(135deg, rgba(255, 46, 135, 0.25), rgba(10, 8, 14, 0.95));
  border: 1px solid rgba(255, 95, 179, 0.35);
  box-shadow: inset 0 0 35px rgba(255, 95, 179, 0.25);
  align-self: center;
}

.card p {
  margin: 0;
  color: rgba(255, 230, 243, 0.75);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.login-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.login-card {
  background: rgba(18, 9, 19, 0.8);
  border: 1px solid rgba(255, 95, 179, 0.2);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.login-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #fff6fb;
}

.login-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta {
  background: linear-gradient(120deg, rgba(255, 46, 135, 0.95), rgba(255, 143, 209, 0.85));
  color: #120913;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 95, 179, 0.35);
}

.cta.ghost {
  background: transparent;
  color: #ffe6f3;
  border: 1px solid rgba(255, 95, 179, 0.6);
}

.panel {
  background: rgba(18, 9, 19, 0.7);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 95, 179, 0.12);
}

.footer + .footer {
  border-top: 1px solid rgba(255, 95, 179, 0.15);
  margin-top: 16px;
}

.panel ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: rgba(255, 230, 243, 0.8);
}

form label {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  margin-top: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 95, 179, 0.35);
  background: rgba(8, 7, 10, 0.9);
  color: #fff4fb;
  padding: 10px 12px;
  font-family: "Space Grotesk", sans-serif;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 30px 6vw 50px;
  border-top: 1px solid rgba(255, 95, 179, 0.15);
  color: rgba(255, 230, 243, 0.7);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 36px;
  }

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

  .logo {
    font-size: 22px;
  }

  .logo img {
    width: 52px;
    height: 52px;
  }

  .hero-content {
    margin-top: 40px;
  }

  .gallery-frame {
    height: 340px;
  }
}
