:root {
  --bg: #09090e;
  --panel: #111119;
  --panel-2: #151520;
  --line: #262633;
  --line-soft: rgba(255, 255, 255, .07);
  --text: #f2f2f6;
  --muted: #777784;
  --muted-2: #aaaab5;
  --purple: #7061ff;
  --purple-soft: rgba(112, 97, 255, .17);
  --orange: #ff8d3b;
  --green: #7ce7b2;
  --shadow: 0 22px 60px rgba(0, 0, 0, .38);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 0%, rgba(112, 97, 255, .1), transparent 28rem),
    linear-gradient(180deg, #0b0b11 0%, var(--bg) 55%, #07070b 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  display: flex;
  width: 278px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: rgba(17, 17, 25, .96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.brand {
  display: flex;
  height: 76px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 0 26px;
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: .25rem;
}

.nav-menu {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 24px 14px;
}

.menu-label {
  margin: 0 12px 10px;
  color: var(--muted);
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .08rem;
  text-transform: uppercase;
}

.nav-link {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--muted);
  font-size: .98rem;
  font-weight: 600;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.nav-link i {
  width: 20px;
  color: currentColor;
  font-size: 1rem;
  text-align: center;
}

.nav-link:hover,
.nav-link.active {
  background: var(--purple-soft);
  color: var(--purple);
}

.nav-link:hover {
  transform: translateX(2px);
}

.nav-link.active b {
  position: absolute;
  right: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 18px var(--purple);
}

.sidebar-foot {
  border-top: 1px solid var(--line);
  padding: 26px 14px;
}

.badge-level {
  display: inline-flex;
  align-items: center;
  height: 28px;
  margin: 0 0 18px 12px;
  border-radius: 999px;
  background: rgba(255, 141, 59, .13);
  padding: 0 12px;
  color: var(--orange);
  font-size: .76rem;
  font-weight: 800;
}

.app-shell {
  min-height: 100vh;
  padding: 24px 38px 48px 316px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.topbar > div:not(.toolbar) {
  order: 2;
}

.site-nav {
  order: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-right: 0;
}

.site-nav a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 0 10px;
  color: var(--muted-2);
  font-size: .82rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a.active {
  border-color: rgba(112, 97, 255, .45);
  background: var(--purple-soft);
  color: var(--purple);
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--purple);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12rem;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.45rem);
  font-weight: 800;
}

.toolbar {
  order: 3;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-box {
  display: flex;
  width: min(35vw, 430px);
  height: 46px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 0 14px;
  color: var(--muted);
}

.search-box input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
}

.search-box input::placeholder {
  color: #666673;
}

.form-select {
  width: 156px;
  height: 46px;
  border-color: var(--line);
  border-radius: 8px;
  background-color: var(--panel);
  color: var(--text);
  font-weight: 700;
}

.icon-btn {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
}

.insights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 22px;
}

.insights article {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(21, 21, 32, .82), rgba(13, 13, 20, .82));
  padding: 14px 16px;
}

.insights i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--purple-soft);
  color: var(--purple);
}

.insights span {
  display: block;
  overflow: hidden;
  max-width: 100%;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.insights p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.chip {
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 0 14px;
  color: var(--muted-2);
  font-weight: 700;
}

.chip.active,
.chip:hover {
  border-color: rgba(112, 97, 255, .45);
  background: var(--purple-soft);
  color: var(--purple);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 14px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #14141d 0%, #101017 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.video-card:hover {
  border-color: rgba(112, 97, 255, .46);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .35);
  transform: translateY(-4px);
}

.thumb {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  place-items: center;
  background: #050508;
}

.model-thumb {
  aspect-ratio: 3 / 4;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050508;
  object-position: center center;
  transition: transform .3s ease, filter .3s ease;
}

.watermark,
.feature-card::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 7px;
  background: rgba(9, 9, 14, .62);
  padding: 5px 8px;
  color: rgba(255, 255, 255, .86);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .03rem;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.video-card:hover .thumb img {
  filter: saturate(1.1) contrast(1.04);
  transform: none;
}

.trend-badge,
.duration {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 7px;
  background: rgba(9, 9, 14, .86);
  padding: 0 8px;
  color: var(--text);
  font-size: .78rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.trend-badge {
  top: 10px;
  right: 10px;
  color: #c9bfff;
}

.trend-badge i {
  margin-right: 5px;
  color: var(--purple);
}

.duration {
  right: 9px;
  bottom: 9px;
}

.card-body-custom {
  padding: 12px;
}

.card-body-custom h2 {
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 4px;
}


.card-body-custom > p:not(.meta) {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
  margin: 0 0 10px;
}

.channel {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 700;
}

.avatar {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: var(--avatar-bg);
  color: #fff;
  font-size: .75rem;
}

.channel span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.title {
  display: -webkit-box;
  min-height: 24px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.24;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.model-copy {
  display: -webkit-box;
  min-height: 42px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--muted-2);
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.meta {
  margin: 0 0 10px;
  color: #656572;
  font-size: .82rem;
  font-weight: 600;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.metric {
  display: inline-flex;
  height: 25px;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  padding: 0 8px;
  color: #d5d5dd;
  font-size: .72rem;
  font-weight: 700;
}

.metric i {
  color: #e4e4ec;
  font-size: .72rem;
}

.spark {
  margin-left: auto;
  color: #747482;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.whatsapp-btn,
.details-btn {
  display: inline-flex;
  min-width: 0;
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 0 8px;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.whatsapp-btn {
  border: 1px solid rgba(37, 211, 102, .35);
  background: rgba(37, 211, 102, .13);
  color: #7ce7b2;
}

.details-btn {
  border: 1px solid rgba(112, 97, 255, .45);
  background: var(--purple-soft);
  color: #cbc6ff;
}

.whatsapp-btn:hover,
.details-btn:hover {
  transform: translateY(-1px);
}

.details-btn span,
.whatsapp-btn span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 42px;
  color: var(--muted);
  text-align: center;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.booking-panel,
.detail-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #14141d 0%, #101017 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.feature-card:has(img)::after {
  content: "Akwanda";
}

.feature-card img,
.detail-hero img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center center;
  background: #050508;
}

.feature-body,
.booking-panel,
.detail-body {
  padding: 20px;
}

.feature-body h2,
.booking-panel h2,
.detail-body h2 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 800;
}

.feature-body p,
.booking-panel p,
.detail-body p {
  margin: 0 0 14px;
  color: var(--muted-2);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.5;
}

.stat-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 20px;
}

.stat-tile {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  padding: 14px;
}

.stat-tile strong {
  display: block;
  color: var(--text);
  font-size: 1.22rem;
  font-weight: 800;
}

.stat-tile span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

.booking-layout,
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 18px;
}

.form-control,
.form-select.booking-select {
  min-height: 46px;
  border-color: var(--line);
  border-radius: 8px;
  background-color: var(--panel);
  color: var(--text);
}

.form-control:focus,
.form-select.booking-select:focus {
  border-color: rgba(112, 97, 255, .65);
  box-shadow: 0 0 0 .2rem rgba(112, 97, 255, .15);
}

.form-control::placeholder {
  color: #686875;
}

.primary-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(112, 97, 255, .45);
  border-radius: 8px;
  background: var(--purple-soft);
  padding: 0 14px;
  color: #cbc6ff;
  font-weight: 800;
}

.whatsapp-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(37, 211, 102, .35);
  border-radius: 8px;
  background: rgba(37, 211, 102, .13);
  padding: 0 14px;
  color: #7ce7b2;
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline div {
  border-left: 2px solid rgba(112, 97, 255, .6);
  padding-left: 14px;
}

.timeline strong {
  display: block;
  margin-bottom: 4px;
}

.detail-hero {
  position: relative;
}

.detail-hero img {
  height: min(72vh, 640px);
}

.video-showcase {
  padding: 18px;
}

.video-showcase h2 {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 800;
}

.profile-videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.video-embed-card {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.video-embed-card iframe,
.video-embed-card video {
  display: block;
  width: 100%;
  height: 150px;
  border: 0;
  background: #000;
  object-fit: contain;
}

.video-embed-card strong {
  display: block;
  padding: 10px 12px;
  color: var(--text);
  font-size: .82rem;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-details {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
  margin: 0 0 18px;
  padding: 16px;
}

.profile-details h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.profile-details h3 {
  margin: 14px 0 10px;
  color: var(--muted-2);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.profile-grid div {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  padding: 11px;
}

.profile-grid span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
}

.profile-grid strong {
  color: var(--text);
  font-size: .9rem;
}

.interest-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.interest-list span {
  border: 1px solid rgba(112, 97, 255, .35);
  border-radius: 999px;
  background: var(--purple-soft);
  padding: 7px 10px;
  color: #cbc6ff;
  font-size: .76rem;
  font-weight: 800;
}

.comment-box {
  margin-top: 18px;
}

.comment-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.comment-item {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  padding: 14px;
}

.comment-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: .84rem;
}

.comment-item p {
  margin: 0;
}

.login-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 460px));
  gap: 18px;
  align-items: start;
  justify-content: center;
  min-height: calc(100vh - 130px);
}

.login-card {
  width: min(100%, 460px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #14141d 0%, #101017 100%);
  box-shadow: var(--shadow);
  padding: 28px;
}

.login-card h2 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  font-weight: 800;
}

.login-card p {
  margin: 0 0 20px;
  color: var(--muted-2);
  font-weight: 600;
  line-height: 1.5;
}

.chat-fab {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 25;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #07120b;
  font-size: 1.28rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .36);
}

.mobile-shade {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: none;
  background: rgba(0, 0, 0, .54);
}

body.nav-open .mobile-shade {
  display: block;
}

@media (max-width: 1500px) {
  .video-grid {
    grid-template-columns: repeat(4, minmax(190px, 1fr));
  }
}

@media (max-width: 1180px) {
  .video-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }

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

@media (max-width: 980px) {
  .sidebar {
    transform: translateX(-102%);
    transition: transform .22s ease;
  }

  body.nav-open .sidebar {
    transform: translateX(0);
  }

  .app-shell {
    padding: 16px 14px 38px;
  }

  .topbar {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
  }

  .icon-btn {
    display: grid;
    flex: 0 0 auto;
  }

  .topbar > div:not(.toolbar) {
    width: 100%;
  }

  h1 {
    font-size: 1.55rem;
  }

  .toolbar {
    order: 4;
    width: 100%;
    align-items: stretch;
    margin-left: 0;
  }

  .search-box {
    width: 100%;
  }

  .booking-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .site-nav {
    order: 1;
    width: 100%;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .site-nav a {
    flex: 1 1 120px;
  }
}

@media (max-width: 760px) {
  .login-shell {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-wrap: wrap;
  }

  .toolbar {
    flex-direction: column;
  }

  .search-box {
    height: 42px;
  }

  .form-select {
    width: 100%;
    height: 42px;
  }

  .insights {
    display: none;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .model-thumb {
    aspect-ratio: 3 / 4;
  }

  .card-body-custom {
    padding: 9px;
  }

  .meta {
    font-size: .68rem;
  }

  .metric {
    height: 23px;
    padding: 0 6px;
    font-size: .66rem;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .whatsapp-btn,
  .details-btn {
    height: 31px;
    font-size: .68rem;
  }

  .content-grid,
  .stat-list,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .feature-card img,
  .detail-hero img {
    height: auto;
    max-height: 520px;
    aspect-ratio: 3 / 4;
  }

  .profile-videos {
    grid-template-columns: 1fr;
  }

  .chat-fab {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }
}

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

  .model-thumb {
    aspect-ratio: 3 / 4;
  }
}

.model-frame-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.model-frame-link:hover img {
  filter: saturate(1.14) contrast(1.05);
}

.plan-tier {
  color: #fff;
  text-transform: uppercase;
}

.plan-tier i {
  color: var(--orange);
}

.plan-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, .68);
  padding: 18px;
}

.plan-modal.open {
  display: grid;
}

.plan-dialog {
  position: relative;
  width: min(100%, 460px);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(23, 23, 33, .98), rgba(12, 12, 18, .98));
  box-shadow: 0 22px 60px rgba(0, 0, 0, .45);
  padding: 22px;
}

.plan-dialog h2 {
  margin-bottom: 16px;
  font-size: 1.08rem;
  font-weight: 800;
}

.plan-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: var(--text);
}

.plan-options {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.plan-option {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, .03);
  padding: 12px;
  cursor: pointer;
}

.plan-option input {
  margin-top: 4px;
  accent-color: var(--purple);
}

.plan-option strong,
.plan-option small {
  display: block;
}

.plan-option small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

.video-library-grid {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.video-user-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.video-user-head {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
}

.video-user-avatar {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #050508;
  aspect-ratio: 1;
}

.video-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-user-head h2 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 1.05rem;
}

.video-user-head p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.video-user-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.video-user-stats span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--muted);
  font-size: .78rem;
}

.video-list {
  display: grid;
  gap: 12px;
}

.user-video-frame video {
  height: 190px;
}

.video-open-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  border-radius: 0;
}

.no-video-frame {
  display: grid;
  min-height: 110px;
  place-items: center;
}

@media (max-width: 560px) {
  .video-user-card {
    padding: 12px;
  }

  .video-user-head {
    grid-template-columns: 68px 1fr;
  }

  .user-video-frame video,
  .video-open-link {
    height: 160px;
    min-height: 160px;
  }
}

.auth-choice-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 460px));
  gap: 18px;
  justify-content: center;
  width: 100%;
}

.auth-choice-card {
  min-height: 100%;
}

.auth-choice-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  place-items: center;
  border: 1px solid rgba(112, 97, 255, .45);
  border-radius: 8px;
  background: rgba(112, 97, 255, .14);
  color: var(--accent);
  font-size: 1.25rem;
}

.admin-choice-card {
  display: flex;
  flex-direction: column;
}

.admin-choice-card .primary-action {
  margin-top: auto;
}

@media (max-width: 980px) {
  .auth-choice-grid {
    grid-template-columns: 1fr;
  }
}

.model-signup-card {
  grid-column: 1 / -1;
  width: min(100%, 980px);
}

.signup-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.signup-form-grid .wide {
  grid-column: 1 / -1;
}

.signup-form-grid h2,
.signup-form-grid p {
  margin-left: 0;
  margin-right: 0;
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}

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

@media (max-width: 760px) {
  .signup-form-grid {
    grid-template-columns: 1fr;
  }
}



.product-detail-shell {
  max-width: 1280px;
}

.product-detail-topbar h1 {
  max-width: 760px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 20px;
  align-items: start;
}

.product-gallery-panel,
.product-summary-panel {
  border-color: rgba(255, 255, 255, .14);
}

.product-gallery-main {
  background: #050508;
}

.product-gallery-main img {
  height: min(72vh, 680px);
  object-fit: contain;
}

.product-gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid var(--line-soft);
  padding: 14px;
}

.product-gallery-strip span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  color: var(--muted-2);
  font-size: .78rem;
  font-weight: 800;
  text-align: center;
}

.product-gallery-strip i {
  color: var(--accent);
}

.product-summary-panel {
  position: sticky;
  top: 18px;
  padding: 24px;
}

.product-summary-panel .eyebrow {
  margin-bottom: 8px;
}

.product-summary-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.product-detail-price {
  display: block;
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: 0;
}

.product-purchase-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0;
}

.product-purchase-box .whatsapp-action,
.product-purchase-box .primary-action {
  min-height: 50px;
}

.product-trust-row {
  margin-top: 4px;
}

.product-specs {
  margin-top: 18px;
}

.product-specs .profile-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-specs .profile-grid div:first-child {
  border-color: rgba(37, 211, 102, .28);
  background: rgba(37, 211, 102, .075);
}

.product-secondary-actions {
  margin-top: 14px;
}

.product-secondary-actions .primary-action {
  flex: 1 1 180px;
}

.product-review-box {
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
}

.product-media-section {
  border-top: 1px solid var(--line-soft);
}

@media (max-width: 1020px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-summary-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .product-gallery-main img {
    height: auto;
    max-height: 560px;
    aspect-ratio: 3 / 4;
  }

  .product-gallery-strip,
  .product-purchase-box,
  .product-specs .profile-grid {
    grid-template-columns: 1fr;
  }

  .product-summary-panel {
    padding: 18px;
  }
}
