:root {
  color-scheme: dark;
  --bg: #050207;
  --panel: rgba(18, 8, 30, 0.72);
  --panel-strong: rgba(28, 10, 46, 0.9);
  --text: #f8eeff;
  --muted: #c9afd8;
  --pink: #ff2fd6;
  --violet: #8b4dff;
  --cyan: #22f4ff;
  --line: rgba(255, 255, 255, 0.14);
  --content-max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 47, 214, 0.2), transparent 28rem),
    radial-gradient(circle at 85% 30%, rgba(34, 244, 255, 0.13), transparent 24rem),
    linear-gradient(180deg, #050207 0%, #100519 48%, #050207 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

video {
  display: block;
  object-fit: cover;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mix-blend-mode: screen;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
  padding: 0.72rem clamp(1rem, 4vw, 4rem);
  background: linear-gradient(180deg, rgba(5, 2, 7, 0.88), rgba(5, 2, 7, 0.36));
  backdrop-filter: blur(18px);
}

.brand,
.topbar nav,
.nav-cta,
.primary-btn,
.ghost-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 0;
  font-weight: 800;
  white-space: nowrap;
}

.brand-logo {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  object-fit: cover;
  background: #08020d;
  box-shadow: 0 0 24px rgba(122, 220, 232, 0.62);
}

.brand-name {
  display: grid;
  gap: 0.02rem;
  justify-items: center;
  line-height: 0.74;
  min-width: 78px;
  text-shadow:
    0 0 14px rgba(255, 47, 214, 0.46),
    0 0 28px rgba(139, 77, 255, 0.28);
}

.brand-name strong {
  display: block;
  font-size: 1.26rem;
  font-weight: 1000;
  white-space: nowrap;
}

.brand-name small {
  display: block;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(34, 244, 255, 0.72);
}

.topbar nav {
  gap: clamp(0.75rem, 1.7vw, 1.35rem);
  color: var(--muted);
  font-size: 1rem;
  font-weight: 750;
}

.topbar nav a:hover {
  color: var(--text);
  text-shadow: 0 0 16px rgba(122, 220, 232, 0.6);
}

.topbar nav .active-link {
  color: var(--text);
  text-shadow: 0 0 16px var(--cyan);
}

.nav-cta,
.primary-btn,
.lead-form button,
.cart-form button,
.add-to-cart {
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pink), var(--violet) 62%, var(--cyan));
  color: white;
  box-shadow: 0 0 28px rgba(255, 47, 214, 0.38);
  font-weight: 800;
  cursor: pointer;
}

.nav-cta {
  padding: 0 1rem;
  white-space: nowrap;
}

.topbar .cart-float {
  margin-left: auto;
}

.telegram-float {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  z-index: 35;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
}

.telegram-float {
  bottom: 1.2rem;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 244, 255, 0.32), rgba(139, 77, 255, 0.72));
  box-shadow: 0 0 30px rgba(34, 244, 255, 0.28);
}

.telegram-float span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: rgba(5, 2, 7, 0.58);
  color: white;
  font-size: 0.78rem;
  font-weight: 1000;
}

.cart-float {
  position: static;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
  background: rgba(18, 8, 30, 0.82);
  color: white;
  padding: 0 0.65rem 0 1rem;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 0 30px rgba(122, 220, 232, 0.12);
  cursor: pointer;
}

.cart-count {
  display: grid;
  min-width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: rgba(122, 220, 232, 0.15);
  border: 1px solid rgba(122, 220, 232, 0.25);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 47, 214, 0.22), transparent 24rem),
    radial-gradient(circle at 72% 26%, rgba(34, 244, 255, 0.16), transparent 20rem),
    radial-gradient(circle at 24% 70%, rgba(139, 77, 255, 0.22), transparent 22rem),
    linear-gradient(180deg, #050207 0%, #12061d 50%, #050207 100%);
}

.hero::before,
.hero::after,
.catalog-hero::before,
.catalog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before,
.catalog-hero::before {
  background:
    linear-gradient(115deg, transparent 0 22%, rgba(255, 47, 214, 0.18) 22.4%, transparent 23% 58%, rgba(34, 244, 255, 0.12) 58.4%, transparent 59%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 88px);
  opacity: 0.72;
}

.hero::after,
.catalog-hero::after {
  background:
    radial-gradient(ellipse at 50% 92%, rgba(255, 47, 214, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(5, 2, 7, 0.08), rgba(5, 2, 7, 0.48) 52%, rgba(5, 2, 7, 0.92));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 2rem));
  margin: 7.8rem auto 6.5rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-shadow: 0 0 16px rgba(34, 244, 255, 0.8);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 13vw, 11rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(255, 47, 214, 0.8),
    0 0 64px rgba(139, 77, 255, 0.65);
}

.hero-title {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0;
  font-size: clamp(3.1rem, 9vw, 7.5rem);
  line-height: 0.74;
  transform: perspective(900px) rotateX(4deg);
  transform-style: preserve-3d;
}

.hero-title::before,
.catalog-hero h1::before {
  content: "";
  position: absolute;
  inset: -0.16em -0.28em;
  z-index: -1;
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(255, 47, 214, 0.26), transparent 58%),
    radial-gradient(ellipse at 50% 72%, rgba(34, 244, 255, 0.16), transparent 56%);
  filter: blur(22px);
  opacity: 0.72;
  transform: translateZ(-24px);
}

.hero-title-main {
  display: block;
  max-width: 100%;
  font-weight: 1000;
  white-space: nowrap;
  transform: translateZ(18px);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18),
    0 4px 0 rgba(65, 13, 88, 0.52),
    0 0 18px rgba(255, 47, 214, 0.86),
    0 0 46px rgba(255, 47, 214, 0.46),
    0 0 82px rgba(139, 77, 255, 0.42);
}

.hero-title-sub {
  display: block;
  color: #dffcff;
  font-size: 0.57em;
  line-height: 0.82;
  letter-spacing: 0.12em;
  text-shadow:
    0 0 16px rgba(34, 244, 255, 0.72),
    0 0 52px rgba(139, 77, 255, 0.6);
}

.hero-copy {
  max-width: 720px;
  margin: 1.4rem auto 0;
  color: #f4ddff;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.primary-btn,
.ghost-btn {
  justify-content: center;
  padding: 0 1.25rem;
  min-width: 190px;
  color: #fff;
  font-weight: 1000;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.66),
    0 0 14px rgba(255, 255, 255, 0.28),
    0 0 22px rgba(255, 47, 214, 0.36);
}

.ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  backdrop-filter: blur(14px);
}

.hero-actions .ghost-btn {
  border: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, var(--violet) 0%, var(--pink) 72%, #ff7af0 100%);
  color: #fff;
  box-shadow:
    0 0 22px rgba(139, 77, 255, 0.24),
    0 0 32px rgba(255, 47, 214, 0.24);
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.72),
    0 0 12px rgba(255, 255, 255, 0.42);
}

.hero-actions .primary-btn,
.hero-actions .ghost-btn {
  border: 1px solid rgba(8, 2, 12, 0.72);
  outline: 1px solid rgba(255, 255, 255, 0.16);
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 2, 7, 0.58);
}

.ticker-track {
  display: inline-flex;
  width: max-content;
  animation: ticker 34s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: inline-flex;
  flex: 0 0 auto;
}

.ticker span {
  padding: 1rem 2.4rem;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 900;
  white-space: nowrap;
}

.social-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(280px, 460px) minmax(160px, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  min-height: 980px;
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem);
  overflow: hidden;
}

.social-stage,
.campaign-flow,
.offers,
.catalog-panel,
.contact {
  width: min(100%, var(--content-max));
  margin-left: auto;
  margin-right: auto;
}

.campaign-flow {
  position: relative;
  display: grid;
  gap: clamp(3rem, 7vw, 6rem);
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem);
  overflow: hidden;
}

.campaign-flow::before {
  content: "";
  position: absolute;
  inset: 4rem 0 auto;
  height: 82%;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(34, 244, 255, 0.07), transparent),
    repeating-linear-gradient(180deg, transparent 0 140px, rgba(255, 255, 255, 0.045) 141px, transparent 142px);
  mask-image: linear-gradient(180deg, transparent, #000 10%, #000 86%, transparent);
}

.flow-intro {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto clamp(0.5rem, 2vw, 1rem);
  text-align: center;
}

.flow-intro h2 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow:
    0 0 22px rgba(255, 47, 214, 0.48),
    0 0 42px rgba(34, 244, 255, 0.18);
}

.flow-intro p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #ead2f7;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.55;
}

.flow-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(1.6rem, 5vw, 5rem);
  align-items: center;
}

.flow-row.reverse {
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
}

.flow-row.reverse .flow-copy {
  grid-column: 2;
}

.flow-row.reverse .flow-phone {
  grid-column: 1;
  grid-row: 1;
}

.flow-copy {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: center;
  min-height: 320px;
  padding: clamp(0.4rem, 1.4vw, 1rem) 0;
}

.flow-copy h3 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 4.6vw, 4.6rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: #fff;
  -webkit-text-stroke: 1px rgba(34, 244, 255, 0.14);
  text-shadow:
    0 0 14px rgba(255, 47, 214, 0.28),
    0 0 22px rgba(34, 244, 255, 0.1);
}

.flow-copy p {
  max-width: 660px;
  margin: 0;
  color: #f3ddff;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.58;
}

.flow-copy .ghost-btn {
  width: max-content;
  margin-top: 0.35rem;
}

.flow-phone {
  position: relative;
  justify-self: center;
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 32px;
  background: #09020f;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.04),
    0 0 42px rgba(255, 47, 214, 0.34),
    0 0 72px rgba(34, 244, 255, 0.12);
}

.flow-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.75rem;
  z-index: 3;
  width: 34%;
  height: 0.38rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
}

.flow-phone video,
.flow-video-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.flow-phone video {
  filter: saturate(1.1) contrast(1.06) brightness(0.8);
  transform: scale(1.02);
}

.flow-video-shade {
  background:
    linear-gradient(180deg, rgba(5, 2, 7, 0.08), rgba(5, 2, 7, 0.18) 42%, rgba(5, 2, 7, 0.92)),
    radial-gradient(circle at 50% 44%, transparent 0 22%, rgba(255, 47, 214, 0.22) 70%);
}

.flow-video-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 2, 7, 0.68);
  backdrop-filter: blur(14px);
}

.flow-video-caption strong {
  color: white;
  font-size: 1.05rem;
}

.flow-video-caption span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.flow-row.reveal:nth-of-type(2n) {
  transition-delay: 90ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.ribbon {
  position: absolute;
  width: 38rem;
  height: 9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(90deg, transparent, rgba(255, 47, 214, 0.34), rgba(34, 244, 255, 0.18), transparent);
  filter: blur(0.2px);
  transform: rotate(-28deg);
  box-shadow: 0 0 42px rgba(255, 47, 214, 0.22);
}

.ribbon-left {
  left: -14rem;
  top: 12rem;
}

.ribbon-right {
  right: -14rem;
  bottom: 12rem;
  transform: rotate(25deg);
}

.side-rail {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
}

.side-rail-left {
  justify-items: end;
}

.side-rail-right {
  justify-items: start;
}

.creator-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background: var(--panel);
  box-shadow:
    0 0 28px rgba(139, 77, 255, 0.2),
    inset 0 0 28px rgba(255, 255, 255, 0.04);
}

.creator-card {
  width: min(100%, 250px);
  aspect-ratio: 9 / 13;
}

.creator-card video {
  width: 100%;
  height: 100%;
  filter: saturate(1.1) contrast(1.05) brightness(0.88);
}

.creator-card div {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  display: grid;
  gap: 0.25rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 2, 7, 0.68);
  backdrop-filter: blur(14px);
}

.creator-card span {
  color: var(--cyan);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 800;
}

.creator-card strong {
  font-size: 1rem;
}

.tilt-a {
  transform: rotate(-4deg);
}

.tilt-b {
  transform: translateX(-1rem) rotate(5deg);
}

.tilt-c {
  transform: translateX(0.8rem) rotate(-2deg);
}

.phone-feed {
  position: relative;
  z-index: 4;
}

.phone-shell {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  background: #09020f;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.04),
    0 0 48px rgba(255, 47, 214, 0.42),
    0 0 80px rgba(34, 244, 255, 0.15);
}

.phone-video,
.phone-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.phone-video {
  filter: saturate(1.08) contrast(1.05) brightness(0.88);
}

.phone-gradient {
  background:
    linear-gradient(180deg, rgba(5, 2, 7, 0.08), rgba(5, 2, 7, 0.22) 38%, rgba(5, 2, 7, 0.95)),
    radial-gradient(circle at 50% 42%, transparent 0 24%, rgba(255, 47, 214, 0.2) 65%);
}

.phone-ui {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.2rem;
}

.live-pill {
  width: max-content;
  margin-bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 47, 214, 0.22);
  color: white;
  box-shadow: 0 0 18px rgba(255, 47, 214, 0.55);
  font-size: 0.72rem;
  font-weight: 900;
}

.phone-ui h2 {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  line-height: 1.02;
}

.phone-ui p {
  color: #ead2f7;
  line-height: 1.45;
}

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

.stats span {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 0.15rem;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.75rem;
}

.stats strong {
  color: white;
  font-size: 1rem;
}

.offers,
.contact {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem);
}

.section-head {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-head h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.95;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.offer-card {
  min-height: 330px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.9rem;
  padding: clamp(1rem, 2.4vw, 1.45rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent),
    var(--panel);
}

.offer-card.hot {
  border-color: rgba(255, 47, 214, 0.55);
  box-shadow: 0 0 44px rgba(255, 47, 214, 0.2);
}

.card-index {
  color: var(--cyan);
  font-weight: 900;
}

.offer-card h3 {
  margin: 0;
  min-height: 3.2rem;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: clamp(1.24rem, 2.1vw, 1.72rem);
  line-height: 1.02;
}

.offer-card p,
.contact p {
  color: var(--muted);
  line-height: 1.6;
}

.offer-card p {
  position: relative;
  margin: 0;
  height: 10.8rem;
  overflow-y: auto;
  padding: 0.95rem 1rem 0.95rem 0;
  border-top: 1px solid rgba(34, 244, 255, 0.26);
  background:
    linear-gradient(90deg, rgba(34, 244, 255, 0.1), transparent 46%),
    linear-gradient(180deg, rgba(255, 47, 214, 0.08), transparent 58%);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 47, 214, 0.74) rgba(255, 255, 255, 0.08);
}

.offer-card p::before {
  content: "";
  position: absolute;
  right: 0.08rem;
  top: 0.95rem;
  bottom: 0.95rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--pink));
  box-shadow: 0 0 18px rgba(34, 244, 255, 0.44);
}

.offer-card p::-webkit-scrollbar {
  width: 6px;
}

.offer-card p::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.offer-card p::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--pink));
  box-shadow: 0 0 14px rgba(255, 47, 214, 0.46);
}

.offer-card a {
  color: white;
  font-weight: 900;
  text-shadow: 0 0 16px var(--pink);
}

.offer-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.6rem;
}

.offer-actions a {
  flex: 1 1 0;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0 0.65rem;
  text-align: center;
  font-size: 0.86rem;
}

.offer-actions a:last-child {
  background: linear-gradient(135deg, rgba(34, 244, 255, 0.22), rgba(139, 77, 255, 0.36));
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 520px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 47, 214, 0.11), transparent 45%),
    rgba(255, 255, 255, 0.02);
}

.lead-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--panel-strong);
  box-shadow: 0 0 38px rgba(139, 77, 255, 0.18);
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 700;
}

.lead-form .check-field {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 0.65rem;
  color: #dec8ea;
  font-size: 0.86rem;
  line-height: 1.4;
  font-weight: 600;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0 0.9rem;
  font: inherit;
}

.lead-form select option {
  background: #170922;
}

.lead-form button {
  min-height: 52px;
  font: inherit;
}

.form-note {
  margin: 0;
  font-size: 0.86rem;
}

.catalog-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 7rem clamp(1rem, 5vw, 5rem) 5rem;
  background:
    radial-gradient(circle at 26% 38%, rgba(34, 244, 255, 0.15), transparent 20rem),
    radial-gradient(circle at 72% 46%, rgba(255, 47, 214, 0.2), transparent 24rem),
    linear-gradient(180deg, #050207 0%, #13071f 58%, #050207 100%);
}

.catalog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.catalog-hero h1 {
  position: relative;
  width: max-content;
  max-width: 100%;
  transform: perspective(900px) rotateX(3deg);
  transform-style: preserve-3d;
  color: #fff;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16),
    0 5px 0 rgba(45, 9, 72, 0.56),
    0 0 18px rgba(255, 47, 214, 0.82),
    0 0 44px rgba(255, 47, 214, 0.42),
    0 0 78px rgba(34, 244, 255, 0.22);
}

.catalog-panel {
  padding: clamp(3.5rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.package-panel {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem) clamp(2rem, 4vw, 3rem);
}

.catalog-switch {
  position: sticky;
  top: 76px;
  z-index: 8;
  width: min(100% - 2rem, 520px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: -1.5rem auto 0;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 2, 7, 0.72);
  backdrop-filter: blur(14px);
}

.catalog-switch a {
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(255, 47, 214, 0.18), rgba(139, 77, 255, 0.24));
}

.catalog-switch a:first-child {
  background: linear-gradient(135deg, rgba(255, 47, 214, 0.28), rgba(139, 77, 255, 0.36));
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.catalog-toolbar h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 0.95;
}

.filter-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 0.65rem;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 0.15rem;
}

.filter-chip {
  width: 118px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  padding: 0 0.55rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.05;
  cursor: pointer;
}

.filter-chip span {
  display: block;
}

.filter-chip.active,
.filter-chip:hover {
  border-color: rgba(34, 244, 255, 0.65);
  color: white;
  box-shadow: 0 0 22px rgba(34, 244, 255, 0.18);
}

.blogger-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: center;
  gap: clamp(1.4rem, 3vw, 2.5rem);
}

.package-note {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
}

.package-card {
  display: grid;
  gap: 0.75rem;
  min-height: 240px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(122, 220, 232, 0.06), rgba(34, 244, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
}

.package-media {
  position: relative;
  overflow: hidden;
  height: 150px;
  margin: -0.25rem -0.25rem 0.25rem;
  border-radius: 8px;
  background: rgba(5, 2, 7, 0.48);
}

.package-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(5, 2, 7, 0.58));
  pointer-events: none;
}

.package-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.package-card > span {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  line-height: 1;
}

.package-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.package-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.package-card-bottom strong {
  color: white;
}

.package-add {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(122, 220, 232, 0.15), rgba(122, 220, 232, 0.08));
  border: 1px solid rgba(122, 220, 232, 0.25);
  color: white;
  padding: 0 0.8rem;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.package-add.added {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
}

.marketplace-searchbar {
  width: min(100%, var(--content-max));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px 150px;
  gap: 0.7rem;
  margin: 0 auto 1.2rem;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 2, 7, 0.58);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 34px rgba(34, 244, 255, 0.1);
}

.marketplace-hero h1 {
  font-size: clamp(3.4rem, 13vw, 9rem);
  max-width: 100%;
  overflow-wrap: anywhere;
}

.marketplace-search {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0 1rem;
  font: inherit;
  font-weight: 800;
}

.marketplace-search::placeholder {
  color: rgba(201, 175, 216, 0.78);
}

.marketplace-search-button {
  justify-content: center;
  border: 0;
  font: inherit;
}

.marketplace-perks {
  width: min(100%, var(--content-max));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0 auto 1.2rem;
}

.marketplace-perks span {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(34, 244, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 244, 255, 0.1), rgba(255, 47, 214, 0.08)),
    rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.marketplace-shell {
  width: min(100%, var(--content-max));
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 1.2rem;
  margin: 0 auto;
  align-items: start;
}

.marketplace-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 47, 214, 0.08), transparent 48%),
    rgba(12, 5, 20, 0.84);
  box-shadow: 0 0 28px rgba(139, 77, 255, 0.12);
}

.marketplace-sidebar h2 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1;
}

.marketplace-filter-group {
  display: grid;
  gap: 0.65rem;
  color: var(--muted);
  font-weight: 800;
}

.marketplace-filter-group > strong {
  color: white;
}

.marketplace-filter-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  overflow: visible;
  padding: 0;
}

.marketplace-filter-list .filter-chip {
  width: 100%;
  justify-self: stretch;
  text-align: left;
}

.marketplace-price-filter {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0 0.75rem;
  font: inherit;
  font-weight: 800;
}

.marketplace-price-filter option {
  background: #170922;
}

.marketplace-results {
  min-width: 0;
}

.marketplace-results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.marketplace-results-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  line-height: 0.95;
}

.marketplace-count {
  color: var(--muted);
  font-weight: 900;
  white-space: nowrap;
}

.marketplace-list {
  display: grid;
  gap: 0.85rem;
}

.marketplace-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) minmax(180px, 0.28fr);
  gap: 1.1rem;
  min-height: 228px;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(34, 244, 255, 0.08), transparent 42%),
    rgba(18, 8, 30, 0.78);
  box-shadow: 0 0 26px rgba(139, 77, 255, 0.12);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.marketplace-card.hidden {
  display: none;
}

.marketplace-card:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 244, 255, 0.5);
  box-shadow:
    0 0 36px rgba(34, 244, 255, 0.12),
    0 0 28px rgba(255, 47, 214, 0.1);
}

.marketplace-cover {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(5, 2, 7, 0.6);
}

.marketplace-card-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 210px;
}

.marketplace-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.marketplace-card-gallery img {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.marketplace-card-gallery img.active {
  opacity: 1;
}

.marketplace-photo-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 34px;
  height: 34px;
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(5, 2, 7, 0.72);
  color: white;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.marketplace-photo-btn.prev {
  left: 0.55rem;
}

.marketplace-photo-btn.next {
  right: 0.55rem;
}

.marketplace-card-gallery small {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  z-index: 2;
  padding: 0.26rem 0.46rem;
  border-radius: 8px;
  background: rgba(5, 2, 7, 0.72);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.marketplace-card:hover .marketplace-cover img {
  transform: scale(1.035);
}

.marketplace-cover span {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  max-width: calc(100% - 1.4rem);
  padding: 0.36rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(5, 2, 7, 0.72);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  backdrop-filter: blur(10px);
}

.marketplace-empty-media,
.marketplace-empty-detail {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 280px;
  place-items: center;
  color: var(--cyan);
  font-weight: 1000;
  letter-spacing: 0.08em;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 47, 214, 0.24), transparent 14rem),
    radial-gradient(circle at 70% 60%, rgba(34, 244, 255, 0.2), transparent 12rem),
    rgba(5, 2, 7, 0.75);
}

.marketplace-empty-media {
  min-height: 210px;
  font-size: 0.78rem;
}

.marketplace-info {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-width: 0;
  padding: 0.25rem 0;
}

.marketplace-info h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.04;
}

.marketplace-info p {
  margin: 0;
  color: #dec8ea;
  line-height: 1.45;
}

.marketplace-card-side {
  display: grid;
  align-content: space-between;
  justify-items: end;
  gap: 0.7rem;
  min-width: 0;
  padding: 0.25rem 0.1rem 0.25rem 0;
  text-align: right;
}

.marketplace-card-side strong {
  color: white;
  font-size: 1.18rem;
}

.marketplace-card-side span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.marketplace-contact {
  width: 100%;
  justify-content: center;
  min-height: 44px;
}

.marketplace-meta,
.marketplace-detail-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  align-items: center;
  color: var(--muted);
}

.marketplace-meta strong,
.marketplace-detail-meta strong {
  color: white;
  text-align: right;
}

.marketplace-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-self: end;
}

.marketplace-tags span {
  padding: 0.34rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.marketplace-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.marketplace-trust span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(34, 244, 255, 0.24);
  border-radius: 999px;
  background: rgba(34, 244, 255, 0.08);
  color: var(--cyan);
  padding: 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 900;
}

.blogger-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent),
    var(--panel);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  cursor: pointer;
}

.blogger-card.hidden {
  display: none;
}

.blogger-card:hover,
.blogger-card.sound-on {
  border-color: rgba(34, 244, 255, 0.42);
  box-shadow:
    0 0 46px rgba(34, 244, 255, 0.14);
  transform: translateY(-6px);
}

.blogger-card.featured {
  border-color: rgba(122, 220, 232, 0.52);
  box-shadow: 0 0 44px rgba(122, 220, 232, 0.22);
}

.blogger-video {
  position: relative;
  aspect-ratio: 9 / 10;
  overflow: hidden;
  background: #09020f;
}

.blogger-video::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 2, 7, 0.08), rgba(5, 2, 7, 0.22) 48%, rgba(5, 2, 7, 0.7)),
    radial-gradient(circle at 30% 20%, rgba(255, 47, 214, 0.28), transparent 38%),
    radial-gradient(circle at 80% 65%, rgba(34, 244, 255, 0.18), transparent 34%);
  mix-blend-mode: screen;
}

.blogger-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(12, 5, 20, 0.2);
  box-shadow: inset 0 0 52px rgba(5, 2, 7, 0.72);
}

.blogger-video video,
.blogger-video img {
  width: 100%;
  height: 100%;
  filter: saturate(1.1) contrast(1.04) brightness(0.82);
  transform: scale(1.03);
  object-fit: cover;
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.blogger-card:hover .blogger-video video,
.blogger-card:hover .blogger-video img,
.blogger-card.sound-on .blogger-video video {
  filter: saturate(1.24) contrast(1.08) brightness(0.94);
  transform: scale(1.12);
}

.photo-collage {
  width: 100%;
  height: 100%;
  display: grid;
  gap: 3px;
}

.photo-collage.count-1 {
  grid-template-columns: 1fr;
}

.photo-collage.count-2,
.photo-collage.count-3,
.photo-collage.count-4 {
  grid-template-columns: repeat(2, 1fr);
}

.photo-collage.count-3 img:first-child {
  grid-row: span 2;
}

.platform-pill,
.sound-pill {
  position: absolute;
  z-index: 2;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(5, 2, 7, 0.7);
  color: var(--cyan);
  box-shadow: 0 0 18px rgba(34, 244, 255, 0.22);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.sound-pill {
  display: none !important;
  top: auto;
  left: auto;
  right: 50%;
  bottom: 50%;
  transform: translate(50%, 50%);
  min-width: 260px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.92);
  border: 0;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.08);
  text-transform: none;
  font-size: 0.95rem;
  cursor: pointer;
}

.sound-pill img {
  width: 46px;
  height: 30px;
  object-fit: contain;
  opacity: 1;
  flex: 0 0 auto;
}

.blogger-card.sound-on .sound-pill {
  right: 50%;
  bottom: 0.75rem;
  transform: translateX(50%);
  min-width: 240px;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  font-size: 0.82rem;
}

.blogger-card.sound-on .sound-pill img {
  width: 34px;
  height: 22px;
  opacity: 1;
}

.blogger-info {
  display: grid;
  gap: 0.8rem;
  padding: 0.9rem;
}

.blogger-title-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.blogger-avatar {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 2px solid rgba(34, 244, 255, 0.72);
  border-radius: 999px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 22px rgba(34, 244, 255, 0.22);
}

.avatar-placeholder {
  display: grid;
  place-items: center;
  color: white;
  font-size: 0.78rem;
  font-weight: 1000;
}

.blogger-card h3 {
  min-width: 0;
  margin: 0;
  font-size: 1.38rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.metric-row span {
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 0.1rem;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.72rem;
}

.metric-row strong {
  color: white;
  font-size: 0.94rem;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.metric-row.single {
  grid-template-columns: 1fr;
}

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

.metric-row.single span {
  min-height: 54px;
}

.price-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.price-badges span {
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 0.1rem;
  padding: 0.55rem;
  border: 1px solid rgba(255, 47, 214, 0.28);
  border-radius: 8px;
  background: rgba(255, 47, 214, 0.1);
  color: var(--muted);
  font-size: 0.72rem;
}

.price-badges strong {
  color: white;
  font-size: 0.94rem;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 0.2rem;
}

.price-row.compact {
  justify-content: stretch;
}

.price-row strong {
  font-size: 1.15rem;
}

.price-row a,
.add-to-cart {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: white;
  padding: 0 0.85rem;
  font-weight: 900;
  white-space: nowrap;
}

.add-to-cart {
  font: inherit;
  font-size: 0.9rem;
  width: 100%;
}

.add-to-cart.added {
  background: rgba(34, 244, 255, 0.18);
  box-shadow: 0 0 22px rgba(34, 244, 255, 0.18);
}

.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 48;
  display: none;
}

.product-modal.open {
  display: block;
}

.product-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 2, 7, 0.76);
  backdrop-filter: blur(10px);
}

.product-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  width: min(920px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(18, 20, 24, 0.98);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform: translate(-50%, -50%);
}

.marketplace-dialog {
  grid-template-columns: minmax(320px, 1.12fr) minmax(340px, 0.88fr);
  width: min(1120px, calc(100% - 2rem));
}

.product-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 2, 7, 0.62);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
}

.product-media {
  position: relative;
  min-height: 520px;
  background: #09020f;
}

.marketplace-detail-media {
  position: relative;
  min-height: 620px;
  background: #09020f;
}

.product-gallery,
.product-slide {
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.product-slide {
  display: none;
  position: relative;
}

.product-slide.active {
  display: block;
}

.product-media video,
.product-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.marketplace-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.product-media.photo-mode {
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 2vw, 1.2rem);
  background:
    radial-gradient(circle at 18% 18%, rgba(34, 244, 255, 0.18), transparent 16rem),
    radial-gradient(circle at 78% 72%, rgba(255, 47, 214, 0.18), transparent 18rem),
    #09020f;
}

.product-photo-frame {
  width: 100%;
  height: 100%;
  min-height: 492px;
  padding: 0.45rem;
  border: 1px solid rgba(34, 244, 255, 0.48);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(34, 244, 255, 0.16), rgba(255, 47, 214, 0.14));
  box-shadow:
    0 0 38px rgba(34, 244, 255, 0.22),
    0 0 42px rgba(255, 47, 214, 0.18),
    inset 0 0 28px rgba(255, 255, 255, 0.04);
}

.product-photo-frame > img {
  display: block;
  border-radius: 6px;
  filter: saturate(1.08) contrast(1.04);
}

.product-gallery-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(5, 2, 7, 0.72);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
}

.product-gallery-btn.prev {
  left: 1rem;
}

.product-gallery-btn.next {
  right: 1rem;
}

.product-gallery-count {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 4;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 2, 7, 0.72);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 900;
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.product-photo-collage {
  width: 100%;
  height: 100%;
  display: grid;
  gap: 0.45rem;
}

.product-photo-collage.count-1 {
  grid-template-columns: 1fr;
}

.product-photo-collage.count-2,
.product-photo-collage.count-3,
.product-photo-collage.count-4 {
  grid-template-columns: repeat(2, 1fr);
}

.product-photo-collage.count-3 img:first-child {
  grid-row: span 2;
}

.product-photo-collage img {
  min-height: 0;
  border-radius: 6px;
  filter: saturate(1.08) contrast(1.04);
}

.product-sound-panel {
  position: absolute;
  left: auto;
  right: 1rem;
  top: 1rem;
  bottom: auto;
  display: grid;
  grid-template-columns: 28px minmax(72px, 1fr);
  width: min(138px, calc(100% - 2rem));
  gap: 0.35rem;
  align-items: center;
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 2, 7, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 28px rgba(34, 244, 255, 0.18);
}

.product-sound-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  min-height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  overflow: hidden;
}

.product-sound-toggle.active {
  color: var(--cyan);
  box-shadow: inset 0 0 0 1px rgba(34, 244, 255, 0.26);
}

.product-sound-toggle.muted {
  opacity: 0.42;
  filter: grayscale(1);
}

.product-sound-toggle.muted::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 2px;
  background: rgba(255, 255, 255, 0.88);
  transform: rotate(-38deg);
}

.product-sound-toggle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-volume {
  width: 100%;
  accent-color: var(--cyan);
}

.product-info {
  display: grid;
  align-content: start;
  gap: 1rem;
  overflow-y: auto;
  padding: clamp(1rem, 3vw, 1.7rem);
}

.marketplace-detail-info {
  display: grid;
  align-content: start;
  gap: 1rem;
  overflow-y: auto;
  padding: clamp(1rem, 3vw, 1.7rem);
}

.marketplace-detail-info h2 {
  margin: 0;
  padding-right: 2.4rem;
  font-size: clamp(1.8rem, 3.2vw, 3.4rem);
  line-height: 0.95;
}

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

.product-title-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  padding-right: 2.4rem;
}

.product-title-row h2 {
  min-width: 0;
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 3rem);
  line-height: 0.95;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-avatar {
  width: 64px;
  height: 64px;
  flex-basis: 64px;
}

.product-prices span {
  min-height: 72px;
}

.product-description {
  margin: 0;
  color: #dec8ea;
  line-height: 1.6;
  white-space: pre-line;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 58px;
  gap: 0.65rem;
  align-items: stretch;
}

.product-add {
  min-height: 52px;
}

.tiktok-link {
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 22px rgba(34, 244, 255, 0.14);
  overflow: hidden;
}

.tiktok-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-modal.open {
  display: block;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 2, 7, 0.72);
  backdrop-filter: blur(8px);
}

.cart-dialog {
  position: absolute;
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  width: min(460px, calc(100% - 2rem));
  overflow-y: auto;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(18, 20, 24, 0.98);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.cart-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
}

.cart-dialog h2 {
  margin: 0 3rem 1rem 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.cart-items {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.cart-item,
.empty-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 62px;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.cart-item span,
.empty-cart {
  color: rgba(255, 255, 255, 0.6);
}

.cart-item strong {
  display: block;
  color: white;
}

.remove-cart-item {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: transparent;
  color: white;
  cursor: pointer;
}

.admin-row-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}

.admin-list {
  display: grid;
  gap: 0.7rem;
}

.admin-row-actions .ghost-btn {
  min-width: 0;
  min-height: 34px;
  padding: 0 0.65rem;
  font-size: 0.82rem;
}

.admin-media-block {
  display: grid;
  gap: 0.8rem;
  padding: 0.9rem;
  border: 1px solid rgba(34, 244, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.admin-media-block > strong {
  color: white;
}

.admin-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.admin-media-item {
  display: grid;
  gap: 0.55rem;
}

.admin-media-item video,
.admin-media-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #09020f;
}

.cart-form {
  display: grid;
  gap: 0.9rem;
}

.cart-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 800;
}

.cart-form .check-field {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 0.65rem;
  color: #dec8ea;
  font-size: 0.86rem;
  line-height: 1.4;
  font-weight: 600;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--pink);
}

.check-field a {
  color: var(--cyan);
  font-weight: 900;
  text-shadow: 0 0 12px rgba(34, 244, 255, 0.42);
}

.cart-form input,
.cart-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0 0.9rem;
  font: inherit;
}

.lead-form textarea {
  min-height: 120px;
  padding-block: 0.75rem;
  resize: vertical;
}

.cart-form select option {
  background: #170922;
}

.legal-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.legal-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.cart-form button {
  min-height: 52px;
  font: inherit;
}

.booking-status {
  min-height: 24px;
  margin: 0;
  color: var(--cyan);
  font-weight: 900;
  text-shadow: 0 0 14px rgba(34, 244, 255, 0.55);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem) clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  background: rgba(5, 2, 7, 0.82);
  color: var(--muted);
}

.site-footer div,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.site-footer strong {
  color: white;
  text-shadow: 0 0 16px rgba(255, 47, 214, 0.45);
}

.site-footer a {
  color: var(--cyan);
  font-weight: 900;
}

.legal-page {
  min-height: 100vh;
  padding: clamp(1rem, 4vw, 3rem);
}

.legal-brand {
  width: max-content;
  margin-bottom: clamp(2rem, 6vw, 4rem);
}

.legal-card {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(1.2rem, 4vw, 2.6rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 47, 214, 0.12), transparent 44%),
    var(--panel-strong);
  box-shadow: 0 0 46px rgba(139, 77, 255, 0.18);
}

.legal-card h1 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.95;
}

.legal-card p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .topbar nav {
    display: none;
  }

  .flow-row,
  .flow-row.reverse {
    grid-template-columns: 1fr;
  }

  .flow-row.reverse .flow-copy,
  .flow-row.reverse .flow-phone {
    grid-column: auto;
    grid-row: auto;
  }

  .flow-phone {
    width: min(100%, 360px);
  }

  .social-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .side-rail {
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    overflow-x: auto;
    padding: 1rem 0;
    justify-items: stretch;
  }

  .side-rail-left,
  .side-rail-right {
    justify-items: stretch;
  }

  .creator-card {
    width: 100%;
    min-width: 170px;
  }

  .phone-shell {
    max-width: 430px;
    margin: 0 auto;
  }

  .offer-grid,
  .blogger-grid,
  .package-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .marketplace-shell {
    grid-template-columns: 1fr;
  }

  .marketplace-sidebar {
    position: static;
  }

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

  .blogger-grid {
    justify-items: center;
  }

  .blogger-card {
    width: min(100%, 360px);
  }

  .marketplace-card {
    grid-template-columns: 220px minmax(0, 1fr);
    width: 100%;
  }

  .marketplace-card-side {
    grid-column: 2;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .marketplace-contact {
    grid-column: 1 / -1;
  }

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

  .filter-row {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .topbar {
    padding: 0.56rem 0.8rem;
  }

  .nav-cta {
    display: none;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    min-width: 54px;
  }

  .brand-name strong {
    font-size: 0.86rem;
  }

  .brand-name small {
    font-size: 0.5rem;
  }

  .telegram-float {
    width: 52px;
    height: 52px;
  }

  .cart-float {
    min-height: 44px;
    padding: 0 0.55rem 0 0.75rem;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    margin-top: 6.2rem;
    margin-bottom: 5.4rem;
  }

  h1 {
    font-size: clamp(3.4rem, 19vw, 5.4rem);
  }

  .hero-title {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

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

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .campaign-flow {
    gap: 3rem;
    padding-inline: 0.9rem;
  }

  .flow-copy {
    min-height: 0;
  }

  .flow-phone {
    width: min(100%, 310px);
  }

  .social-stage {
    padding-inline: 0.8rem;
  }

  .side-rail {
    grid-template-columns: repeat(3, 72vw);
  }

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

  .catalog-hero {
    min-height: 66vh;
    padding-bottom: 4rem;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .price-badges {
    grid-template-columns: 1fr;
  }

  .price-row {
    align-items: stretch;
    flex-direction: column;
  }

  .marketplace-searchbar {
    grid-template-columns: 1fr;
  }

  .marketplace-perks {
    grid-template-columns: 1fr;
  }

  .marketplace-filter-list {
    grid-template-columns: 1fr;
  }

  .marketplace-results-head {
    align-items: start;
    flex-direction: column;
  }

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

  .marketplace-cover {
    min-height: 220px;
  }

  .marketplace-card-side {
    grid-column: auto;
    grid-template-columns: 1fr;
    justify-items: stretch;
    text-align: left;
  }

  .sound-pill {
    min-width: 210px;
    min-height: 52px;
    font-size: 0.8rem;
  }

  .blogger-card.sound-on .sound-pill {
    min-width: 200px;
    font-size: 0.74rem;
  }

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

  .product-dialog {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .product-media,
  .marketplace-detail-media,
  .product-gallery,
  .product-slide,
  .product-media video,
  .product-media img,
  .marketplace-detail-media img,
  .product-photo-frame {
    min-height: 320px;
    max-height: 44vh;
  }

  .product-sound-panel {
    grid-template-columns: 28px minmax(72px, 1fr);
  }

  .product-title-row {
    padding-right: 2.6rem;
  }

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

.marketplace-city-select,
.marketplace-city-input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0 0.9rem;
  font: inherit;
  font-weight: 800;
}

.marketplace-city-select option {
  background: #170922;
}

.marketplace-city-strip {
  width: min(100%, var(--content-max));
  display: flex;
  gap: 0.55rem;
  margin: -0.45rem auto 1rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.city-chip {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  padding: 0 0.8rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.city-chip.active,
.city-chip:hover {
  border-color: rgba(34, 244, 255, 0.55);
  color: white;
  box-shadow: 0 0 18px rgba(34, 244, 255, 0.14);
}

.package-account-preview {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.package-account-preview > div {
  display: flex;
  align-items: center;
}

.package-account-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-right: -0.4rem;
  border: 2px solid rgba(5, 2, 7, 0.88);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 47, 214, 0.85), rgba(34, 244, 255, 0.72));
  color: white;
  font-size: 0.68rem;
  font-weight: 1000;
}

.package-picker-list {
  display: grid;
  gap: 0.55rem;
}

.package-picker-item {
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.package-picker-item span {
  display: grid;
  gap: 0.15rem;
}

.package-picker-item small {
  color: var(--muted);
  font-weight: 700;
}

.account-page {
  padding: calc(76px + clamp(1rem, 4vw, 3rem)) clamp(1rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
}

.account-hero-panel,
.account-panel,
.account-stats {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.account-hero-panel,
.account-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(34, 244, 255, 0.1), transparent 44%),
    rgba(18, 8, 30, 0.78);
  box-shadow: 0 0 38px rgba(139, 77, 255, 0.14);
}

.account-hero-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 4vw, 2.2rem);
}

.account-hero-panel h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  line-height: 0.95;
}

.account-hero-panel p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.account-actions,
.account-panel-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-block: 1rem;
}

.account-stats div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.account-stats strong {
  color: white;
  font-size: 2rem;
}

.account-stats span {
  color: var(--muted);
  font-weight: 900;
}

.account-panel {
  padding: clamp(1rem, 3vw, 1.5rem);
}

.account-panel-head {
  justify-content: space-between;
  margin-bottom: 1rem;
}

.account-panel-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.account-list {
  display: grid;
  gap: 0.75rem;
}

.account-listing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.account-listing strong {
  display: block;
  color: white;
  font-size: 1.05rem;
}

.account-listing span,
.account-listing p {
  color: var(--muted);
}

.account-listing p {
  margin: 0.45rem 0 0;
  line-height: 1.45;
}

.account-listing-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.account-listing-side > span,
.account-alert {
  border: 1px solid rgba(34, 244, 255, 0.24);
  border-radius: 8px;
  background: rgba(34, 244, 255, 0.08);
  color: var(--cyan);
  padding: 0.45rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 900;
}

.status-rejected .account-listing-side > span,
.account-alert {
  border-color: rgba(255, 47, 214, 0.32);
  background: rgba(255, 47, 214, 0.1);
  color: #ffd7f7;
}

.account-alert {
  margin-bottom: 1rem;
}

.account-alert p {
  margin: 0.35rem 0 0;
  color: #ffd7f7;
}

.account-form-card,
.account-auth {
  margin-top: 0;
}

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

  .account-listing {
    grid-template-columns: 1fr;
  }

  .account-listing-side {
    justify-content: flex-start;
  }
}

.account-listing-metrics {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.account-listing-metrics span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0 0.6rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.admin-page {
  padding-top: calc(76px + clamp(1rem, 4vw, 2rem));
}

.admin-dashboard {
  width: min(1180px, 100%);
}

.admin-tabs {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.2rem;
}

.admin-tabs a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  padding: 0 0.85rem;
  font-weight: 900;
}

.admin-tabs a.active,
.admin-tabs a:hover {
  border-color: rgba(34, 244, 255, 0.55);
  box-shadow: 0 0 18px rgba(34, 244, 255, 0.14);
}

.admin-tab-badge,
.admin-new-dot {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #ff2fd6;
  color: white;
  font-size: 0.74rem;
  font-weight: 1000;
  box-shadow: 0 0 16px rgba(255, 47, 214, 0.55);
}

.admin-toolbar,
.form-action-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.admin-section {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.admin-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.admin-section-head h2,
.admin-moderation-panel h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1;
}

.admin-section-head span {
  min-width: 34px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--cyan);
  font-weight: 1000;
}

.admin-row-card,
.admin-marketplace-row {
  align-items: center;
}

.admin-marketplace-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  min-height: 78px;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.admin-marketplace-row.status-pending {
  border-color: rgba(255, 47, 214, 0.36);
  background: linear-gradient(135deg, rgba(255, 47, 214, 0.12), rgba(255, 255, 255, 0.05));
}

.admin-marketplace-row.status-deleted {
  opacity: 0.72;
}

.admin-row-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-marketplace-row strong {
  color: white;
}

.admin-marketplace-row span,
.admin-marketplace-row small,
.admin-marketplace-row p {
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

.admin-marketplace-row p {
  margin: 0.35rem 0 0;
  color: #ffd7f7;
}

.admin-moderation-panel {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(34, 244, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.admin-moderation-preview .marketplace-card {
  width: 100%;
  max-width: none;
}

.admin-moderation-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.admin-danger-button {
  border-color: rgba(255, 47, 214, 0.44);
  color: #ffd7f7;
}

.form-action-row button,
.form-action-row a {
  min-width: min(100%, 180px);
}

.status-deleted .account-listing-side > span {
  border-color: rgba(255, 47, 214, 0.32);
  background: rgba(255, 47, 214, 0.1);
  color: #ffd7f7;
}

@media (max-width: 760px) {
  .admin-marketplace-row {
    grid-template-columns: 1fr;
  }

  .admin-row-actions,
  .admin-moderation-actions,
  .form-action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-row-actions .primary-btn,
  .admin-row-actions .ghost-btn,
  .admin-moderation-actions .primary-btn,
  .admin-moderation-actions .ghost-btn,
  .form-action-row button,
  .form-action-row a {
    width: 100%;
  }
}


.marketplace-form-card {
  width: min(1280px, 100%);
}

.marketplace-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 1rem;
  align-items: start;
}

.marketplace-live-preview {
  min-width: 0;
}

.marketplace-live-sticky {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 0.75rem;
}

.live-preview-card {
  grid-template-columns: 1fr;
  min-height: auto;
}

.live-preview-card .marketplace-cover {
  min-height: 240px;
}

.live-preview-card .marketplace-card-side {
  grid-template-columns: 1fr;
  justify-items: stretch;
  text-align: left;
}

.required-field {
  position: relative;
}

.required-field::after {
  content: "*";
  color: #ff7ade;
  font-weight: 1000;
  text-shadow: 0 0 12px rgba(255, 47, 214, 0.65);
}

.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0 0.9rem;
  font: inherit;
}

.lead-form select option {
  background: #170922;
}

.tag-field {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 800;
}

.tag-field > strong {
  color: var(--muted);
}

.tag-editor {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.45rem;
}

.tag-list {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.tag-chip {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(34, 244, 255, 0.26);
  border-radius: 999px;
  background: rgba(34, 244, 255, 0.1);
  color: white;
  padding: 0 0.6rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
}

.tag-chip b {
  color: #ffb7ed;
  font-size: 1rem;
  line-height: 1;
}

.tag-editor input {
  flex: 1 1 180px;
  min-width: 150px;
  min-height: 36px;
  border: 0;
  background: transparent;
  color: white;
  padding: 0 0.25rem;
  outline: none;
  font: inherit;
}

.file-drop {
  min-height: 92px;
  display: grid;
  align-items: center;
  border: 1px dashed rgba(34, 244, 255, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(34, 244, 255, 0.09), rgba(255, 47, 214, 0.08));
  color: white;
  padding: 1rem;
  cursor: pointer;
}

.file-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.file-drop span {
  display: grid;
  gap: 0.25rem;
}

.file-drop strong {
  color: white;
  font-size: 1rem;
}

.file-drop small {
  color: var(--cyan);
  font-weight: 900;
}

.field-invalid,
.tag-field.field-invalid .tag-editor,
.file-drop.field-invalid,
.required-field.field-invalid input,
.required-field.field-invalid select,
.required-field.field-invalid textarea {
  border-color: rgba(255, 63, 119, 0.95) !important;
  box-shadow: 0 0 0 3px rgba(255, 63, 119, 0.16), 0 0 24px rgba(255, 63, 119, 0.22) !important;
  animation: fieldShake 0.32s ease-in-out;
}

@keyframes fieldShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}

@media (max-width: 1040px) {
  .marketplace-form-shell {
    grid-template-columns: 1fr;
  }

  .marketplace-live-sticky {
    position: static;
  }
}


/* Darker premium controls */
.nav-cta,
.primary-btn,
.lead-form button,
.cart-form button,
.add-to-cart,
.package-add {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(135deg, #4a1025 0%, #24122f 54%, #0f3344 100%);
  color: #fff6fb;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-weight: 950;
}

.nav-cta:hover,
.primary-btn:hover,
.lead-form button:hover,
.cart-form button:hover,
.add-to-cart:hover,
.package-add:hover {
  background: linear-gradient(135deg, #651734 0%, #2c173b 52%, #12445a 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 18px rgba(86, 24, 48, 0.28);
}

.ghost-btn,
.filter-chip,
.city-chip {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(12, 8, 18, 0.72);
  color: #f4e7f4;
  font-weight: 950;
}

.ghost-btn:hover,
.filter-chip:hover,
.filter-chip.active,
.city-chip:hover,
.city-chip.active {
  border-color: rgba(74, 118, 148, 0.56);
  background: linear-gradient(135deg, rgba(55, 15, 33, 0.76), rgba(12, 50, 66, 0.74));
  color: white;
  box-shadow: 0 0 18px rgba(18, 68, 90, 0.18);
}

.lead-form input,
.lead-form select,
.cart-form input,
.cart-form select,
.lead-form textarea,
.marketplace-city-select,
.marketplace-city-input,
.marketplace-price-filter {
  font-weight: 850;
  background: rgba(9, 7, 14, 0.76);
}

.lead-form select option,
.cart-form select option,
.marketplace-city-select option,
.marketplace-price-filter option {
  background: #100a16;
  color: white;
  font-weight: 850;
}

.account-page {
  min-height: calc(100vh - 110px);
}

.account-guest-page {
  display: grid;
  align-items: center;
}

.account-guest-card {
  width: min(1060px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
  gap: clamp(1rem, 4vw, 2rem);
  align-items: center;
  margin: 0 auto;
  padding: clamp(1.2rem, 4vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(69, 19, 38, 0.34), rgba(10, 43, 58, 0.24)), rgba(13, 9, 20, 0.86);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.32);
}

.account-guest-card h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.95;
}

.account-guest-card p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.65;
}

.account-guest-actions {
  display: grid;
  gap: 0.65rem;
}

.account-guest-actions a {
  width: 100%;
  justify-content: center;
}

.account-legal-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem !important;
  line-height: 1.5 !important;
}

.account-legal-note a,
.terms-card a:not(.ghost-btn) {
  color: var(--cyan);
  font-weight: 950;
}

.terms-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.terms-nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.55rem 0.7rem;
}

.terms-card section {
  padding-top: 0.8rem;
}

.terms-card h2 {
  margin-bottom: 0.2rem;
  color: white;
}

.price-compose {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 0.5rem;
}

.live-preview-description {
  margin-top: 0.45rem !important;
  color: rgba(244, 231, 244, 0.72) !important;
  font-size: 0.84rem !important;
}

.confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 1rem;
}

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

.confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 2, 6, 0.78);
  backdrop-filter: blur(12px);
}

.confirm-dialog {
  position: relative;
  width: min(420px, 100%);
  display: grid;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(74, 16, 37, 0.34), rgba(11, 47, 62, 0.24)), rgba(13, 9, 20, 0.96);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  padding: 1.1rem;
}

.confirm-dialog h2 {
  margin: 0;
  font-size: 1.35rem;
}

.confirm-dialog p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

@media (max-width: 760px) {
  .account-guest-card,
  .confirm-actions {
    grid-template-columns: 1fr;
  }
}

.prompt-modal textarea {
  width: 100%;
  min-height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(9, 7, 14, 0.82);
  color: white;
  padding: 0.8rem;
  resize: vertical;
  font: inherit;
  font-weight: 800;
}

/* v47 polish: premium buttons, searchbar fit, tag editor */
.nav-cta,
.primary-btn,
.lead-form button,
.cart-form button,
.add-to-cart,
.package-add,
.hero-actions .ghost-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(108, 37, 61, 0.86) !important;
  outline: 0 !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, #5a142c 0%, #2a132b 54%, #123344 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -2px 0 rgba(0, 0, 0, 0.32),
    0 10px 0 rgba(5, 2, 7, 0.34),
    0 18px 34px rgba(0, 0, 0, 0.36) !important;
  transform: translateY(0);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.nav-cta::before,
.primary-btn::before,
.lead-form button::before,
.cart-form button::before,
.add-to-cart::before,
.package-add::before,
.hero-actions .ghost-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 7px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.13), transparent 32%, rgba(255, 255, 255, 0.05));
  pointer-events: none;
}

.nav-cta:hover,
.primary-btn:hover,
.lead-form button:hover,
.cart-form button:hover,
.add-to-cart:hover,
.package-add:hover,
.hero-actions .ghost-btn:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(135deg, #6b1834 0%, #321536 52%, #164157 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.34),
    0 12px 0 rgba(5, 2, 7, 0.34),
    0 22px 44px rgba(0, 0, 0, 0.42) !important;
}

.nav-cta:active,
.primary-btn:active,
.lead-form button:active,
.cart-form button:active,
.add-to-cart:active,
.package-add:active,
.hero-actions .ghost-btn:active {
  transform: translateY(3px);
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.38),
    0 5px 0 rgba(5, 2, 7, 0.34),
    0 12px 26px rgba(0, 0, 0, 0.34) !important;
}

.marketplace-searchbar {
  grid-template-columns: minmax(0, 1fr) minmax(160px, 210px) minmax(112px, 140px);
  align-items: stretch;
  overflow: hidden;
}

.marketplace-search-button {
  width: 100%;
  min-width: 0 !important;
  max-width: 100%;
  padding-inline: 0.75rem;
}

.marketplace-search,
.marketplace-city-select,
.marketplace-city-input,
.marketplace-price-filter {
  min-width: 0;
}

.tag-field > strong::after {
  content: " *";
  color: #ff7ade;
}

.tag-field.required-field::after {
  content: "";
}

.tag-editor {
  position: relative;
  border-color: rgba(87, 35, 62, 0.72);
  background:
    linear-gradient(135deg, rgba(54, 16, 34, 0.28), rgba(10, 42, 56, 0.18)),
    rgba(8, 6, 12, 0.92) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tag-editor input,
.tag-editor input:focus,
.tag-editor input:-webkit-autofill {
  appearance: none;
  border: 0 !important;
  background: transparent !important;
  color: white !important;
  box-shadow: none !important;
  -webkit-text-fill-color: white;
}

.tag-draft-preview {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px dashed rgba(255, 122, 222, 0.42);
  border-radius: 999px;
  background: rgba(90, 20, 44, 0.28);
  color: #ffd7f4;
  padding: 0 0.6rem;
  font-size: 0.78rem;
  font-weight: 950;
}

.tag-draft-preview[hidden] {
  display: none;
}

@media (max-width: 620px) {
  .marketplace-searchbar {
    grid-template-columns: 1fr;
  }
}

/* v49: return to glossy dark violet/blue buttons, red exits */
.nav-cta,
.primary-btn,
.lead-form button,
.cart-form button,
.add-to-cart,
.package-add,
.hero-actions .ghost-btn {
  border: 1px solid rgba(134, 95, 255, 0.44) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03) 38%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(135deg, #2a155f 0%, #17103d 48%, #08384b 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -2px 0 rgba(0, 0, 0, 0.34),
    0 8px 0 rgba(4, 2, 12, 0.42),
    0 18px 34px rgba(0, 0, 0, 0.38),
    0 0 22px rgba(34, 244, 255, 0.08) !important;
}

.nav-cta::before,
.primary-btn::before,
.lead-form button::before,
.cart-form button::before,
.add-to-cart::before,
.package-add::before,
.hero-actions .ghost-btn::before {
  inset: 1px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 30%, rgba(34, 244, 255, 0.08) 72%, transparent);
}

.nav-cta:hover,
.primary-btn:hover,
.lead-form button:hover,
.cart-form button:hover,
.add-to-cart:hover,
.package-add:hover,
.hero-actions .ghost-btn:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.04) 38%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(135deg, #352078 0%, #1d1450 48%, #0b4962 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -2px 0 rgba(0, 0, 0, 0.36),
    0 10px 0 rgba(4, 2, 12, 0.42),
    0 22px 44px rgba(0, 0, 0, 0.44),
    0 0 24px rgba(34, 244, 255, 0.12) !important;
}

.nav-cta:active,
.primary-btn:active,
.lead-form button:active,
.cart-form button:active,
.add-to-cart:active,
.package-add:active,
.hero-actions .ghost-btn:active {
  transform: translateY(3px);
  box-shadow:
    inset 0 2px 10px rgba(0, 0, 0, 0.42),
    0 4px 0 rgba(4, 2, 12, 0.42),
    0 12px 22px rgba(0, 0, 0, 0.36) !important;
}

a[href$="/logout"],
.admin-tabs a[href60"/logout"] {
  border: 1px solid rgba(255, 108, 130, 0.5) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), transparent 38%, rgba(0, 0, 0, 0.14)),
    linear-gradient(135deg, #7d182a 0%, #4f101e 58%, #220912 100%) !important;
  color: #fff4f6 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -2px 0 rgba(0, 0, 0, 0.38),
    0 7px 0 rgba(40, 4, 12, 0.5),
    0 16px 32px rgba(0, 0, 0, 0.34) !important;
}

a[href$="/logout"]:hover,
.admin-tabs a[href60"/logout"]:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.17), transparent 38%, rgba(0, 0, 0, 0.15)),
    linear-gradient(135deg, #9a2036 0%, #601424 58%, #2b0b15 100%) !important;
}

.live-preview-card {
  cursor: pointer;
}

/* v50: flatter important buttons, no 3D step */
.nav-cta,
.primary-btn,
.lead-form button,
.cart-form button,
.add-to-cart,
.package-add,
.hero-actions .ghost-btn {
  border: 1px solid rgba(143, 109, 255, 0.48) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03) 45%, rgba(0, 0, 0, 0.08)),
    linear-gradient(135deg, #33207b 0%, #21165d 52%, #0b4f68 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 18px rgba(34, 244, 255, 0.1),
    0 10px 24px rgba(0, 0, 0, 0.22) !important;
  transform: none !important;
  cursor: pointer;
}

.nav-cta::before,
.primary-btn::before,
.lead-form button::before,
.cart-form button::before,
.add-to-cart::before,
.package-add::before,
.hero-actions .ghost-btn::before {
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 36%, rgba(34, 244, 255, 0.06));
}

.nav-cta:hover,
.primary-btn:hover,
.lead-form button:hover,
.cart-form button:hover,
.add-to-cart:hover,
.package-add:hover,
.hero-actions .ghost-btn:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04) 45%, rgba(0, 0, 0, 0.09)),
    linear-gradient(135deg, #422aa0 0%, #291b73 52%, #0d627f 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 22px rgba(34, 244, 255, 0.15),
    0 12px 28px rgba(0, 0, 0, 0.26) !important;
  transform: none !important;
}

.nav-cta:active,
.primary-btn:active,
.lead-form button:active,
.cart-form button:active,
.add-to-cart:active,
.package-add:active,
.hero-actions .ghost-btn:active {
  transform: translateY(1px) !important;
  box-shadow:
    inset 0 2px 10px rgba(0, 0, 0, 0.25),
    0 0 14px rgba(34, 244, 255, 0.1) !important;
}

a[href$="/logout"],
.admin-tabs a[href60"/logout"] {
  border: 1px solid rgba(255, 104, 132, 0.54) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 45%, rgba(0, 0, 0, 0.1)),
    linear-gradient(135deg, #9b1f38 0%, #6d1428 58%, #3b0c18 100%) !important;
  color: #fff7f8 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 18px rgba(255, 64, 108, 0.16),
    0 10px 24px rgba(0, 0, 0, 0.22) !important;
  transform: none !important;
}

a[href$="/logout"]:hover,
.admin-tabs a[href60"/logout"]:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.03) 45%, rgba(0, 0, 0, 0.11)),
    linear-gradient(135deg, #bd2947 0%, #801832 58%, #460f1e 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.17),
    0 0 22px rgba(255, 64, 108, 0.22),
    0 12px 28px rgba(0, 0, 0, 0.25) !important;
}

/* v51: subtle neon pink accent on important buttons */
.nav-cta,
.primary-btn,
.lead-form button,
.cart-form button,
.add-to-cart,
.package-add,
.hero-actions .ghost-btn {
  border-color: rgba(255, 92, 210, 0.42) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03) 45%, rgba(0, 0, 0, 0.08)),
    radial-gradient(ellipse at 18% 0%, rgba(255, 64, 190, 0.34), transparent 54%),
    linear-gradient(135deg, #372083 0%, #241660 52%, #0b4f68 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 16px rgba(255, 64, 190, 0.13),
    0 0 18px rgba(34, 244, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.22) !important;
}

.nav-cta:hover,
.primary-btn:hover,
.lead-form button:hover,
.cart-form button:hover,
.add-to-cart:hover,
.package-add:hover,
.hero-actions .ghost-btn:hover {
  border-color: rgba(255, 111, 220, 0.56) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04) 45%, rgba(0, 0, 0, 0.09)),
    radial-gradient(ellipse at 18% 0%, rgba(255, 64, 190, 0.42), transparent 56%),
    linear-gradient(135deg, #432aa0 0%, #2a1b73 52%, #0d627f 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 22px rgba(255, 64, 190, 0.18),
    0 0 22px rgba(34, 244, 255, 0.12),
    0 12px 28px rgba(0, 0, 0, 0.26) !important;
}

/* v52: darker matte buttons, closer to marketplace perk panels */
.nav-cta,
.primary-btn,
.lead-form button,
.cart-form button,
.add-to-cart,
.package-add,
.hero-actions .ghost-btn {
  border-color: rgba(255, 92, 210, 0.26) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012) 48%, rgba(0, 0, 0, 0.1)),
    radial-gradient(ellipse at 12% 0%, rgba(255, 64, 190, 0.16), transparent 58%),
    linear-gradient(135deg, #1b123b 0%, #130d2c 54%, #082c3a 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 13px rgba(255, 64, 190, 0.07),
    0 0 16px rgba(34, 244, 255, 0.055),
    0 8px 22px rgba(0, 0, 0, 0.22) !important;
}

.nav-cta::before,
.primary-btn::before,
.lead-form button::before,
.cart-form button::before,
.add-to-cart::before,
.package-add::before,
.hero-actions .ghost-btn::before {
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.075), transparent 42%, rgba(34, 244, 255, 0.035));
}

.nav-cta:hover,
.primary-btn:hover,
.lead-form button:hover,
.cart-form button:hover,
.add-to-cart:hover,
.package-add:hover,
.hero-actions .ghost-btn:hover {
  border-color: rgba(255, 111, 220, 0.36) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018) 48%, rgba(0, 0, 0, 0.1)),
    radial-gradient(ellipse at 12% 0%, rgba(255, 64, 190, 0.22), transparent 60%),
    linear-gradient(135deg, #24184e 0%, #181038 54%, #0a3748 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 16px rgba(255, 64, 190, 0.1),
    0 0 18px rgba(34, 244, 255, 0.075),
    0 10px 26px rgba(0, 0, 0, 0.25) !important;
}

/* v53: flat important buttons, no 3D */
.nav-cta,
.primary-btn,
.lead-form button,
.cart-form button,
.add-to-cart,
.package-add,
.hero-actions .ghost-btn {
  border: 1px solid rgba(190, 108, 255, 0.34) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, #241653 0%, #18113d 56%, #0a3344 100%) !important;
  box-shadow: 0 0 14px rgba(255, 64, 190, 0.08), 0 0 16px rgba(34, 244, 255, 0.05) !important;
  transform: none !important;
  transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease !important;
}

.nav-cta::before,
.primary-btn::before,
.lead-form button::before,
.cart-form button::before,
.add-to-cart::before,
.package-add::before,
.hero-actions .ghost-btn::before {
  content: none !important;
}

.nav-cta:hover,
.primary-btn:hover,
.lead-form button:hover,
.cart-form button:hover,
.add-to-cart:hover,
.package-add:hover,
.hero-actions .ghost-btn:hover {
  border-color: rgba(255, 102, 214, 0.46) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    linear-gradient(135deg, #2b1b67 0%, #1d164a 56%, #0c4054 100%) !important;
  box-shadow: 0 0 18px rgba(255, 64, 190, 0.11), 0 0 18px rgba(34, 244, 255, 0.07) !important;
  transform: none !important;
}

.nav-cta:active,
.primary-btn:active,
.lead-form button:active,
.cart-form button:active,
.add-to-cart:active,
.package-add:active,
.hero-actions .ghost-btn:active {
  transform: none !important;
  box-shadow: 0 0 10px rgba(255, 64, 190, 0.08), 0 0 10px rgba(34, 244, 255, 0.05) !important;
}

a[href$="/logout"],
.admin-tabs a[href60"/logout"] {
  box-shadow: 0 0 14px rgba(255, 64, 108, 0.14) !important;
  transform: none !important;
}

a[href$="/logout"]:active,
.admin-tabs a[href60"/logout"]:active {
  transform: none !important;
  box-shadow: 0 0 10px rgba(255, 64, 108, 0.12) !important;
}

/* v54: flatter two-tone pink/violet important buttons */
.nav-cta,
.primary-btn,
.lead-form button,
.cart-form button,
.add-to-cart,
.package-add,
.hero-actions .ghost-btn {
  border-color: rgba(255, 103, 214, 0.34) !important;
  background: linear-gradient(135deg, #2b1746 0%, #5a1c54 100%) !important;
  box-shadow: 0 0 14px rgba(255, 83, 196, 0.09) !important;
}

.nav-cta:hover,
.primary-btn:hover,
.lead-form button:hover,
.cart-form button:hover,
.add-to-cart:hover,
.package-add:hover,
.hero-actions .ghost-btn:hover {
  border-color: rgba(255, 121, 224, 0.44) !important;
  background: linear-gradient(135deg, #341c56 0%, #6a2363 100%) !important;
  box-shadow: 0 0 17px rgba(255, 83, 196, 0.13) !important;
}


/* v55: temporary closed sections and round TikTok action */
.construction-page {
  min-height: calc(100vh - 112px);
  padding: clamp(7rem, 12vw, 10rem) clamp(1rem, 4vw, 3rem) clamp(4rem, 8vw, 6rem);
  display: grid;
  place-items: center;
}

.construction-card {
  width: min(760px, 100%);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  display: grid;
  gap: 1.15rem;
  text-align: center;
  border: 1px solid rgba(255, 214, 74, 0.34);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(19, 16, 31, 0.96), rgba(10, 12, 22, 0.94));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36), 0 0 34px rgba(255, 214, 74, 0.08);
}

.construction-card h1 {
  margin: 0;
  font-size: clamp(2.1rem, 7vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.construction-card p:not(.eyebrow) {
  width: min(560px, 100%);
  margin: 0 auto;
  color: #dfd4ec;
  line-height: 1.65;
}

.construction-card .primary-btn {
  width: fit-content;
  justify-self: center;
  margin-top: 0.35rem;
}

.construction-stripes {
  width: 100%;
  height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(255, 229, 97, 0.46);
  background: repeating-linear-gradient(
    135deg,
    #f7ca28 0 16px,
    #17120c 16px 32px
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 0 18px rgba(247, 202, 40, 0.14);
}

.product-actions {
  grid-template-columns: 1fr 54px;
}

.tiktok-link {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  min-height: 54px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  overflow: hidden !important;
  background: #050508 !important;
  box-shadow: 0 0 16px rgba(34, 244, 255, 0.16) !important;
}

.tiktok-link img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: 50% !important;
}


/* v56: navigation polish, visible catalog prices, cart icon, calmer construction screen */
.hero-title-sub {
  color: #f7ffff !important;
  text-shadow:
    0 0 18px rgba(210, 252, 255, 0.9),
    0 0 42px rgba(34, 244, 255, 0.58),
    0 0 68px rgba(139, 77, 255, 0.44) !important;
}

.cart-float {
  min-width: 54px;
  min-height: 54px;
  width: 54px;
  height: 54px;
  justify-content: center;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cart-icon {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 4px;
  height: 13px;
  border: 2px solid currentColor;
  border-top-width: 2px;
  border-radius: 4px 4px 6px 6px;
}

.cart-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 10px;
  height: 9px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 24px;
  height: 24px;
  padding: 0 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  line-height: 1;
}

.construction-card {
  border-color: rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), 0 0 28px rgba(139, 77, 255, 0.08) !important;
}

.construction-stripes {
  display: none !important;
}

.cart-float { position: relative !important; }


/* v57: cart state under cards, cart avatars, brighter blue CORP */
.hero-title-sub {
  color: #ffffff !important;
  text-shadow:
    0 0 18px rgba(236, 255, 255, 0.96),
    0 0 36px rgba(34, 244, 255, 0.82),
    0 0 70px rgba(34, 244, 255, 0.54),
    0 0 92px rgba(139, 77, 255, 0.36) !important;
}

.price-row.compact.has-cart-shortcut,
.package-card-bottom.has-cart-shortcut {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  align-items: center;
  gap: 0.55rem;
}

.price-row.compact.has-cart-shortcut .add-to-cart,
.package-card-bottom.has-cart-shortcut .package-add {
  width: 100%;
}

.card-cart-shortcut {
  position: relative;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 244, 255, 0.34);
  border-radius: 999px;
  background: rgba(34, 244, 255, 0.12);
  color: white;
  box-shadow: 0 0 18px rgba(34, 244, 255, 0.14);
  cursor: pointer;
}

.card-cart-icon {
  position: relative;
  display: block;
  width: 21px;
  height: 21px;
}

.card-cart-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 3px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 4px 4px 6px 6px;
}

.card-cart-icon::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 9px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.card-cart-shortcut strong {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: white;
  font-size: 0.72rem;
  line-height: 1;
}

.add-to-cart.added,
.package-add.added {
  border-color: rgba(34, 244, 255, 0.28) !important;
  background: rgba(34, 244, 255, 0.14) !important;
  color: #f7ffff !important;
  box-shadow: 0 0 18px rgba(34, 244, 255, 0.11) !important;
}

.cart-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 34px;
}

.cart-item-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 18px rgba(34, 244, 255, 0.14);
}

.cart-item-info {
  min-width: 0;
}

.cart-item-info span,
.cart-item-info strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.package-card-bottom.has-cart-shortcut { grid-template-columns: auto minmax(0, 1fr) 46px !important; }


/* v58: brighter 3D CORP and beatmaker marketplace audio */
.hero-title-sub {
  color: #eaffff !important;
  transform: translateZ(20px) translateY(0.02em);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.42),
    0 4px 0 rgba(2, 59, 78, 0.58),
    0 0 16px rgba(34, 244, 255, 0.96),
    0 0 44px rgba(34, 244, 255, 0.72),
    0 0 82px rgba(139, 77, 255, 0.46) !important;
}

.hero-title-sub::after {
  content: "CORP";
  position: absolute;
  inset: 0;
  z-index: -1;
  color: rgba(34, 244, 255, 0.2);
  transform: translate(0.045em, 0.055em) translateZ(-16px);
  text-shadow: 0 0 22px rgba(34, 244, 255, 0.58);
}

.beat-cover {
  isolation: isolate;
}

.beat-audio-toggle {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  z-index: 5;
  width: 46px;
  height: 46px;
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 244, 255, 0.36);
  border-radius: 999px;
  background: rgba(5, 2, 7, 0.78);
  color: white;
  box-shadow: 0 0 22px rgba(34, 244, 255, 0.18);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.beat-audio-toggle span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
}

.beat-audio-toggle.playing {
  border-color: rgba(255, 47, 214, 0.55);
  background: rgba(255, 47, 214, 0.22);
  box-shadow: 0 0 26px rgba(255, 47, 214, 0.26), 0 0 28px rgba(34, 244, 255, 0.16);
}

.beat-audio-toggle.playing span {
  width: 14px;
  height: 16px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 35%, transparent 35% 65%, currentColor 65% 100%);
}

.beat-card.playing .marketplace-cover img,
.marketplace-card.playing .marketplace-cover img {
  animation: beat-cover-pulse 720ms ease-in-out infinite alternate;
}

@keyframes beat-cover-pulse {
  from { transform: scale(1.02); filter: saturate(1.08) contrast(1.02); }
  to { transform: scale(1.075); filter: saturate(1.28) contrast(1.08); }
}

.marketplace-author {
  display: block;
  margin: -0.2rem 0 0.45rem;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(34, 244, 255, 0.34);
}

.detail-author {
  margin: -0.45rem 0 0.35rem;
}

.beat-detail-player {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  margin: 0.25rem 0 0.35rem;
  padding: 0.65rem;
  border: 1px solid rgba(34, 244, 255, 0.2);
  border-radius: 8px;
  background: rgba(34, 244, 255, 0.08);
}

.beat-detail-player .beat-audio-toggle {
  position: relative;
  inset: auto;
  width: 52px;
  height: 52px;
}

.beat-detail-player audio {
  width: 100%;
  min-width: 0;
  accent-color: var(--cyan);
}

.marketplace-modal.playing .marketplace-detail-media img { animation: beat-cover-pulse 720ms ease-in-out infinite alternate; }


/* v59: speaker icon and custom beat player */
.beat-audio-toggle span,
.beat-volume-icon {
  position: relative;
  width: 22px;
  height: 22px;
  display: block;
  margin: 0;
  border: 0;
  background: none;
}

.beat-audio-toggle span::before,
.beat-volume-icon::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 2px 0 0 2px;
  background: currentColor;
  box-shadow: 6px -5px 0 -2px currentColor, 6px 5px 0 -2px currentColor;
}

.beat-audio-toggle span::after,
.beat-volume-icon::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 3px;
  width: 12px;
  height: 16px;
  border: 2px solid currentColor;
  border-left: 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 0 999px 999px 0;
  box-shadow: 4px 0 0 -2px currentColor;
}

.beat-audio-toggle.playing span::before {
  left: 5px;
  top: 4px;
  width: 4px;
  height: 14px;
  border-radius: 1px;
  background: currentColor;
  box-shadow: 8px 0 0 currentColor;
}

.beat-audio-toggle.playing span::after {
  content: none;
}

.beat-detail-player {
  grid-template-columns: 54px minmax(0, 1fr) !important;
  padding: 0.75rem !important;
  background:
    radial-gradient(circle at 8% 20%, rgba(34, 244, 255, 0.14), transparent 8rem),
    rgba(255, 255, 255, 0.055) !important;
  box-shadow: 0 0 24px rgba(34, 244, 255, 0.08);
}

.beat-player-main {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
}

.beat-player-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: white;
}

.beat-player-top strong {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.beat-player-top time {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.beat-progress,
.beat-volume {
  width: 100%;
  min-width: 0;
  accent-color: var(--cyan);
  cursor: pointer;
}

.beat-progress {
  height: 18px;
}

.beat-volume-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 0.5rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
}

.beat-volume-icon {
  width: 20px;
  height: 20px;
  color: var(--cyan);
}

.beat-volume {
  height: 16px;
  opacity: 0.86;
}

.beat-detail-player.playing {
  border-color: rgba(34, 244, 255, 0.36);
  box-shadow: 0 0 26px rgba(34, 244, 255, 0.14), 0 0 20px rgba(255, 47, 214, 0.1);
}

.beat-detail-player audio {
  display: none !important;
}


.beat-audio-toggle.playing span {
  width: 22px !important;
  height: 22px !important;
  margin: 0 !important;
  border: 0 !important;
  background: none !important;
}


/* v60: centered beat card audio and floating mini player */
.marketplace-card .beat-cover .beat-audio-toggle {
  top: 50% !important;
  right: 50% !important;
  width: 68px;
  height: 68px;
  min-height: 68px;
  color: #eaffff;
  border-color: rgba(34, 244, 255, 0.58);
  background: rgba(5, 15, 24, 0.7);
  box-shadow: 0 0 26px rgba(34, 244, 255, 0.28), inset 0 0 18px rgba(34, 244, 255, 0.08);
  transform: translate(50%, -50%);
}

.marketplace-card .beat-cover .beat-audio-toggle span,
.beat-mini-player .beat-volume-icon {
  color: var(--cyan);
}

.marketplace-card .beat-cover .beat-audio-toggle:hover {
  border-color: rgba(34, 244, 255, 0.82);
  box-shadow: 0 0 34px rgba(34, 244, 255, 0.36), 0 0 24px rgba(255, 47, 214, 0.12);
}

.marketplace-card .beat-cover .beat-audio-toggle.playing {
  background: rgba(34, 244, 255, 0.2);
}

.beat-detail-player .beat-audio-toggle {
  transform: none !important;
}

.beat-mini-player {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 70;
  min-width: min(420px, calc(100vw - 2rem));
  max-width: calc(100vw - 2rem);
  min-height: 58px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(34, 244, 255, 0.28);
  border-radius: 999px;
  background: rgba(8, 5, 18, 0.88);
  color: white;
  box-shadow: 0 0 34px rgba(34, 244, 255, 0.16), 0 18px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  cursor: default;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 1rem);
  transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.beat-mini-player.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.beat-mini-player.playing {
  border-color: rgba(34, 244, 255, 0.52);
}

.beat-mini-player strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
  text-align: left;
}

.beat-mini-player time {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}


/* v61: admin lists and beat controls polish */
.admin-row-card.admin-marketplace-row,
.cart-item.admin-row-card {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 1rem !important;
  align-items: center !important;
  min-height: 78px;
  padding: 0.85rem !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.admin-row-card > div:first-child,
.admin-row-card .admin-row-title {
  min-width: 0;
}

.admin-row-card .admin-row-actions {
  justify-content: flex-end;
}

.admin-row-card span {
  display: block;
  color: var(--muted);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.marketplace-card .beat-cover .beat-audio-toggle {
  top: auto !important;
  right: 0.75rem !important;
  bottom: 0.75rem !important;
  width: 54px !important;
  height: 54px !important;
  min-height: 54px !important;
  color: #eaffff;
  border-color: rgba(34, 244, 255, 0.58);
  background: rgba(5, 15, 24, 0.76);
  box-shadow: 0 0 24px rgba(34, 244, 255, 0.26), inset 0 0 14px rgba(34, 244, 255, 0.08);
  transform: none !important;
}

.marketplace-card .beat-cover .beat-audio-toggle span {
  width: 0 !important;
  height: 0 !important;
  margin-left: 3px !important;
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-left: 13px solid currentColor !important;
  background: none !important;
}

.marketplace-card .beat-cover .beat-audio-toggle span::before,
.marketplace-card .beat-cover .beat-audio-toggle span::after {
  content: none !important;
}

.marketplace-card .beat-cover .beat-audio-toggle.playing span {
  width: 15px !important;
  height: 15px !important;
  margin-left: 0 !important;
  border: 0 !important;
  border-radius: 3px !important;
  background: currentColor !important;
}

.marketplace-card .beat-cover .beat-audio-toggle.playing {
  border-color: rgba(255, 47, 214, 0.46);
  background: rgba(15, 6, 18, 0.82);
}

.beat-mini-player {
  grid-template-columns: 44px minmax(0, 1fr) !important;
  width: min(520px, calc(100vw - 2rem));
  min-height: 82px;
  border-radius: 16px !important;
  padding: 0.8rem 0.95rem !important;
}

.beat-mini-toggle.beat-audio-toggle {
  position: relative;
  inset: auto;
  width: 44px;
  height: 44px;
  min-height: 44px;
  transform: none !important;
  cursor: pointer;
}

.beat-mini-main {
  display: grid;
  gap: 0.42rem;
  min-width: 0;
}

.beat-mini-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.beat-mini-top strong {
  overflow: hidden;
  color: white;
  font-size: 0.86rem;
  font-weight: 1000;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.beat-mini-top time {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.beat-mini-player .beat-progress {
  height: 14px;
}

.beat-mini-volume {
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 0.4rem;
}

@media (max-width: 760px) {
  .admin-row-card.admin-marketplace-row,
  .cart-item.admin-row-card {
    grid-template-columns: 1fr !important;
  }

  .admin-row-card .admin-row-actions {
    justify-content: stretch;
  }

  .beat-mini-player {
    width: calc(100vw - 1rem);
    bottom: 0.5rem;
  }
}


/* v62: beats catalog mode */
.beats-hero .catalog-hero-content h1,
.marketplace-hero .catalog-hero-content h1 {
  color: white;
}

.beats-searchbar.marketplace-searchbar {
  grid-template-columns: minmax(0, 1fr) auto;
}

.beats-shell.marketplace-shell {
  grid-template-columns: minmax(190px, 0.22fr) minmax(0, 1fr);
  align-items: start;
}

.beats-sidebar.marketplace-sidebar {
  position: sticky;
  top: 96px;
}

.beats-list.marketplace-list {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1rem;
}

.beats-list .marketplace-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  min-height: 0;
  padding: 0.85rem;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 18% 4%, rgba(34, 244, 255, 0.14), transparent 9rem),
    linear-gradient(145deg, rgba(255, 47, 214, 0.08), transparent 48%),
    rgba(13, 7, 24, 0.86);
}

.beats-list .marketplace-cover,
.beats-list .marketplace-card-gallery,
.beats-list .marketplace-empty-media {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.beats-list .marketplace-info {
  padding: 0;
}

.beats-list .marketplace-info h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
}

.beats-list .marketplace-info p {
  display: -webkit-box;
  min-height: 2.9em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.beats-list .marketplace-trust {
  margin-top: 0.1rem;
}

.beat-card-side.marketplace-card-side {
  display: block;
  padding: 0;
  text-align: left;
}

.beat-card-side .marketplace-contact {
  width: 100%;
}

.marketplace-card .beat-cover .beat-audio-toggle {
  top: auto !important;
  right: 0.7rem !important;
  bottom: 0.7rem !important;
  width: auto !important;
  min-width: 78px !important;
  height: 34px !important;
  min-height: 34px !important;
  padding: 0 0.72rem !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 999px !important;
  border-color: rgba(34, 244, 255, 0.58) !important;
  background:
    linear-gradient(90deg, rgba(34, 244, 255, 0.18), rgba(139, 77, 255, 0.12)),
    rgba(5, 15, 24, 0.82) !important;
  color: #bdfbff !important;
  box-shadow: 0 0 22px rgba(34, 244, 255, 0.24), inset 0 0 14px rgba(34, 244, 255, 0.08) !important;
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  transform: none !important;
}

.marketplace-card .beat-cover .beat-audio-toggle::before {
  content: "START";
}

.marketplace-card .beat-cover .beat-audio-toggle.playing::before {
  content: "STOP";
}

.marketplace-card .beat-cover .beat-audio-toggle span,
.marketplace-card .beat-cover .beat-audio-toggle span::before,
.marketplace-card .beat-cover .beat-audio-toggle span::after,
.marketplace-card .beat-cover .beat-audio-toggle.playing span {
  display: none !important;
  content: none !important;
}

.marketplace-card .beat-cover .beat-audio-toggle.playing {
  border-color: rgba(34, 244, 255, 0.78) !important;
  background:
    linear-gradient(90deg, rgba(34, 244, 255, 0.24), rgba(255, 47, 214, 0.14)),
    rgba(6, 18, 28, 0.88) !important;
}

.marketplace-detail-meta {
  display: none;
}

@media (max-width: 900px) {
  .beats-shell.marketplace-shell {
    grid-template-columns: 1fr;
  }

  .beats-sidebar.marketplace-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .beats-searchbar.marketplace-searchbar {
    grid-template-columns: 1fr;
  }
}

/* v80: restored hero video and client report widgets */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05) brightness(0.5);
}

.hero > *:not(.hero-video-bg) {
  position: relative;
}

.account-report-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 0.65rem;
  align-items: end;
  margin: 1rem 0 1.2rem;
}

.account-report-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 900;
}

.account-report-form input {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(9, 7, 14, 0.82);
  color: white;
  padding: 0 0.85rem;
  font: inherit;
  font-weight: 900;
}

.account-report-list {
  display: grid;
  gap: 0.75rem;
}

.account-report-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.account-report-card strong {
  color: white;
}

.account-report-card span,
.account-report-card small {
  color: var(--muted);
}

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

/* v81: client cabinet orders */
.client-account-page {
  display: grid;
  gap: 1rem;
}

.client-account-hero {
  background:
    linear-gradient(135deg, rgba(255, 47, 214, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(34, 244, 255, 0.12), transparent 52%),
    rgba(18, 8, 30, 0.82);
}

.account-order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.85rem;
}

.account-order-card {
  display: grid;
  gap: 0.9rem;
  min-height: 260px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(34, 244, 255, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.account-order-top,
.account-order-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.account-order-top h3 {
  margin: 0;
  color: white;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}

.account-order-top > span,
.account-order-bottom span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(34, 244, 255, 0.24);
  border-radius: 999px;
  background: rgba(34, 244, 255, 0.08);
  color: var(--cyan);
  padding: 0.35rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 950;
}

.account-order-items {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-order-items li {
  display: grid;
  gap: 0.2rem;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 2, 7, 0.34);
}

.account-order-items strong {
  color: white;
}

.account-order-items span,
.account-order-items small {
  color: var(--muted);
}

.account-report-form {
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.booking-status a {
  color: var(--cyan);
  font-weight: 1000;
}

/* v82: catalog polish */
.catalog-video-hero .catalog-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04) brightness(0.42);
}

.catalog-video-hero .catalog-hero-content {
  z-index: 2;
}

.catalog-hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.4rem) !important;
  line-height: 0.9 !important;
}

.catalog-hero .hero-copy {
  max-width: 720px;
  font-size: clamp(1rem, 1.6vw, 1.22rem) !important;
  line-height: 1.55 !important;
}

.catalog-switch {
  position: relative !important;
  top: auto !important;
}

.package-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  align-items: stretch;
}

.package-card {
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 320px;
}

.package-card p {
  font-size: 0.95rem;
}

.package-card-bottom,
.package-card-bottom.has-cart-shortcut {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 0.75rem;
  align-items: end;
}

.package-card-bottom:not(.has-cart-shortcut) {
  grid-template-columns: 1fr;
}

.package-card-actions {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(112px, 0.8fr) minmax(136px, 1fr);
  gap: 0.65rem;
  align-items: center;
}

.package-price {
  min-height: 48px;
  display: grid;
  place-items: center start;
  border: 1px solid rgba(122, 220, 232, 0.2);
  border-radius: 8px;
  background: rgba(27, 29, 34, 0.5);
  color: #fff !important;
  padding: 0.55rem 0.7rem;
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
  line-height: 1;
}

.package-add {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.package-add span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-mini-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.cart-mini-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 2px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 4px 4px 6px 6px;
}

.cart-mini-icon::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 6px;
  height: 7px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.blogger-card h3 {
  text-overflow: clip !important;
}

@media (max-width: 620px) {
  .package-card-actions {
    grid-template-columns: 1fr;
  }
}
.package-card-bottom > .package-account-preview {
  grid-column: 1 / -1;
}

.package-card-bottom.has-cart-shortcut > .package-card-actions {
  grid-column: 1;
}

.package-card-bottom.has-cart-shortcut > .card-cart-shortcut {
  grid-column: 2;
  align-self: center;
  justify-self: end;
}

.package-card-bottom.has-cart-shortcut > .package-account-preview + .package-card-actions + .card-cart-shortcut {
  grid-row: 2;
}
.package-add .cart-mini-icon,
.package-add span:last-child {
  position: relative;
  z-index: 1;
}

/* v83: final catalog/package/video polish */
.catalog-hero h1 {
  font-size: clamp(4rem, 13vw, 11rem) !important;
  line-height: 0.82 !important;
}

.catalog-hero .hero-copy {
  max-width: 720px;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem) !important;
  line-height: 1.55 !important;
}

.flow-video-shade {
  display: none !important;
}

.package-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  grid-auto-rows: 1fr;
}

.package-card {
  height: 100%;
  min-height: 300px;
  grid-template-rows: auto auto minmax(4.7rem, 4.7rem) auto;
  align-content: start;
}

.package-card p {
  max-height: 4.7rem;
  overflow-y: auto;
  padding-right: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(34, 244, 255, 0.78) rgba(255, 255, 255, 0.08);
}

.package-card p::-webkit-scrollbar {
  width: 6px;
}

.package-card p::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.package-card p::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(34, 244, 255, 0.95), rgba(139, 77, 255, 0.82));
  box-shadow: 0 0 12px rgba(34, 244, 255, 0.38);
}

.package-card-bottom,
.package-card-bottom.has-cart-shortcut {
  margin-top: 0.25rem;
  align-self: end;
}

.package-card-actions {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
}

.package-price,
.package-add {
  min-height: 52px !important;
  height: 52px;
  width: 100%;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  font-size: clamp(1rem, 1.8vw, 1.18rem) !important;
  font-weight: 1000 !important;
  letter-spacing: 0 !important;
}

.package-price {
  border-color: rgba(255, 47, 214, 0.64) !important;
  background:
    linear-gradient(135deg, rgba(255, 47, 214, 0.34), rgba(139, 77, 255, 0.28)),
    rgba(255, 255, 255, 0.06) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 0 18px rgba(255, 47, 214, 0.16);
}

.package-add {
  padding: 0 0.7rem !important;
}

.blogger-title-row {
  display: grid !important;
  grid-template-columns: 52px minmax(0, 1fr);
}

.blogger-card h3 {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: clip !important;
  font-size: clamp(0.72rem, 5.6vw, 1.38rem);
}

@media (max-width: 620px) {
  .package-card-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }
}

/* v84: new videos, marketplace title, compact packages, mobile catalog */
.marketplace-title {
  color: var(--cyan) !important;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  text-shadow:
    0 0 18px rgba(34, 244, 255, 0.9),
    0 0 48px rgba(34, 244, 255, 0.48),
    0 0 82px rgba(139, 77, 255, 0.32) !important;
}

.beats-video-hero .catalog-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04) brightness(0.44);
}

.beats-video-hero .catalog-hero-content {
  z-index: 2;
}

.format-points {
  display: grid;
  gap: 0.45rem;
  font-size: clamp(0.9rem, 1.35vw, 1.02rem) !important;
  line-height: 1.42 !important;
}

.format-points span {
  display: block;
}

.package-card {
  min-height: 0 !important;
  height: auto !important;
  grid-template-rows: auto auto minmax(3.9rem, 4.7rem) auto !important;
  gap: 0.65rem !important;
}

.package-card-bottom,
.package-card-bottom.has-cart-shortcut {
  align-self: start !important;
  margin-top: 0 !important;
}

.package-price {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  color: #fff !important;
  text-align: center !important;
  justify-content: center !important;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.3),
    0 0 18px rgba(255, 47, 214, 0.36) !important;
}

.package-card-actions {
  grid-template-columns: minmax(70px, 0.7fr) minmax(130px, 1fr) !important;
  border: 1px solid rgba(255, 47, 214, 0.48);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 47, 214, 0.16), rgba(139, 77, 255, 0.12));
  padding: 0.45rem;
}

.package-add {
  min-height: 44px !important;
  height: 44px !important;
}

.account-track-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.25rem 0 1rem;
}

.account-track-filter .ghost-btn {
  min-width: 0;
  min-height: 38px;
}

.account-track-filter .active-track {
  border-color: rgba(34, 244, 255, 0.55);
  color: #fff;
  background: rgba(34, 244, 255, 0.16);
}

.account-track-name {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 0.45rem;
  border: 1px solid rgba(34, 244, 255, 0.26);
  border-radius: 999px;
  background: rgba(34, 244, 255, 0.08);
  color: var(--cyan);
  padding: 0.25rem 0.55rem;
  font-weight: 900;
}

@media (max-width: 760px) {
  .blogger-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.65rem !important;
  }

  .blogger-card {
    min-width: 0;
  }

  .blogger-media {
    min-height: 180px;
  }

  .metric-row,
  .price-badges {
    grid-template-columns: 1fr !important;
  }

  .blogger-info {
    padding: 0.65rem !important;
    gap: 0.55rem !important;
  }

  .blogger-title-row {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 0.45rem !important;
  }

  .blogger-avatar {
    width: 38px !important;
    height: 38px !important;
    flex-basis: 38px !important;
  }
}

/* v85: clean package cards and reliable catalog title fit */
.marketplace-title {
  display: grid !important;
  gap: 0.02em !important;
  width: min-content !important;
  line-height: 0.78 !important;
}

.marketplace-title span {
  display: block;
}

.package-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  align-items: stretch !important;
}

.package-card {
  min-height: 276px !important;
  height: 100% !important;
  display: grid !important;
  grid-template-rows: auto auto minmax(4.25rem, 4.25rem) auto !important;
  gap: 0.72rem !important;
  align-content: start !important;
}

.package-card > span,
.package-card h3,
.package-card p,
.package-card-bottom {
  min-width: 0 !important;
}

.package-card p {
  max-height: 4.25rem !important;
  overflow-y: auto !important;
  margin: 0 !important;
  padding-right: 0.45rem !important;
}

.package-card-bottom,
.package-card-bottom.has-cart-shortcut {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 46px !important;
  grid-template-areas:
    "preview preview"
    "actions shortcut" !important;
  gap: 0.72rem !important;
  align-items: center !important;
  align-self: end !important;
  margin-top: 0 !important;
}

.package-card-bottom:not(.has-cart-shortcut) {
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-areas:
    "preview"
    "actions" !important;
}

.package-card-bottom > .package-account-preview {
  grid-area: preview !important;
  min-height: 42px !important;
}

.package-card-actions {
  grid-area: actions !important;
  display: grid !important;
  grid-template-columns: minmax(72px, 0.66fr) minmax(132px, 1fr) !important;
  gap: 0.72rem !important;
  align-items: center !important;
  min-width: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.package-price {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100% !important;
  min-height: 44px !important;
  height: 44px !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  color: #fff !important;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem) !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.package-add {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.45rem !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 44px !important;
  height: 44px !important;
  padding: 0 0.72rem !important;
  white-space: nowrap !important;
}

.package-add::before,
.package-add::after {
  display: none !important;
  content: none !important;
}

.package-add .cart-mini-icon {
  order: 0 !important;
  flex: 0 0 18px !important;
}

.package-add span:last-child {
  order: 1 !important;
  display: inline-block !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.package-card-bottom > .card-cart-shortcut {
  grid-area: shortcut !important;
  align-self: center !important;
  justify-self: end !important;
}

.blogger-title-row {
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: 52px minmax(0, 1fr) !important;
  overflow: hidden !important;
}

.blogger-card h3 {
  display: block !important;
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: clip !important;
  transform-origin: left center !important;
}

@media (max-width: 760px) {
  .package-card-actions {
    grid-template-columns: minmax(58px, 0.58fr) minmax(104px, 1fr) !important;
    gap: 0.5rem !important;
  }

  .package-price,
  .package-add {
    min-height: 40px !important;
    height: 40px !important;
    font-size: 0.88rem !important;
  }
}

/* v86: hard-stop catalog titles and stable package button labels */
.blogger-title-row {
  min-width: 0 !important;
  max-width: 100% !important;
  display: grid !important;
  grid-template-columns: 52px minmax(0, 1fr) !important;
  align-items: center !important;
  column-gap: 0.62rem !important;
  overflow: hidden !important;
  contain: layout paint !important;
}

.blogger-card h3 {
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  display: block !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: clip !important;
  transform-origin: left center !important;
  line-height: 1.05 !important;
  contain: paint !important;
}

.package-add {
  display: grid !important;
  grid-template-columns: 18px minmax(74px, 74px) !important;
  align-items: center !important;
  justify-content: center !important;
  justify-items: start !important;
  column-gap: 0.48rem !important;
  width: 100% !important;
  min-width: 0 !important;
  white-space: nowrap !important;
  text-align: left !important;
}

.package-add .cart-mini-icon {
  grid-column: 1 !important;
  justify-self: center !important;
  order: initial !important;
  flex: none !important;
  width: 18px !important;
  height: 18px !important;
}

.package-add span:last-child {
  grid-column: 2 !important;
  justify-self: start !important;
  order: initial !important;
  min-width: 74px !important;
  width: 74px !important;
  max-width: 74px !important;
  display: block !important;
  overflow: visible !important;
  text-overflow: clip !important;
  text-align: left !important;
}

@media (max-width: 760px) {
  .blogger-title-row {
    grid-template-columns: 46px minmax(0, 1fr) !important;
    column-gap: 0.5rem !important;
  }

  .package-add {
    grid-template-columns: 17px minmax(66px, 66px) !important;
    column-gap: 0.38rem !important;
    padding-left: 0.45rem !important;
    padding-right: 0.45rem !important;
  }

  .package-add span:last-child {
    min-width: 66px !important;
    width: 66px !important;
    max-width: 66px !important;
  }
}

/* v87: fixed package button internals and extra title safety gap */
.blogger-card h3 {
  padding-right: 0.24rem !important;
  box-sizing: border-box !important;
}

.package-add {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 0.7rem 0 2.55rem !important;
  text-align: left !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

.package-add .cart-mini-icon {
  position: absolute !important;
  left: 1rem !important;
  top: 50% !important;
  width: 18px !important;
  height: 18px !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
  order: initial !important;
  flex: none !important;
}

.package-add .package-add-label,
.package-add span:last-child {
  position: static !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  overflow: visible !important;
  text-overflow: clip !important;
  text-align: left !important;
  line-height: 44px !important;
  transform: none !important;
}

@media (max-width: 760px) {
  .package-add {
    height: 40px !important;
    min-height: 40px !important;
    padding-left: 2.25rem !important;
    padding-right: 0.45rem !important;
  }

  .package-add .cart-mini-icon {
    left: 0.82rem !important;
    width: 17px !important;
    height: 17px !important;
  }

  .package-add .package-add-label,
  .package-add span:last-child {
    line-height: 40px !important;
  }
}

/* v88: packages use only one cart icon, inside the button */
.package-card-bottom.has-cart-shortcut {
  grid-template-columns: 1fr !important;
}

.package-card-bottom > .card-cart-shortcut,
.package-card .card-cart-shortcut {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.package-card-bottom {
  grid-template-areas:
    "preview"
    "actions" !important;
}

.package-card-actions {
  grid-area: actions !important;
}

.package-add {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 0 0.9rem !important;
  text-align: center !important;
}

.package-add .cart-mini-icon {
  position: static !important;
  flex: 0 0 18px !important;
  width: 18px !important;
  height: 18px !important;
  transform: none !important;
  margin: 0 !important;
}

.package-add .package-add-label,
.package-add span:last-child {
  flex: 0 0 76px !important;
  width: 76px !important;
  min-width: 76px !important;
  max-width: 76px !important;
  display: block !important;
  text-align: left !important;
  line-height: 1 !important;
}

@media (max-width: 760px) {
  .package-add {
    gap: 0.38rem !important;
    padding: 0 0.5rem !important;
  }

  .package-add .package-add-label,
  .package-add span:last-child {
    flex-basis: 68px !important;
    width: 68px !important;
    min-width: 68px !important;
    max-width: 68px !important;
  }
}

/* v89: package cards never render legacy cart shortcut or pseudo icons */
.package-card-bottom.has-cart-shortcut {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-areas:
    "preview"
    "actions" !important;
}

.package-card-bottom .card-cart-shortcut,
.package-card-bottom.has-cart-shortcut .card-cart-shortcut {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.package-add::before,
.package-add::after {
  display: none !important;
  content: none !important;
}

.package-add .cart-mini-icon::before,
.package-add .cart-mini-icon::after {
  box-sizing: border-box !important;
}

/* v90: clean package CTA and dedicated cart opener */
.package-card-actions {
  grid-template-columns: minmax(88px, 0.75fr) minmax(128px, 1fr) !important;
  align-items: center !important;
}

.package-card-actions.has-package-cart {
  grid-template-columns: minmax(78px, 0.72fr) minmax(118px, 1fr) 44px !important;
}

.package-add {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 0.8rem !important;
  gap: 0 !important;
  text-align: center !important;
}

.package-add .cart-mini-icon,
.package-add .cart-mini-icon::before,
.package-add .cart-mini-icon::after {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  opacity: 0 !important;
}

.package-add .package-add-label,
.package-add span:last-child {
  flex: 0 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  display: block !important;
  text-align: center !important;
  line-height: 1 !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.package-cart-open {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid rgba(34, 244, 255, 0.5) !important;
  border-radius: 999px !important;
  background: rgba(34, 244, 255, 0.13) !important;
  color: #fff !important;
  box-shadow: 0 0 18px rgba(34, 244, 255, 0.22) !important;
  cursor: pointer !important;
}

.package-cart-open[hidden] {
  display: none !important;
}

.package-cart-open .card-cart-icon {
  width: 22px !important;
  height: 22px !important;
}

@media (max-width: 760px) {
  .package-card-actions.has-package-cart {
    grid-template-columns: minmax(58px, 0.66fr) minmax(94px, 1fr) 40px !important;
    gap: 0.45rem !important;
  }

  .package-cart-open {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
  }
}

/* v91: account/order polish, modal scroll lock, beat cart */
html.modal-scroll-lock,
body.modal-scroll-lock {
  overflow: hidden !important;
  overscroll-behavior: none !important;
}

.product-dialog,
.cart-dialog,
.confirm-dialog {
  overscroll-behavior: contain !important;
}

.catalog-pink-title {
  color: #fff !important;
  text-shadow: 0 0 18px rgba(255, 47, 214, 0.82), 0 0 48px rgba(255, 47, 214, 0.48) !important;
}

.catalog-pink-title span {
  display: inline !important;
}

.beat-card-side {
  display: grid !important;
  gap: 0.55rem !important;
}

.beat-add-to-cart.added {
  border-color: rgba(34, 244, 255, 0.42) !important;
  background: rgba(34, 244, 255, 0.16) !important;
}

.account-order-subitems {
  display: grid;
  gap: 0.45rem;
  margin: 0.55rem 0 0;
  padding: 0;
  list-style: none;
}

.account-order-child {
  min-height: 0 !important;
  padding: 0.55rem !important;
  background: rgba(34, 244, 255, 0.06) !important;
}

.account-order-items a {
  color: var(--cyan);
  font-weight: 900;
}

@media (max-width: 640px) {
  .lead-form .check-field,
  .cart-form .check-field,
  .check-field {
    grid-template-columns: 18px minmax(0, 1fr) !important;
    align-items: start !important;
    column-gap: 0.55rem !important;
  }

  .check-field input[type="checkbox"],
  .check-field input {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    margin: 0.12rem 0 0 !important;
    justify-self: start !important;
  }

  .check-field span {
    min-width: 0 !important;
  }
}

/* v92: separate account sections */
.account-section-tabs {
  margin: 0 auto;
  width: min(1180px, calc(100% - 2rem));
  justify-content: flex-start !important;
}

/* v95: compact order positions */
.account-order-positions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.account-order-position {
  min-width: min(260px, 100%);
  flex: 1 1 260px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  overflow: visible;
}

.account-order-position summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px auto auto;
  gap: 0.45rem;
  align-items: center;
  padding: 0.72rem;
  cursor: pointer;
  list-style: none;
}

.account-order-position summary::-webkit-details-marker {
  display: none;
}

.order-position-title {
  min-width: 0;
  color: #fff;
  font-weight: 1000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-order-position summary small {
  justify-self: end;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.order-position-status {
  justify-self: end;
  padding: 0.25rem 0.48rem;
  border: 1px solid rgba(34, 244, 255, 0.32);
  border-radius: 999px;
  background: rgba(34, 244, 255, 0.1);
  color: #eaffff;
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.order-info-dot {
  position: relative;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(255, 47, 214, 0.48);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 1000;
}

.order-info-dot:hover::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.5rem);
  z-index: 20;
  width: max-content;
  max-width: min(320px, 72vw);
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(34, 244, 255, 0.36);
  border-radius: 8px;
  background: rgba(10, 3, 18, 0.96);
  color: #fff;
  box-shadow: 0 0 24px rgba(34, 244, 255, 0.18);
  transform: translateX(-50%);
}

.account-order-links {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0 0.72rem 0.72rem;
  list-style: none;
}

.account-order-links li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.35rem 0.65rem;
  align-items: center;
  padding: 0.56rem;
  border-radius: 8px;
  background: rgba(34, 244, 255, 0.055);
}

.account-order-links li a,
.account-order-links li small {
  grid-column: 1 / -1;
}

.account-order-links a {
  color: var(--cyan);
  font-weight: 1000;
}

@media (max-width: 640px) {
  .account-order-position {
    flex-basis: 100%;
  }

  .account-order-position summary {
    grid-template-columns: minmax(0, 1fr) 22px;
  }

  .account-order-position summary small {
  justify-self: end;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.order-position-status {
    grid-column: 1 / -1;
    justify-self: start;
  }
}


/* v97: admin orders and promo codes */
.promo-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: end;
}

.promo-row input {
  min-width: 0;
}

.promo-status {
  margin: -0.35rem 0 0;
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 800;
}

.cart-total {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.7rem;
  min-height: 1.8rem;
  font-weight: 1000;
}

.cart-old-price,
.order-discount-price del {
  color: rgba(255, 255, 255, 0.55);
  text-decoration-color: #ff2f74;
  text-decoration-thickness: 2px;
}

.cart-new-price,
.order-discount-price strong {
  color: #ff3d64;
  text-shadow: 0 0 18px rgba(255, 61, 100, 0.35);
}

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

.video-choice-actions .video-choice-cancel {
  grid-column: 1 / -1;
}

.admin-order-card > div {
  width: 100%;
}

.admin-order-items {
  display: grid;
  gap: 0.55rem;
  margin: 0.9rem 0;
}

.admin-order-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-order-item span,
.admin-discount-line {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.admin-order-add-form {
  display: grid;
  grid-template-columns: 150px minmax(180px, 1fr) 120px 90px auto;
  gap: 0.6rem;
  align-items: end;
}

.admin-order-add-form label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.78rem;
}

.order-discount-price {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.order-discount-price i {
  position: relative;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(34, 244, 255, 0.45);
  border-radius: 999px;
  color: var(--cyan);
  font-style: normal;
  font-size: 0.7rem;
}

.order-discount-price i:hover::after {
  content: attr(data-tip);
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.5rem);
  z-index: 20;
  width: max-content;
  max-width: min(280px, 72vw);
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(34, 244, 255, 0.36);
  border-radius: 8px;
  background: rgba(10, 3, 18, 0.96);
  color: #fff;
}

@media (max-width: 760px) {
  .promo-row,
  .admin-order-add-form {
    grid-template-columns: 1fr;
  }
}

/* v98: totals and existing catalog picker */
.order-total-price strong {
  color: #fff;
  font-weight: 1000;
  text-shadow: 0 0 16px rgba(34, 244, 255, 0.18);
}

.admin-order-add-form {
  grid-template-columns: minmax(260px, 1.8fr) 150px minmax(170px, 1fr) 120px 100px auto;
}

.admin-order-add-form .admin-order-existing {
  min-width: 260px;
}

.admin-order-add-form select,
.admin-order-add-form input {
  min-width: 0;
}

@media (max-width: 1100px) {
  .admin-order-add-form {
    grid-template-columns: 1fr 1fr;
  }

  .admin-order-add-form .admin-order-existing,
  .admin-order-add-form button {
    grid-column: 1 / -1;
  }
}

/* v100: catalog IDs, account status tabs, admin search */
.catalog-search-row {
  width: min(1180px, calc(100% - 2rem));
  margin: 1rem auto 0;
}

.catalog-search-row input,
.admin-search-form input,
.account-promo-form input,
.admin-order-search input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(34, 244, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  padding: 0 0.9rem;
  font: inherit;
  font-weight: 800;
}

.catalog-card-code {
  display: inline-grid;
  place-items: center;
  min-width: 68px;
  min-height: 28px;
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(34, 244, 255, 0.4);
  border-radius: 8px;
  background: rgba(34, 244, 255, 0.1);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 1000;
  text-shadow: 0 0 16px rgba(34, 244, 255, 0.32);
}

.account-code {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 3;
}

.package-code {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
}

.inline-code {
  min-width: auto;
  min-height: 0;
  margin-right: 0.35rem;
}

.admin-search-form,
.account-promo-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
  margin: 1rem 0;
}

.account-status-filter {
  margin-bottom: 1rem;
}

.account-promo-form {
  margin: 0.85rem 0 0;
}

.admin-order-add-form-clean {
  grid-template-columns: minmax(180px, 0.7fr) minmax(280px, 1.4fr) 110px auto;
}

.admin-order-add-form-clean .admin-order-existing {
  min-width: 280px;
}

@media (max-width: 760px) {
  .admin-search-form,
  .account-promo-form,
  .admin-order-add-form-clean {
    grid-template-columns: 1fr;
  }
}

/* v101: precise catalog/admin search and package links */
.catalog-search-row {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(34, 244, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(34, 244, 255, 0.08), rgba(255, 47, 214, 0.08));
  box-shadow: 0 0 32px rgba(34, 244, 255, 0.08);
}

.catalog-search-head h2 {
  margin: 0.15rem 0 0;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 1;
}

.catalog-search-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.catalog-search-modes {
  display: inline-grid;
  grid-template-columns: repeat(3, auto);
  gap: 0.35rem;
  padding: 0.3rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(0,0,0,0.24);
}

.catalog-search-modes button {
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  padding: 0 0.75rem;
  background: transparent;
  color: rgba(255,255,255,0.68);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.catalog-search-modes button.active {
  background: rgba(34, 244, 255, 0.16);
  color: var(--cyan);
  box-shadow: inset 0 0 0 1px rgba(34, 244, 255, 0.36);
}

.admin-search-form {
  grid-template-columns: minmax(0, 1fr) 150px auto;
}

.admin-search-form select {
  min-height: 46px;
  border: 1px solid rgba(34, 244, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  padding: 0 0.7rem;
  font: inherit;
  font-weight: 900;
}

.product-package-links {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.product-package-links strong {
  color: #fff;
  font-size: 0.9rem;
}

.product-package-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-package-links button {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  border: 1px solid rgba(34, 244, 255, 0.28);
  border-radius: 8px;
  background: rgba(34, 244, 255, 0.08);
  color: #fff;
  padding: 0.48rem 0.58rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.product-package-links button span {
  color: var(--cyan);
}

.package-focus-card {
  box-shadow: 0 0 0 2px rgba(34, 244, 255, 0.65), 0 0 38px rgba(34, 244, 255, 0.22) !important;
}

@media (max-width: 720px) {
  .catalog-search-controls,
  .admin-search-form {
    grid-template-columns: 1fr;
  }

  .catalog-search-modes {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* v102: search polish */
body.catalog-search-active .package-account-link {
  pointer-events: none;
}

body.catalog-search-active .package-avatar-hint-target::after,
body.catalog-search-active .package-avatar-hint-target::before {
  display: none !important;
}

.admin-order-add-form-clean .admin-order-existing select {
  min-height: 46px;
  border: 1px solid rgba(34, 244, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  padding: 0 0.75rem;
  font: inherit;
  font-weight: 900;
}

/* v103: reliable package search and dark admin catalog picker */
.package-card.catalog-page-hidden,
.blogger-card.catalog-page-hidden {
  display: none !important;
}

.admin-order-add-form-clean {
  grid-template-columns: minmax(320px, 1fr) 120px auto;
  align-items: end;
}

.admin-catalog-picker {
  position: relative;
  min-width: 0;
}

.admin-catalog-picker-toggle {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(34, 244, 255, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(34, 244, 255, 0.1), rgba(255, 47, 214, 0.08));
  color: #fff;
  padding: 0 2.35rem 0 0.9rem;
  font: inherit;
  font-weight: 950;
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 20px rgba(34, 244, 255, 0.08);
}

.admin-catalog-picker-toggle::after {
  content: "";
  position: absolute;
  right: 0.95rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.18s ease;
}

.admin-catalog-picker.open .admin-catalog-picker-toggle::after {
  transform: translateY(-35%) rotate(225deg);
}

.admin-catalog-picker.invalid .admin-catalog-picker-toggle {
  border-color: rgba(255, 47, 214, 0.85);
  box-shadow: 0 0 0 2px rgba(255, 47, 214, 0.18), 0 0 24px rgba(255, 47, 214, 0.18);
}

.admin-catalog-picker-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 0.45rem);
  z-index: 80;
  display: none;
  gap: 0.55rem;
  padding: 0.65rem;
  border: 1px solid rgba(34, 244, 255, 0.28);
  border-radius: 8px;
  background: rgba(17, 9, 28, 0.98);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 244, 255, 0.12);
}

.admin-catalog-picker.open .admin-catalog-picker-panel {
  display: grid;
}

.admin-catalog-picker-search {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(34, 244, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  padding: 0 0.85rem;
  font: inherit;
  font-weight: 850;
}

.admin-catalog-picker-options {
  display: grid;
  gap: 0.35rem;
  max-height: 260px;
  overflow-y: auto;
  padding-right: 0.2rem;
  scrollbar-color: var(--cyan) rgba(255,255,255,0.08);
}

.admin-catalog-picker-options::-webkit-scrollbar {
  width: 6px;
}

.admin-catalog-picker-options::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.admin-catalog-picker-options::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--pink));
}

.admin-catalog-picker-option {
  display: grid;
  gap: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  padding: 0.65rem 0.75rem;
  text-align: left;
  cursor: pointer;
}

.admin-catalog-picker-option span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0;
}

.admin-catalog-picker-option strong {
  font-size: 0.95rem;
  line-height: 1.15;
}

.admin-catalog-picker-option:hover,
.admin-catalog-picker-option.selected {
  border-color: rgba(34, 244, 255, 0.5);
  background: rgba(34, 244, 255, 0.13);
}

.admin-catalog-picker.is-empty .admin-catalog-picker-options::after {
  content: "Ничего не найдено";
  display: block;
  padding: 0.8rem;
  border: 1px dashed rgba(34, 244, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
}

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

  .admin-catalog-picker-panel {
    bottom: auto;
    top: calc(100% + 0.45rem);
  }
}

/* v104: admin picker filtering fix and branded support button */
.admin-catalog-picker-option[hidden] {
  display: none !important;
}

.support-chat-toggle {
  width: 76px !important;
  height: 76px !important;
  display: grid !important;
  place-items: center !important;
  align-content: center !important;
  gap: 0.05rem !important;
  border-radius: 18px !important;
  font-family: inherit !important;
  line-height: 1 !important;
  text-align: center !important;
}

.support-chat-toggle strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 1000;
  text-shadow: 0 0 14px rgba(34, 244, 255, 0.45);
}

.support-chat-toggle span {
  display: block;
  color: var(--cyan);
  font-size: 0.58rem;
  font-weight: 1000;
  letter-spacing: 0;
}

.support-chat-hint {
  position: absolute;
  right: calc(100% + 0.8rem);
  bottom: 0.55rem;
  width: min(250px, calc(100vw - 7rem));
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(34, 244, 255, 0.3);
  border-radius: 8px;
  background: rgba(17, 9, 28, 0.94);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.25;
  box-shadow: 0 14px 34px rgba(0,0,0,0.38), 0 0 24px rgba(34, 244, 255, 0.14);
  animation: support-hint-in 0.22s ease both;
  pointer-events: none;
}

.support-chat-hint::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 18px;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(34, 244, 255, 0.3);
  border-right: 1px solid rgba(34, 244, 255, 0.3);
  background: rgba(17, 9, 28, 0.94);
  transform: rotate(45deg);
}

.support-chat-hint.is-hiding {
  animation: support-hint-out 0.24s ease both;
}

@keyframes support-hint-in {
  from { opacity: 0; transform: translateX(8px) translateY(4px); }
  to { opacity: 1; transform: translateX(0) translateY(0); }
}

@keyframes support-hint-out {
  from { opacity: 1; transform: translateX(0) translateY(0); }
  to { opacity: 0; transform: translateX(8px) translateY(4px); }
}

@media (max-width: 640px) {
  .support-chat-toggle {
    width: 68px !important;
    height: 68px !important;
    border-radius: 16px !important;
  }

  .support-chat-toggle strong {
    font-size: 0.98rem;
  }

  .support-chat-toggle span {
    font-size: 0.52rem;
  }

  .support-chat-hint {
    right: 0;
    bottom: calc(100% + 0.7rem);
    width: min(260px, calc(100vw - 2rem));
  }

  .support-chat-hint::after {
    right: 28px;
    bottom: -7px;
    transform: rotate(135deg);
  }
}

/* v105: darker calm support widget */
.support-chat {
  padding: 0.42rem;
  border: 1px solid rgba(91, 22, 53, 0.72);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(47, 7, 28, 0.92), rgba(17, 6, 22, 0.96));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 47, 214, 0.08);
}

.support-chat-toggle {
  border-color: rgba(34, 244, 255, 0.28) !important;
  background: linear-gradient(145deg, rgba(28, 8, 24, 0.98), rgba(63, 14, 42, 0.96)) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.045), 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 18px rgba(34, 244, 255, 0.12) !important;
  animation: none !important;
}

.support-chat-toggle:hover {
  border-color: rgba(34, 244, 255, 0.42) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.055), 0 14px 34px rgba(0,0,0,0.46), 0 0 22px rgba(34, 244, 255, 0.16) !important;
}

.support-chat-toggle strong {
  text-shadow: 0 0 10px rgba(34, 244, 255, 0.24) !important;
}

.support-chat-toggle span {
  color: rgba(34, 244, 255, 0.82) !important;
}

.support-chat-panel {
  right: -0.42rem;
  bottom: 88px;
}

.support-chat-form button {
  border: 1px solid rgba(34, 244, 255, 0.24) !important;
  background: linear-gradient(135deg, rgba(59, 14, 43, 0.96), rgba(22, 12, 32, 0.98)) !important;
  color: #fff !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 0 18px rgba(34, 244, 255, 0.08) !important;
}

.support-chat-form button:hover {
  border-color: rgba(34, 244, 255, 0.38) !important;
  background: linear-gradient(135deg, rgba(72, 18, 52, 0.98), rgba(25, 13, 36, 0.98)) !important;
}

.support-chat-form input[hidden] {
  display: none !important;
}

.support-chat-form.support-authenticated {
  gap: 0.65rem;
}

@media (max-width: 640px) {
  .support-chat {
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .support-chat-panel {
    right: -0.42rem;
    bottom: 80px;
  }
}

/* v106: priority support badge and clean package modal links */
.support-chat.priority-support .support-chat-toggle::before {
  content: "!";
  position: absolute;
  top: -0.46rem;
  right: -0.42rem;
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 47, 214, 0.52);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(88, 12, 44, 0.98), rgba(20, 9, 24, 0.98));
  color: #fff;
  font-size: 1rem;
  font-weight: 1000;
  box-shadow: 0 0 18px rgba(255, 47, 214, 0.2), 0 0 16px rgba(34, 244, 255, 0.1);
}

.support-chat.priority-support .support-chat-toggle {
  border-color: rgba(255, 47, 214, 0.42) !important;
}

.product-package-links button {
  justify-content: center;
}

/* v107: subtle support frame pulse */
.support-chat {
  animation: support-frame-pulse 2.8s ease-in-out infinite;
}

@keyframes support-frame-pulse {
  0%, 100% {
    border-color: rgba(91, 22, 53, 0.62);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 47, 214, 0.07), 0 0 14px rgba(91, 22, 53, 0.12);
  }
  50% {
    border-color: rgba(118, 31, 68, 0.88);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 47, 214, 0.13), 0 0 22px rgba(118, 31, 68, 0.2);
  }
}

/* v108: admin order cancel action */
.admin-order-cancel-form {
  margin-top: 0.7rem;
  display: flex;
  justify-content: flex-end;
}

.danger-btn {
  border-color: rgba(255, 82, 128, 0.45) !important;
  color: #fff !important;
  background: rgba(120, 18, 54, 0.28) !important;
}

.danger-btn:hover {
  border-color: rgba(255, 82, 128, 0.72) !important;
  background: rgba(150, 22, 66, 0.38) !important;
}

/* v109: cancelled order recovery/delete controls */
.admin-order-danger-actions {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.restore-btn {
  border-color: rgba(34, 244, 255, 0.38) !important;
  color: #fff !important;
  background: rgba(34, 244, 255, 0.1) !important;
}

.restore-btn:hover {
  border-color: rgba(34, 244, 255, 0.62) !important;
  background: rgba(34, 244, 255, 0.16) !important;
}

/* v111: searchable account picker inside package form */
.package-picker-search {
  margin: 0.65rem 0 0.75rem;
}

.package-picker-search input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(34, 244, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  padding: 0 0.9rem;
  font: inherit;
  font-weight: 850;
}

.package-picker-item[hidden] {
  display: none !important;
}

.package-picker-item b {
  color: var(--cyan);
  font-weight: 1000;
}


/* v114: client cabinet fixed phone panel */
.account-dashboard-page {
  min-height: 100svh;
  padding: calc(76px + clamp(1rem, 3vw, 2rem)) clamp(0.85rem, 2.5vw, 2rem) clamp(2rem, 5vw, 4rem);
}

.account-dashboard-shell {
  position: relative;
  width: 100%;
  min-height: calc(100svh - 112px);
}

.account-sidebar-toggle-input {
  position: fixed;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.account-dashboard-sidebar {
  position: fixed;
  top: calc(76px + 0.8rem);
  left: clamp(0.65rem, 1.4vw, 1.15rem);
  z-index: 24;
  width: min(420px, calc(100vw - 1.4rem));
  height: auto;
  max-height: calc(100svh - 92px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(-100% - 1.8rem));
  transition: transform 0.26s ease, opacity 0.22s ease;
}

.account-phone-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: clamp(0.8rem, 1.7vh, 1.15rem);
  width: 100%;
  height: auto;
  max-height: calc(100svh - 92px);
  padding: clamp(1rem, 1.8vw, 1.45rem);
  overflow: hidden auto;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan) rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(255, 47, 214, 0.18), transparent 36%),
    linear-gradient(20deg, rgba(34, 244, 255, 0.15), transparent 54%),
    rgba(10, 3, 18, 0.94);
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.035),
    0 22px 62px rgba(0, 0, 0, 0.42),
    0 0 58px rgba(255, 47, 214, 0.2);
}

.account-phone-card::-webkit-scrollbar {
  width: 7px;
}

.account-phone-card::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--cyan);
}

.account-phone-card::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 50%;
  width: 34%;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
}

.account-sidebar-close,
.account-sidebar-open {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(34, 244, 255, 0.32);
  border-radius: 8px;
  background: rgba(34, 244, 255, 0.1);
  color: #eaffff;
  font-size: 0.82rem;
  font-weight: 1000;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(34, 244, 255, 0.12);
}

.account-sidebar-close {
  justify-self: end;
  min-width: 92px;
  margin-top: 0.4rem;
}

.account-sidebar-open {
  position: fixed;
  left: clamp(0.65rem, 1.4vw, 1.15rem);
  top: calc(76px + 1rem);
  z-index: 25;
  min-width: 118px;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.account-sidebar-toggle-input:checked ~ .account-dashboard-sidebar {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.account-sidebar-toggle-input:checked ~ .account-sidebar-open {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-0.5rem);
}

.account-phone-card .eyebrow {
  margin: 0.35rem 0 0;
}

.account-phone-card h1 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(2.85rem, 4.8vw, 4.6rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.account-profile-block {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.account-profile-title {
  color: #fff;
  font-size: 1.12rem;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(34, 244, 255, 0.32);
}

.account-profile-block div {
  display: grid;
  gap: 0.22rem;
  padding: 0.72rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.account-profile-block span,
.account-dashboard-nav small,
.account-workspace-title span,
.account-stat-placeholder p {
  color: var(--muted);
}

.account-profile-block strong {
  min-width: 0;
  color: #fff;
  font-size: 1.02rem;
  overflow-wrap: anywhere;
}

.account-dashboard-nav {
  display: grid;
  gap: 0.72rem;
  align-self: end;
}

.account-dashboard-nav a {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 0.15rem 0.75rem;
  align-items: center;
  min-height: 72px;
  padding: 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.account-dashboard-nav a:hover,
.account-dashboard-nav a.active {
  border-color: rgba(34, 244, 255, 0.4);
  background: linear-gradient(135deg, rgba(34, 244, 255, 0.13), rgba(255, 47, 214, 0.09));
  transform: translateY(-1px);
}

.account-dashboard-nav span {
  grid-row: 1 / 3;
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(34, 244, 255, 0.1);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 1000;
}

.account-dashboard-nav strong {
  color: #fff;
  font-size: 1.04rem;
}

.account-phone-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.account-phone-actions .primary-btn,
.account-phone-actions .ghost-btn {
  width: 100%;
  min-width: 0;
}

.account-dashboard-content {
  width: min(1320px, calc(100vw - 2rem));
  min-width: 0;
  margin: 0 auto;
}

.account-workspace-section {
  display: grid;
  gap: 1rem;
}

.account-workspace-title {
  display: grid;
  gap: 0.35rem;
  padding: 0.15rem 0 0.2rem;
  text-align: center;
  justify-items: center;
}

.account-workspace-title h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 0.82;
}

.account-dashboard-content .account-section-tabs {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: stretch !important;
}

.account-dashboard-content .account-section-tabs a {
  width: 100%;
}

.account-dashboard-content .account-panel,
.account-dashboard-content .account-stats {
  width: 100%;
}

.account-dashboard-content .account-stats {
  margin-block: 0 1rem;
}

.account-dashboard-content .account-order-grid {
  grid-template-columns: 1fr;
}

.account-stats-in-panel {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.account-stats-work-panel {
  display: grid;
  gap: 1rem;
}

.account-soon-pill {
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(34, 244, 255, 0.32);
  border-radius: 999px;
  background: rgba(34, 244, 255, 0.09);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.account-stat-placeholder {
  padding: 1rem;
  border: 1px dashed rgba(34, 244, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 244, 255, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.045);
}

.account-stat-placeholder strong {
  color: #fff;
  font-size: 1.1rem;
}

.account-stat-placeholder p {
  max-width: 660px;
  margin: 0.45rem 0 0;
  line-height: 1.55;
}


@media (max-width: 640px) {
  .legal-page.account-page {
    min-height: 100svh;
    padding-top: calc(88px + 1.1rem);
  }

  .legal-page.account-page .account-auth {
    margin-top: 0;
  }

  .account-dashboard-page {
    padding: calc(82px + 3.8rem) 0.8rem 2.5rem;
  }

  .account-dashboard-sidebar {
    left: 0.7rem;
    width: calc(100vw - 1.4rem);
    max-height: calc(100svh - 92px);
  }

  .account-sidebar-open {
    left: 0.8rem;
    top: calc(82px + 0.7rem);
  }

  .account-phone-card {
    grid-template-rows: auto auto auto auto;
    gap: 0.85rem;
    border-radius: 22px;
    padding: 1rem;
  }

  .account-phone-card .account-profile-block {
    display: none;
  }

  .account-phone-card h1,
  .account-workspace-title h1 {
    font-size: clamp(2.4rem, 14vw, 4.3rem);
  }

  .account-dashboard-nav a {
    min-height: 58px;
  }

  .account-phone-actions,
  .account-dashboard-nav,
  .account-dashboard-content .account-section-tabs {
    grid-template-columns: 1fr;
  }

  .account-dashboard-content .account-section-tabs {
    display: grid;
  }

  .account-dashboard-content .account-section-tabs a {
    width: 100%;
  }
}

/* v116: cabinet width and manual drawer behavior */
.account-dashboard-content .account-panel {
  padding: clamp(1rem, 2vw, 1.7rem);
}

.account-dashboard-content .account-stats-in-panel {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.account-profile-block {
  align-content: start;
}

.account-dashboard-nav {
  align-self: start;
}

@media (min-width: 1600px) {
  .account-dashboard-content {
    width: min(1480px, calc(100vw - 3rem));
  }

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

@media (max-width: 900px) {
  .account-dashboard-content {
    width: min(100%, 100vw - 1.6rem);
  }
}

/* v117: denser drawer and wider order controls */
.account-phone-card {
  align-content: start;
}

.account-dashboard-content .account-status-filter {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.account-dashboard-content .account-status-filter a {
  width: 100%;
  min-width: 0;
}

.account-phone-card .account-profile-block {
  display: grid;
}

@media (max-width: 760px) {
  .account-dashboard-content .account-status-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .account-dashboard-content .account-status-filter {
    grid-template-columns: 1fr;
  }
}

/* v118: cabinet drawer polish */
.account-profile-title,
.account-nav-title {
  display: block;
  color: #fff;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgba(255, 47, 214, 0.5),
    0 0 34px rgba(34, 244, 255, 0.18);
}

.account-profile-title {
  font-size: clamp(1.75rem, 4.6vw, 2.65rem);
}

.account-nav-title {
  margin-top: 0.1rem;
  font-size: clamp(1.45rem, 3.6vw, 2.15rem);
}

.account-dashboard-content .account-order-grid > .empty-cart {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 148px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(34, 244, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(34, 244, 255, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.045);
}

.account-dashboard-sidebar,
.account-phone-card {
  height: auto;
}

.account-phone-card .account-profile-block {
  margin-top: 0.15rem;
}

@media (max-width: 640px) {
  .account-phone-card .account-profile-block {
    display: grid;
  }
}

/* v119: drawer title scale */
.account-phone-card .account-profile-title,
.account-phone-card .account-nav-title {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  white-space: nowrap;
}

.account-dashboard-content .account-order-grid > .empty-cart {
  min-height: 92px;
  padding: 1rem;
}

/* v121: beat cart button and global cart badge */
.cart-float {
  overflow: visible !important;
}

.cart-float .cart-count {
  top: -12px !important;
  right: -12px !important;
  min-width: 26px !important;
  height: 26px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 0.42rem !important;
  border: 1px solid rgba(122, 220, 232, 0.25) !important;
  border-radius: 999px !important;
  background: rgba(122, 220, 232, 0.15) !important;
  color: #fff !important;
  font-size: 0.78rem !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
  box-shadow:
    0 0 0 3px rgba(5, 2, 7, 0.78) !important;
}

.beat-card-side.marketplace-card-side {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 0.55rem !important;
  align-items: stretch;
}

.beat-card-side.has-beat-cart {
  grid-template-columns: minmax(0, 1fr) 46px;
}

.beat-card-side.has-beat-cart .marketplace-contact {
  grid-column: 1 / -1;
}

.beat-add-to-cart {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.48rem;
  text-align: center;
  white-space: nowrap;
}

.beat-add-to-cart .beat-cart-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.beat-cart-shortcut.card-cart-shortcut {
  align-self: stretch;
  width: 46px;
  height: 46px;
}

@media (max-width: 760px) {
  .beat-card-side.has-beat-cart {
    grid-template-columns: minmax(0, 1fr) 46px;
  }
}

/* v123: cart removal and beat shortcut placement fixes */
.beat-card-side.has-beat-cart .beat-add-to-cart {
  grid-column: 1;
  grid-row: 1;
}

.beat-card-side.has-beat-cart .beat-cart-shortcut {
  grid-column: 2;
  grid-row: 1;
}

.beat-card-side.has-beat-cart .marketplace-contact {
  grid-column: 1 / -1;
  grid-row: 2;
}


/* v124: 2026 glass header refresh */
.topbar {
  position: fixed !important;
  top: max(12px, env(safe-area-inset-top)) !important;
  left: 50% !important;
  right: auto !important;
  z-index: 80 !important;
  width: min(calc(100% - 24px), 1380px) !important;
  min-height: 72px !important;
  display: grid !important;
  grid-template-columns: auto minmax(190px, 340px) minmax(320px, 1fr) auto !important;
  align-items: center !important;
  gap: 0.7rem !important;
  padding: 0.58rem 0.7rem !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 999px !important;
  background: rgba(12, 9, 18, 0.54) !important;
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(26px) saturate(1.25) !important;
  -webkit-backdrop-filter: blur(26px) saturate(1.25) !important;
  transform: translateX(-50%) !important;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04) 42%, rgba(34, 244, 255, 0.08)),
    rgba(10, 7, 16, 0.46);
  pointer-events: none;
}

.brand {
  min-height: 48px !important;
  padding: 0 0.9rem !important;
  border-radius: 999px !important;
}

.brand-name {
  min-width: 64px !important;
  line-height: 0.82 !important;
  text-shadow: none !important;
}

.brand-name strong {
  font-size: 1rem !important;
  letter-spacing: 0 !important;
}

.brand-name small {
  color: rgba(225, 252, 255, 0.92) !important;
  font-size: 0.56rem !important;
  letter-spacing: 0.11em !important;
  text-shadow: none !important;
}

.site-search {
  min-width: 0;
  height: 48px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.site-search span {
  position: relative;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(244, 238, 255, 0.72);
  border-radius: 50%;
}

.site-search span::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: rgba(244, 238, 255, 0.72);
  transform: rotate(45deg);
}

.site-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 750;
}

.site-search input::placeholder {
  color: rgba(248, 238, 255, 0.58);
}

.topbar nav {
  position: static !important;
  width: auto !important;
  max-width: none !important;
  min-height: 48px !important;
  display: inline-flex !important;
  justify-content: center !important;
  gap: 0.16rem !important;
  padding: 0.24rem !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(5, 2, 7, 0.22);
  color: rgba(248, 238, 255, 0.72) !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 760 !important;
  text-align: center;
  transform: none !important;
}

.topbar nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.78rem;
  border-radius: 999px;
  color: inherit;
  white-space: nowrap;
  text-shadow: none !important;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.topbar nav a:hover,
.topbar nav .active-link {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.42rem;
  min-width: 0;
}

.support-link,
.account-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(248, 238, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.support-link {
  padding: 0 0.72rem;
}

.account-link {
  gap: 0.45rem;
  padding: 0 0.78rem 0 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.account-link span {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 35%, #fff 0 3px, transparent 3.4px),
    radial-gradient(circle at 50% 78%, #fff 0 6px, transparent 6.4px),
    linear-gradient(135deg, rgba(255, 47, 214, 0.72), rgba(34, 244, 255, 0.6));
  box-shadow: 0 0 18px rgba(34, 244, 255, 0.18);
}

.account-link b {
  font: inherit;
}

.nav-cta,
.hero-actions .primary-btn,
.hero-actions .ghost-btn {
  min-width: 0 !important;
  min-height: 48px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(248, 238, 255, 0.1) !important;
  color: #fff !important;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
  font-weight: 850 !important;
  text-shadow: none !important;
  transform: none !important;
}

.nav-cta {
  padding: 0 1rem !important;
}

.hero-actions .primary-btn {
  background: #f8eeff !important;
  color: #100819 !important;
}

.hero-actions .ghost-btn {
  background: rgba(255, 255, 255, 0.11) !important;
}

.nav-cta:hover,
.hero-actions .primary-btn:hover,
.hero-actions .ghost-btn:hover,
.support-link:hover,
.account-link:hover {
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: rgba(255, 255, 255, 0.16) !important;
  color: #fff !important;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.26),
    0 0 22px rgba(34, 244, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.hero-actions .primary-btn:hover {
  background: #fff !important;
  color: #100819 !important;
}

.topbar .cart-float {
  width: 48px !important;
  min-width: 48px !important;
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
}

.topbar .cart-label {
  display: none !important;
}

.topbar .cart-count {
  top: -8px !important;
  right: -8px !important;
  background: #f8eeff !important;
  color: #12061d !important;
  box-shadow: 0 0 0 3px rgba(12, 9, 18, 0.86) !important;
}

.hero-content {
  margin-top: 9.2rem !important;
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: auto minmax(190px, 1fr) auto !important;
    border-radius: 28px !important;
  }

  .topbar nav {
    grid-column: 1 / -1;
    grid-row: 2;
    overflow-x: auto;
    justify-content: flex-start !important;
    scrollbar-width: none;
  }

  .topbar nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 760px) {
  .topbar {
    top: 8px !important;
    width: min(calc(100% - 16px), 560px) !important;
    grid-template-columns: auto 1fr auto !important;
    gap: 0.46rem !important;
    padding: 0.46rem !important;
  }

  .brand {
    padding: 0 0.58rem !important;
  }

  .brand-name strong {
    font-size: 0.78rem !important;
  }

  .brand-name small {
    font-size: 0.44rem !important;
  }

  .site-search {
    height: 44px;
    padding: 0 0.74rem;
  }

  .site-search input {
    font-size: 0.82rem;
  }

  .support-link,
  .account-link b,
  .nav-cta {
    display: none !important;
  }

  .account-link {
    width: 44px;
    min-height: 44px;
    padding: 0 !important;
  }

  .topbar .cart-float {
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
  }

  .topbar nav {
    min-height: 42px !important;
    padding: 0.2rem !important;
  }

  .topbar nav a {
    min-height: 34px;
    padding: 0 0.68rem;
    font-size: 0.8rem;
  }

  .hero-content {
    margin-top: 10.6rem !important;
  }
}

@media (max-width: 460px) {
  .site-search input::placeholder {
    color: transparent;
  }
}

/* v125: cyan neon glass standard */
.topbar {
  grid-template-columns: 92px minmax(220px, 320px) minmax(420px, 1fr) 310px !important;
  background:
    linear-gradient(135deg, rgba(7, 44, 58, 0.62), rgba(15, 8, 30, 0.5) 46%, rgba(34, 244, 255, 0.16)),
    rgba(5, 2, 7, 0.54) !important;
  border-color: rgba(34, 244, 255, 0.28) !important;
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 47, 214, 0.08),
    0 0 34px rgba(34, 244, 255, 0.16),
    inset 0 1px 0 rgba(218, 255, 255, 0.24) !important;
}

.topbar::before {
  background:
    radial-gradient(ellipse at 14% 0%, rgba(34, 244, 255, 0.18), transparent 48%),
    radial-gradient(ellipse at 88% 100%, rgba(255, 47, 214, 0.13), transparent 46%),
    linear-gradient(135deg, rgba(210, 255, 255, 0.13), rgba(34, 244, 255, 0.055) 42%, rgba(139, 77, 255, 0.11)),
    rgba(4, 18, 25, 0.48) !important;
}

.brand,
.site-search,
.topbar nav,
.account-link,
.topbar .cart-float,
.nav-cta {
  border-color: rgba(34, 244, 255, 0.2) !important;
  background: rgba(2, 34, 45, 0.34) !important;
}

.brand:hover,
.site-search:focus-within,
.account-link:hover,
.support-link:hover,
.topbar .cart-float:hover,
.nav-cta:hover {
  border-color: rgba(34, 244, 255, 0.44) !important;
  background: rgba(4, 54, 70, 0.46) !important;
  box-shadow:
    0 0 22px rgba(34, 244, 255, 0.16),
    inset 0 1px 0 rgba(230, 255, 255, 0.16) !important;
}

.site-search {
  box-shadow:
    inset 0 1px 0 rgba(230, 255, 255, 0.12),
    inset 0 0 18px rgba(34, 244, 255, 0.055) !important;
}

.site-search span {
  border-color: rgba(34, 244, 255, 0.86) !important;
  box-shadow: 0 0 12px rgba(34, 244, 255, 0.24);
}

.site-search span::after {
  background: rgba(34, 244, 255, 0.86) !important;
}

.site-search input::placeholder {
  color: rgba(210, 255, 255, 0.62) !important;
}

.topbar nav {
  background:
    linear-gradient(135deg, rgba(34, 244, 255, 0.08), rgba(255, 47, 214, 0.05)),
    rgba(3, 22, 32, 0.42) !important;
  color: rgba(226, 255, 255, 0.76) !important;
}

.topbar nav a:hover,
.topbar nav .active-link,
.account-link.active-link {
  background:
    linear-gradient(135deg, rgba(34, 244, 255, 0.18), rgba(255, 47, 214, 0.1)),
    rgba(255, 255, 255, 0.08) !important;
  color: #f7ffff !important;
  box-shadow:
    0 0 18px rgba(34, 244, 255, 0.14),
    inset 0 1px 0 rgba(230, 255, 255, 0.18) !important;
}

.support-link {
  color: rgba(226, 255, 255, 0.88) !important;
}

.support-link::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 0.48rem;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(34, 244, 255, 0.8);
}

.account-link span {
  background:
    radial-gradient(circle at 50% 35%, #f7ffff 0 3px, transparent 3.4px),
    radial-gradient(circle at 50% 78%, #f7ffff 0 6px, transparent 6.4px),
    linear-gradient(135deg, rgba(34, 244, 255, 0.92), rgba(255, 47, 214, 0.68)) !important;
  box-shadow: 0 0 20px rgba(34, 244, 255, 0.34) !important;
}

.nav-actions {
  width: 100%;
}

.nav-cta,
.hero-actions .primary-btn {
  background:
    linear-gradient(135deg, rgba(230, 255, 255, 0.96), rgba(34, 244, 255, 0.78) 56%, rgba(255, 47, 214, 0.62)) !important;
  color: #061018 !important;
  border-color: rgba(210, 255, 255, 0.54) !important;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.26),
    0 0 24px rgba(34, 244, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.42) !important;
}

.hero-actions .ghost-btn {
  background:
    linear-gradient(135deg, rgba(34, 244, 255, 0.13), rgba(255, 47, 214, 0.08)),
    rgba(3, 28, 39, 0.44) !important;
  border-color: rgba(34, 244, 255, 0.26) !important;
}

.topbar .cart-float {
  background:
    linear-gradient(135deg, rgba(34, 244, 255, 0.16), rgba(255, 47, 214, 0.08)),
    rgba(3, 27, 37, 0.5) !important;
}

.topbar .cart-count {
  background: linear-gradient(135deg, var(--cyan), #eaffff) !important;
  color: #061018 !important;
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: 82px minmax(180px, 1fr) minmax(112px, auto) !important;
  }

  .nav-actions {
    width: auto;
  }
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
  }

  .support-link::before {
    margin-right: 0;
  }
}

@media (max-width: 760px) {
  .support-link {
    width: 44px;
    min-height: 44px;
    display: inline-flex !important;
    padding: 0 !important;
    font-size: 0 !important;
  }

  .support-link::before {
    width: 10px;
    height: 10px;
  }
}

/* v126: rollback to calm glass, more transparency, fixed action widths */
.topbar {
  width: min(calc(100% - 24px), 1380px) !important;
  grid-template-columns: 82px minmax(210px, 320px) minmax(0, 1fr) minmax(286px, 336px) !important;
  gap: 0.62rem !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(34, 244, 255, 0.045) 42%, rgba(255, 47, 214, 0.035)),
    rgba(8, 4, 14, 0.36) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(34, 244, 255, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

.topbar::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025) 46%, rgba(34, 244, 255, 0.06)),
    rgba(10, 7, 16, 0.3) !important;
}

.brand,
.site-search,
.topbar nav,
.account-link,
.topbar .cart-float,
.nav-cta {
  border-color: rgba(255, 255, 255, 0.13) !important;
  background: rgba(255, 255, 255, 0.065) !important;
}

.site-search {
  min-width: 0 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.site-search span {
  border-color: rgba(210, 252, 255, 0.78) !important;
  box-shadow: 0 0 10px rgba(34, 244, 255, 0.12) !important;
}

.site-search span::after {
  background: rgba(210, 252, 255, 0.78) !important;
}

.site-search input::placeholder {
  color: rgba(248, 238, 255, 0.55) !important;
}

.topbar nav {
  min-width: 0 !important;
  justify-self: center !important;
  max-width: 100% !important;
  background: rgba(5, 2, 7, 0.18) !important;
  color: rgba(248, 238, 255, 0.74) !important;
}

.topbar nav a {
  padding: 0 clamp(0.52rem, 0.82vw, 0.76rem) !important;
}

.topbar nav a:hover,
.topbar nav .active-link,
.account-link.active-link {
  background: rgba(255, 255, 255, 0.105) !important;
  color: #fff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 16px rgba(34, 244, 255, 0.08) !important;
}

.nav-actions {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  justify-content: end !important;
  align-items: center !important;
  gap: 0.42rem !important;
  overflow: visible !important;
}

.support-link,
.account-link,
.nav-cta,
.topbar .cart-float {
  flex: 0 0 auto !important;
}

.support-link {
  min-width: 94px !important;
  padding: 0 0.72rem !important;
  color: rgba(248, 238, 255, 0.82) !important;
  font-size: 0.88rem !important;
}

.support-link::before {
  content: none !important;
}

.account-link {
  min-width: 112px !important;
  max-width: 126px !important;
  gap: 0.42rem !important;
  padding: 0 0.7rem 0 0.54rem !important;
  overflow: hidden !important;
}

.account-link b {
  display: block !important;
  min-width: 0 !important;
  max-width: 72px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.account-link span {
  flex: 0 0 24px !important;
  background:
    radial-gradient(circle at 50% 35%, #fff 0 3px, transparent 3.4px),
    radial-gradient(circle at 50% 78%, #fff 0 6px, transparent 6.4px),
    linear-gradient(135deg, rgba(255, 47, 214, 0.72), rgba(34, 244, 255, 0.6)) !important;
  box-shadow: 0 0 18px rgba(34, 244, 255, 0.18) !important;
}

.nav-cta {
  min-width: 92px !important;
  max-width: 104px !important;
  padding: 0 0.82rem !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.065)),
    rgba(248, 238, 255, 0.105) !important;
  color: #fff !important;
}

.hero-actions .primary-btn,
.hero-actions .ghost-btn {
  min-width: 168px !important;
  max-width: 220px !important;
  background: rgba(255, 255, 255, 0.115) !important;
  color: #fff !important;
}

.hero-actions .primary-btn {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(34, 244, 255, 0.09)),
    rgba(255, 255, 255, 0.13) !important;
}

.nav-cta:hover,
.hero-actions .primary-btn:hover,
.hero-actions .ghost-btn:hover,
.support-link:hover,
.account-link:hover,
.topbar .cart-float:hover {
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.22),
    0 0 18px rgba(34, 244, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: auto minmax(180px, 1fr) auto !important;
    border-radius: 28px !important;
  }

  .topbar nav {
    justify-self: stretch !important;
  }

  .nav-actions {
    width: auto !important;
  }
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
  }

  .support-link,
  .account-link b,
  .nav-cta {
    display: none !important;
  }

  .account-link {
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    padding: 0 !important;
    justify-content: center !important;
  }
}

/* v126.1: stable desktop header tracks */
@media (min-width: 1181px) {
  .topbar {
    grid-template-columns: 82px 320px minmax(0, 1fr) 336px !important;
  }

  .nav-actions {
    width: 336px !important;
  }
}

/* v128: cleaner brand and account icon */
.topbar .brand {
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
}

.topbar .brand:hover {
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
}

.account-link span {
  position: relative !important;
  flex: 0 0 24px !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.account-link span::before,
.account-link span::after {
  content: "";
  position: absolute;
  left: 50%;
  background: #fff;
  transform: translateX(-50%);
}

.account-link span::before {
  top: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.account-link span::after {
  bottom: 4px;
  width: 15px;
  height: 9px;
  border-radius: 10px 10px 5px 5px;
}

/* v129: unified modern glass surfaces for catalog, cart, beats and account */
:root {
  --wwc-surface: rgba(18, 13, 26, 0.72);
  --wwc-surface-soft: rgba(255, 255, 255, 0.065);
  --wwc-surface-strong: rgba(23, 17, 32, 0.92);
  --wwc-edge: rgba(255, 255, 255, 0.14);
  --wwc-edge-cyan: rgba(34, 244, 255, 0.24);
  --wwc-text-soft: rgba(248, 238, 255, 0.74);
  --wwc-cyan-soft: rgba(34, 244, 255, 0.12);
  --wwc-pink-soft: rgba(255, 47, 214, 0.1);
  --wwc-radius: 18px;
  --wwc-radius-sm: 14px;
  --wwc-shadow: 0 22px 58px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.catalog-switch,
.catalog-search-row,
.marketplace-searchbar,
.package-panel,
.catalog-panel,
.marketplace-panel,
.account-dashboard-content .account-panel,
.account-dashboard-content .account-stats,
.account-phone-card,
.cart-dialog,
.support-chat-panel,
.legal-card.account-auth,
.account-guest-panel {
  border: 1px solid var(--wwc-edge) !important;
  border-radius: var(--wwc-radius) !important;
  background:
    linear-gradient(145deg, var(--wwc-cyan-soft), transparent 42%),
    linear-gradient(315deg, var(--wwc-pink-soft), transparent 56%),
    var(--wwc-surface) !important;
  box-shadow: var(--wwc-shadow) !important;
  backdrop-filter: blur(22px) saturate(1.14) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.14) !important;
}

.catalog-panel,
.package-panel,
.marketplace-panel {
  width: min(100% - 2rem, var(--content-max)) !important;
  margin-inline: auto !important;
  padding: clamp(1.15rem, 2.8vw, 2rem) !important;
}

.catalog-toolbar,
.marketplace-results-head,
.account-panel-head {
  align-items: center !important;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.catalog-toolbar h2,
.marketplace-results-head h2,
.account-panel-head h2 {
  letter-spacing: 0 !important;
  text-shadow: none !important;
}

.catalog-switch {
  width: min(100% - 2rem, var(--content-max)) !important;
  top: 96px !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.55rem !important;
  margin: -1.25rem auto 1.1rem !important;
  padding: 0.55rem !important;
  border-radius: 999px !important;
  background:
    linear-gradient(135deg, rgba(34, 244, 255, 0.08), rgba(255, 47, 214, 0.055)),
    rgba(14, 10, 22, 0.58) !important;
}

.catalog-switch a,
.account-dashboard-content .account-section-tabs a,
.account-dashboard-content .account-status-filter a,
.filter-chip,
.city-chip,
.legal-actions a,
.account-dashboard-nav a,
.account-sidebar-open,
.account-sidebar-close {
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.07) !important;
  color: var(--wwc-text-soft) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease !important;
}

.catalog-switch a:hover,
.catalog-switch a:first-child,
.account-dashboard-content .account-section-tabs a.primary-btn,
.account-dashboard-content .account-section-tabs a:hover,
.account-dashboard-content .account-status-filter a.active-track,
.account-dashboard-content .account-status-filter a:hover,
.filter-chip.active,
.filter-chip:hover,
.city-chip.active,
.city-chip:hover,
.account-dashboard-nav a.active,
.account-dashboard-nav a:hover {
  border-color: rgba(34, 244, 255, 0.36) !important;
  background:
    linear-gradient(135deg, rgba(34, 244, 255, 0.16), rgba(255, 47, 214, 0.08)),
    rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  box-shadow: 0 0 18px rgba(34, 244, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
  transform: translateY(-1px);
}

.catalog-search-row {
  width: min(100% - 2rem, var(--content-max)) !important;
  display: grid !important;
  grid-template-columns: minmax(260px, 0.68fr) minmax(420px, 1.32fr) !important;
  align-items: center !important;
  gap: clamp(0.8rem, 2vw, 1.3rem) !important;
  margin: 1.1rem auto !important;
  padding: clamp(0.85rem, 2vw, 1.2rem) !important;
}

.catalog-search-head h2 {
  margin: 0 !important;
  max-width: 100% !important;
  font-size: clamp(1.05rem, 2.2vw, 1.65rem) !important;
  line-height: 1.08 !important;
}

.catalog-search-controls,
.marketplace-searchbar,
.beats-searchbar.marketplace-searchbar {
  min-width: 0 !important;
}

.catalog-search-controls {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 0.65rem !important;
  align-items: center !important;
}

.catalog-search-row input,
.catalog-search,
.marketplace-search,
.marketplace-city-select,
.marketplace-city-input,
.marketplace-price-filter,
.cart-form input,
.cart-form select,
.lead-form input,
.lead-form select,
.lead-form textarea,
.support-chat-form input,
.support-chat-form textarea,
.account-promo-form input {
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  border-radius: var(--wwc-radius-sm) !important;
  background: rgba(8, 13, 20, 0.62) !important;
  color: #fff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.catalog-search-row input:focus,
.catalog-search:focus,
.marketplace-search:focus,
.cart-form input:focus,
.support-chat-form input:focus,
.support-chat-form textarea:focus,
.account-promo-form input:focus {
  outline: 0 !important;
  border-color: rgba(34, 244, 255, 0.44) !important;
  box-shadow: 0 0 0 3px rgba(34, 244, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.09) !important;
}

.catalog-search-modes {
  min-height: 48px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  padding: 0.25rem !important;
}

.catalog-search-modes button {
  min-height: 40px !important;
  border-radius: 999px !important;
  color: var(--wwc-text-soft) !important;
}

.catalog-search-modes button.active,
.catalog-search-modes button:hover {
  background: rgba(34, 244, 255, 0.16) !important;
  color: #fff !important;
}

.marketplace-searchbar,
.beats-searchbar.marketplace-searchbar {
  width: min(100% - 2rem, var(--content-max)) !important;
  grid-template-columns: minmax(0, 1fr) minmax(132px, 160px) !important;
  align-items: center !important;
  overflow: visible !important;
  padding: clamp(0.75rem, 2vw, 1rem) !important;
  margin-bottom: 1rem !important;
}

.marketplace-search-button,
.promo-apply,
.cart-form button,
.support-chat-form button,
.account-promo-form button,
.primary-btn,
.package-add,
.add-to-cart,
.beat-add-to-cart {
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(34, 244, 255, 0.08)),
    rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
  text-shadow: none !important;
}

.primary-btn:hover,
.package-add:hover,
.add-to-cart:hover,
.beat-add-to-cart:hover,
.marketplace-search-button:hover,
.cart-form button:hover,
.support-chat-form button:hover,
.account-promo-form button:hover {
  border-color: rgba(34, 244, 255, 0.38) !important;
  background:
    linear-gradient(135deg, rgba(34, 244, 255, 0.18), rgba(255, 47, 214, 0.1)),
    rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24), 0 0 20px rgba(34, 244, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.ghost-btn,
.marketplace-contact,
.account-phone-actions .ghost-btn,
a[href$="/logout"] {
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  background: rgba(255, 255, 255, 0.065) !important;
  color: var(--wwc-text-soft) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  text-shadow: none !important;
}

a[href$="/logout"] {
  border-color: rgba(255, 104, 132, 0.36) !important;
  background: linear-gradient(135deg, rgba(255, 74, 114, 0.16), rgba(255, 255, 255, 0.045)) !important;
  color: #fff6f8 !important;
}

.package-card,
.blogger-card,
.marketplace-card,
.account-order-card,
.account-stats div,
.account-stat-placeholder,
.cart-item,
.empty-cart,
.promo-row,
.account-order-position,
.account-order-links li,
.account-profile-block div {
  border: 1px solid var(--wwc-edge) !important;
  border-radius: var(--wwc-radius) !important;
  background:
    linear-gradient(145deg, rgba(34, 244, 255, 0.075), transparent 44%),
    linear-gradient(315deg, rgba(255, 47, 214, 0.07), transparent 58%),
    rgba(255, 255, 255, 0.052) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.075) !important;
}

.package-card:hover,
.blogger-card:hover,
.marketplace-card:hover,
.account-order-card:hover {
  border-color: rgba(34, 244, 255, 0.28) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24), 0 0 24px rgba(34, 244, 255, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.09) !important;
}

.package-media,
.blogger-video,
.marketplace-cover,
.marketplace-card-gallery,
.marketplace-empty-media {
  border-radius: var(--wwc-radius-sm) !important;
}

.package-card-actions {
  border-radius: 999px !important;
  background: rgba(8, 13, 20, 0.36) !important;
  padding: 0.38rem !important;
}

.package-price {
  color: #fff !important;
  opacity: 0.94;
}

.beats-list.marketplace-list {
  gap: 0.95rem !important;
}

.beats-list .marketplace-card,
.beat-card {
  border-radius: var(--wwc-radius) !important;
}

.marketplace-card .beat-cover .beat-audio-toggle {
  border-radius: 999px !important;
  background:
    linear-gradient(135deg, rgba(34, 244, 255, 0.22), rgba(139, 77, 255, 0.13)),
    rgba(8, 13, 20, 0.72) !important;
}

.cart-backdrop {
  background:
    radial-gradient(circle at 78% 18%, rgba(34, 244, 255, 0.12), transparent 26rem),
    radial-gradient(circle at 22% 84%, rgba(255, 47, 214, 0.1), transparent 24rem),
    rgba(5, 4, 10, 0.72) !important;
  backdrop-filter: blur(14px) !important;
}

.cart-dialog {
  width: min(500px, calc(100% - 2rem)) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(145deg, rgba(34, 244, 255, 0.1), transparent 42%),
    linear-gradient(315deg, rgba(255, 47, 214, 0.105), transparent 58%),
    rgba(20, 15, 28, 0.96) !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44), 0 0 34px rgba(34, 244, 255, 0.08) !important;
}

.cart-close {
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.07) !important;
}

.cart-items .empty-cart,
.cart-items:empty::before {
  color: #fff !important;
  background:
    linear-gradient(135deg, rgba(34, 244, 255, 0.1), rgba(255, 47, 214, 0.07)),
    rgba(255, 255, 255, 0.06) !important;
}

.legal-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.legal-actions a {
  min-width: 0 !important;
  padding-inline: 0.55rem !important;
  font-size: 0.76rem !important;
  color: #fff !important;
}

.promo-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 0.55rem !important;
  padding: 0.65rem !important;
}

.telegram-float,
.support-chat-toggle {
  border-radius: 999px !important;
  border: 1px solid rgba(34, 244, 255, 0.24) !important;
  background:
    linear-gradient(135deg, rgba(34, 244, 255, 0.18), rgba(255, 47, 214, 0.1)),
    rgba(20, 15, 28, 0.74) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 0 22px rgba(34, 244, 255, 0.12) !important;
}

.support-chat-panel {
  border-radius: 24px !important;
  background:
    linear-gradient(145deg, rgba(34, 244, 255, 0.11), transparent 46%),
    rgba(20, 15, 28, 0.96) !important;
}

.account-dashboard-page {
  background:
    radial-gradient(circle at 12% 14%, rgba(34, 244, 255, 0.1), transparent 24rem),
    radial-gradient(circle at 86% 18%, rgba(255, 47, 214, 0.08), transparent 26rem),
    linear-gradient(180deg, rgba(5, 2, 7, 0), rgba(14, 10, 22, 0.42)) !important;
}

.account-phone-card {
  border-radius: 34px !important;
  background:
    linear-gradient(160deg, rgba(34, 244, 255, 0.12), transparent 42%),
    linear-gradient(25deg, rgba(255, 47, 214, 0.12), transparent 58%),
    rgba(20, 15, 28, 0.94) !important;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.035), 0 26px 72px rgba(0, 0, 0, 0.42), 0 0 34px rgba(34, 244, 255, 0.1) !important;
}

.account-dashboard-nav span {
  background: rgba(34, 244, 255, 0.12) !important;
  color: var(--cyan) !important;
}

.account-phone-actions .primary-btn,
.account-panel-head .primary-btn {
  background:
    linear-gradient(135deg, rgba(34, 244, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.085) !important;
}

.account-dashboard-content .account-section-tabs,
.account-dashboard-content .account-status-filter {
  gap: 0.65rem !important;
}

.account-order-bottom span,
.account-order-top > span,
.account-soon-pill,
.account-track-name,
.marketplace-trust span {
  border-radius: 999px !important;
  border: 1px solid rgba(34, 244, 255, 0.22) !important;
  background: rgba(34, 244, 255, 0.09) !important;
  color: #dffcff !important;
}

.account-promo-form {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 0.55rem !important;
}

@media (max-width: 980px) {
  .catalog-search-row {
    grid-template-columns: 1fr !important;
  }

  .catalog-search-controls,
  .marketplace-searchbar,
  .beats-searchbar.marketplace-searchbar {
    grid-template-columns: 1fr !important;
  }

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

@media (max-width: 760px) {
  .catalog-panel,
  .package-panel,
  .marketplace-panel,
  .catalog-search-row,
  .marketplace-searchbar,
  .catalog-switch {
    width: min(100% - 1rem, var(--content-max)) !important;
    border-radius: 18px !important;
  }

  .catalog-switch {
    grid-template-columns: 1fr 1fr !important;
    top: 132px !important;
  }

  .catalog-switch a,
  .account-dashboard-content .account-section-tabs a,
  .account-dashboard-content .account-status-filter a {
    min-height: 42px !important;
    font-size: 0.82rem !important;
  }

  .promo-row,
  .account-promo-form {
    grid-template-columns: 1fr !important;
  }

  .cart-dialog {
    inset: 0.7rem !important;
    width: auto !important;
  }
}

/* v130: contact/auth redesign and catalog switch overlap fix */
.contact {
  width: min(100% - 2rem, var(--content-max)) !important;
  margin: clamp(2rem, 5vw, 4rem) auto !important;
  padding: clamp(1.2rem, 3.4vw, 2.4rem) !important;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1fr) !important;
  align-items: stretch !important;
  border: 1px solid var(--wwc-edge) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(145deg, rgba(34, 244, 255, 0.1), transparent 44%),
    linear-gradient(315deg, rgba(255, 47, 214, 0.09), transparent 58%),
    rgba(18, 13, 26, 0.76) !important;
  box-shadow: var(--wwc-shadow) !important;
  backdrop-filter: blur(22px) saturate(1.12) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.12) !important;
}

.contact > div:first-child {
  display: grid;
  align-content: center;
  gap: 0.65rem;
  min-width: 0;
}

.contact h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.8vw, 4.6rem) !important;
  text-shadow: none !important;
}

.contact p {
  max-width: 620px;
  color: var(--wwc-text-soft) !important;
}

.contact .lead-form,
.legal-card.account-auth .lead-form {
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  border-radius: 22px !important;
  background:
    linear-gradient(145deg, rgba(34, 244, 255, 0.085), transparent 44%),
    rgba(255, 255, 255, 0.055) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.09) !important;
  padding: clamp(1rem, 2.5vw, 1.65rem) !important;
}

.contact .lead-form {
  align-self: stretch;
}

.lead-form label {
  color: rgba(248, 238, 255, 0.78) !important;
  font-size: 0.9rem;
  font-weight: 850 !important;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  min-height: 52px !important;
  border-radius: 16px !important;
  background: rgba(8, 13, 20, 0.58) !important;
  border-color: rgba(255, 255, 255, 0.13) !important;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 0 !important;
  border-color: rgba(34, 244, 255, 0.46) !important;
  box-shadow: 0 0 0 3px rgba(34, 244, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.09) !important;
}

.lead-form .check-field {
  min-height: auto !important;
  grid-template-columns: 22px minmax(0, 1fr) !important;
  gap: 0.7rem !important;
  padding: 0.8rem !important;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.lead-form .check-field input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  margin-top: 0.15rem !important;
  accent-color: var(--cyan);
}

.contact .legal-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.lead-form button[type="submit"],
.legal-card.account-auth .lead-form button[type="submit"] {
  min-height: 54px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(34, 244, 255, 0.28) !important;
  background:
    linear-gradient(135deg, rgba(34, 244, 255, 0.18), rgba(255, 47, 214, 0.1)),
    rgba(255, 255, 255, 0.09) !important;
  color: #fff !important;
  font-weight: 950 !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24), 0 0 20px rgba(34, 244, 255, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.form-note,
.lead-status {
  min-height: 22px;
  margin: 0 !important;
  color: var(--cyan) !important;
  font-weight: 850;
}

.legal-page.account-page {
  min-height: 100svh !important;
  display: grid !important;
  align-items: center !important;
  padding: calc(92px + clamp(1rem, 3vw, 2rem)) clamp(1rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem) !important;
  background:
    radial-gradient(circle at 16% 20%, rgba(34, 244, 255, 0.09), transparent 24rem),
    radial-gradient(circle at 82% 22%, rgba(255, 47, 214, 0.08), transparent 26rem),
    linear-gradient(180deg, rgba(5, 2, 7, 0), rgba(14, 10, 22, 0.38)) !important;
}

.legal-card.account-auth {
  width: min(520px, 100%) !important;
  border-radius: 28px !important;
  padding: clamp(1.1rem, 3vw, 1.8rem) !important;
  background:
    linear-gradient(145deg, rgba(34, 244, 255, 0.1), transparent 44%),
    linear-gradient(315deg, rgba(255, 47, 214, 0.095), transparent 58%),
    rgba(20, 15, 28, 0.9) !important;
}

.legal-card.account-auth h1 {
  font-size: clamp(2.2rem, 6vw, 4.6rem) !important;
  text-align: left;
  text-shadow: none !important;
}

.legal-card.account-auth .account-legal-note {
  padding: 0.85rem !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.legal-card.account-auth .ghost-btn {
  min-height: 52px !important;
  width: 100%;
}

.catalog-switch {
  position: relative !important;
  z-index: 12 !important;
  top: auto !important;
  width: min(100% - 2rem, 560px) !important;
  margin: clamp(-5rem, -6vw, -3rem) auto clamp(1.8rem, 4vw, 3rem) !important;
}

.catalog-search-row {
  position: relative !important;
  z-index: 5 !important;
  margin-top: 0 !important;
}

@media (max-width: 980px) {
  .contact {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  .contact,
  .catalog-search-row {
    width: min(100% - 1rem, var(--content-max)) !important;
  }

  .contact .legal-actions {
    grid-template-columns: 1fr !important;
  }

  .catalog-switch {
    width: min(100% - 1rem, 520px) !important;
    margin: -2.2rem auto 1.3rem !important;
  }
}

/* v131: auth contrast, button hover, catalog section spacing */
.legal-card.account-auth {
  width: min(620px, 100%) !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 16% 0%, rgba(34, 244, 255, 0.16), transparent 18rem),
    radial-gradient(circle at 92% 100%, rgba(255, 47, 214, 0.13), transparent 20rem),
    rgba(15, 11, 22, 0.94) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}

.legal-card.account-auth .eyebrow {
  margin-bottom: 0.45rem !important;
}

.legal-card.account-auth h1 {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-bottom: 1rem !important;
  font-size: clamp(2rem, 5vw, 3.55rem) !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: clip !important;
}

.legal-card.account-auth .lead-form {
  gap: 0.85rem !important;
  border-color: rgba(34, 244, 255, 0.18) !important;
  background:
    linear-gradient(145deg, rgba(34, 244, 255, 0.055), transparent 46%),
    rgba(7, 10, 17, 0.74) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    0 16px 36px rgba(0, 0, 0, 0.22) !important;
}

.legal-card.account-auth .lead-form label:not(.check-field),
.legal-card.account-auth .account-legal-note,
.legal-card.account-auth .lead-form .check-field {
  border: 1px solid rgba(255, 255, 255, 0.105) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.045) !important;
  padding: 0.72rem !important;
}

.legal-card.account-auth .lead-form label:not(.check-field) {
  gap: 0.42rem !important;
}

.legal-card.account-auth .lead-form input {
  min-height: 48px !important;
  margin-top: 0.1rem !important;
}

.legal-card.account-auth .lead-form button[type="submit"],
.legal-card.account-auth .lead-form .ghost-btn {
  min-height: 52px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, color 0.18s ease !important;
}

.legal-card.account-auth .lead-form button[type="submit"]:hover,
.legal-card.account-auth .lead-form .ghost-btn:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(34, 244, 255, 0.5) !important;
  background:
    linear-gradient(135deg, rgba(34, 244, 255, 0.22), rgba(255, 47, 214, 0.12)),
    rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(34, 244, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
}

.legal-card.account-auth .lead-form button[type="submit"]:active,
.legal-card.account-auth .lead-form .ghost-btn:active {
  transform: translateY(0) !important;
}

#packages.package-panel {
  margin-bottom: clamp(1.8rem, 4vw, 3rem) !important;
}

#accounts.catalog-panel {
  margin-top: clamp(1.8rem, 4vw, 3rem) !important;
}

@media (max-width: 520px) {
  .legal-card.account-auth h1 {
    font-size: clamp(1.82rem, 10vw, 2.65rem) !important;
  }
}

/* v132: graphite base, restrained neon accents */
:root {
  --bg: #111316;
  --panel: rgba(26, 28, 32, 0.74);
  --panel-strong: rgba(31, 33, 38, 0.9);
  --text: #f6f8fa;
  --muted: #b8c0c8;
  --pink: #d36ac7;
  --violet: #796fe0;
  --cyan: #7adce8;
  --line: rgba(255, 255, 255, 0.12);
}

body {
  background:
    radial-gradient(circle at 14% 18%, rgba(122, 220, 232, 0.07), transparent 30rem),
    radial-gradient(circle at 82% 24%, rgba(121, 111, 224, 0.055), transparent 28rem),
    linear-gradient(180deg, #101114 0%, #17191d 46%, #101114 100%) !important;
}

.noise {
  opacity: 0.045 !important;
  background-size: 42px 42px !important;
  mix-blend-mode: soft-light !important;
}

.topbar,
.ticker {
  background:
    linear-gradient(180deg, rgba(18, 20, 24, 0.88), rgba(18, 20, 24, 0.46)) !important;
}

.hero-title::before,
.catalog-hero h1::before {
  background:
    radial-gradient(ellipse at 50% 38%, rgba(122, 220, 232, 0.13), transparent 58%),
    radial-gradient(ellipse at 50% 72%, rgba(121, 111, 224, 0.08), transparent 58%) !important;
  filter: blur(20px) !important;
  opacity: 0.42 !important;
}

.hero-title-main,
.hero-title-sub,
.catalog-hero h1,
.marketplace-title,
.marketplace-title span,
.catalog-pink-title,
.catalog-pink-title span {
  color: #f7f9fb !important;
  -webkit-text-stroke: 0 !important;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 18px rgba(122, 220, 232, 0.16),
    0 0 34px rgba(121, 111, 224, 0.1) !important;
}

.hero-title-sub {
  color: #dff8fb !important;
}

.hero-copy,
.catalog-hero .hero-copy {
  color: rgba(242, 245, 248, 0.76) !important;
}

.hero-video-bg,
.catalog-video-bg {
  filter: saturate(0.88) contrast(1.03) brightness(0.44) !important;
}

.hero-actions .primary-btn,
.hero-actions .ghost-btn,
.primary-btn,
.ghost-btn,
.nav-cta {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(27, 29, 34, 0.56) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  color: #f7fbfc !important;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
  text-shadow: 0 0 14px rgba(122, 220, 232, 0.16) !important;
}

.hero-actions .primary-btn:hover,
.hero-actions .ghost-btn:hover,
.primary-btn:hover,
.ghost-btn:hover,
.nav-cta:hover {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.16), rgba(255, 255, 255, 0.065)),
    rgba(31, 33, 38, 0.66) !important;
  border-color: rgba(122, 220, 232, 0.3) !important;
}

.catalog-panel,
.package-panel,
.marketplace-panel,
.cart-dialog,
.contact,
.account-auth,
.legal-card,
.blogger-card,
.package-card,
.marketplace-card,
.beat-card,
.account-phone-card,
.account-order-card {
  background:
    linear-gradient(145deg, rgba(122, 220, 232, 0.055), transparent 42%),
    linear-gradient(315deg, rgba(121, 111, 224, 0.035), transparent 58%),
    rgba(27, 29, 34, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.price-badges span,
.product-prices span,
.package-price {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.075), rgba(255, 255, 255, 0.045)),
    rgba(28, 30, 34, 0.58) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(245, 248, 250, 0.82) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.price-badges strong,
.package-price {
  color: #ffffff !important;
  text-shadow: 0 0 12px rgba(122, 220, 232, 0.12) !important;
}

.add-to-cart,
.package-add,
.beat-add-to-cart,
.cart-form button,
.support-chat-form button {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(28, 30, 34, 0.48) !important;
  border-color: rgba(122, 220, 232, 0.2) !important;
  color: #f7fbfc !important;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.11) !important;
  text-shadow: 0 0 12px rgba(122, 220, 232, 0.16) !important;
}

.add-to-cart:hover,
.package-add:hover,
.beat-add-to-cart:hover,
.cart-form button:hover,
.support-chat-form button:hover {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.18), rgba(255, 255, 255, 0.07)),
    rgba(35, 37, 42, 0.6) !important;
  border-color: rgba(122, 220, 232, 0.34) !important;
}

.add-to-cart.added,
.package-add.added,
.beat-add-to-cart.added {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.18), rgba(121, 111, 224, 0.1)),
    rgba(28, 30, 34, 0.58) !important;
}

.cart-count,
.cart-float .cart-count,
.topbar .cart-count {
  background: linear-gradient(135deg, #e6f1f3, #7adce8) !important;
  color: #111316 !important;
  box-shadow: 0 0 14px rgba(122, 220, 232, 0.22) !important;
}

.telegram-float,
.support-chat-toggle {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.14), rgba(255, 255, 255, 0.055)),
    rgba(27, 29, 34, 0.66) !important;
  border-color: rgba(122, 220, 232, 0.22) !important;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

/* v132.1: remove leftover hot pink from large surfaces */
.hero,
.catalog-hero,
.marketplace-hero,
.beats-hero,
.contact,
.catalog,
.marketplace,
.account-page,
.auth-page,
.cart-dialog {
  background:
    radial-gradient(circle at 16% 18%, rgba(122, 220, 232, 0.06), transparent 28rem),
    radial-gradient(circle at 82% 30%, rgba(121, 111, 224, 0.045), transparent 26rem),
    linear-gradient(180deg, rgba(17, 19, 22, 0.96), rgba(22, 24, 28, 0.92)) !important;
}

.hero::before,
.hero::after,
.catalog-hero::before,
.catalog-hero::after,
.section-title::after,
.catalog-panel::before,
.package-panel::before,
.marketplace-panel::before,
.blogger-card::before,
.package-card::before,
.marketplace-card::before,
.beat-card::before {
  opacity: 0.42 !important;
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.1), rgba(255, 255, 255, 0.025)) !important;
  box-shadow: none !important;
}

.brand-name,
.brand-name small,
.eyebrow,
.section-title,
.catalog-panel h2,
.package-panel h2,
.marketplace-panel h2,
.cart-dialog h2 {
  text-shadow: 0 0 14px rgba(122, 220, 232, 0.14) !important;
}

.catalog-switch button,
.catalog-tab,
.filter-pill,
.auth-tab,
.account-tab,
.legal-actions a {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.075), rgba(255, 255, 255, 0.04)),
    rgba(27, 29, 34, 0.58) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(246, 248, 250, 0.82) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.catalog-switch button.active,
.catalog-tab.active,
.filter-pill.active,
.auth-tab.active,
.account-tab.active,
.legal-actions a:hover {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(34, 37, 42, 0.68) !important;
  border-color: rgba(122, 220, 232, 0.28) !important;
  color: #ffffff !important;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.price-row,
.package-card-bottom,
.product-actions {
  background: transparent !important;
}

.cart-float,
.cart-mini-icon,
.card-cart-icon {
  border-color: rgba(122, 220, 232, 0.2) !important;
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(27, 29, 34, 0.56) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22) !important;
}

/* v133: focused graphite cleanup for forms, formats, search, account and mobile */
.flow-intro h2,
.flow-copy h3,
.account-hero-panel h1,
.account-panel-head h2,
.account-guest-card h1,
.legal-card h1,
.contact h2,
.beats-hero h1,
.marketplace-hero h1 {
  color: #f7fbfc !important;
  text-shadow:
    0 0 16px rgba(122, 220, 232, 0.18),
    0 0 34px rgba(122, 220, 232, 0.08) !important;
  -webkit-text-stroke: 0 !important;
}

.flow-intro p,
.flow-copy p,
.contact p,
.account-hero-panel p,
.account-guest-card p {
  color: rgba(232, 238, 242, 0.72) !important;
}

.flow-phone,
.blogger-video,
.product-media,
.beat-cover,
.marketplace-cover {
  border-color: rgba(255, 255, 255, 0.13) !important;
  background: rgba(16, 18, 22, 0.78) !important;
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.035),
    0 18px 42px rgba(0, 0, 0, 0.3),
    0 0 28px rgba(122, 220, 232, 0.12) !important;
}

.flow-video-shade,
.blogger-video::after {
  background:
    linear-gradient(180deg, rgba(16, 18, 22, 0.05), rgba(16, 18, 22, 0.18) 42%, rgba(16, 18, 22, 0.88)),
    radial-gradient(circle at 50% 44%, transparent 0 26%, rgba(122, 220, 232, 0.08) 72%) !important;
}

.contact {
  border: 1px solid rgba(255, 255, 255, 0.11) !important;
  border-radius: 28px !important;
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(22, 24, 28, 0.48) !important;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(18px) !important;
}

.lead-form,
.account-auth,
.account-guest-card,
.account-form-card,
.legal-card.account-auth {
  border-color: rgba(255, 255, 255, 0.12) !important;
  border-radius: 22px !important;
  background:
    linear-gradient(145deg, rgba(122, 220, 232, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(27, 29, 34, 0.74) !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(18px) !important;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.account-auth input,
.account-auth select,
.account-auth textarea,
.account-form-card input,
.account-form-card select,
.account-form-card textarea,
.marketplace-search,
.site-search input {
  background: rgba(18, 20, 24, 0.68) !important;
  border-color: rgba(255, 255, 255, 0.13) !important;
  color: #f7fbfc !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.account-auth input:focus,
.account-auth select:focus,
.account-auth textarea:focus,
.account-form-card input:focus,
.account-form-card select:focus,
.account-form-card textarea:focus,
.marketplace-search:focus,
.site-search input:focus {
  border-color: rgba(122, 220, 232, 0.34) !important;
  box-shadow:
    0 0 0 3px rgba(122, 220, 232, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  outline: none !important;
}

.lead-form .check-field,
.check-field,
.cart-form .check-field,
.account-auth .check-field {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr) !important;
  align-items: start !important;
  column-gap: 0.7rem !important;
  row-gap: 0 !important;
  line-height: 1.45 !important;
}

.lead-form .check-field input,
.check-field input,
.cart-form .check-field input,
.account-auth .check-field input {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  margin: 0.12rem 0 0 !important;
  accent-color: #7adce8 !important;
}

.lead-form .check-field span,
.check-field span,
.cart-form .check-field span,
.account-auth .check-field span {
  min-width: 0 !important;
  color: rgba(232, 238, 242, 0.78) !important;
}

.lead-form button[type="submit"],
.account-auth button[type="submit"],
.account-form-card button[type="submit"],
.auth-submit,
.login-submit,
.register-submit {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.18), rgba(255, 255, 255, 0.065)),
    rgba(26, 29, 34, 0.64) !important;
  border: 1px solid rgba(122, 220, 232, 0.28) !important;
  color: #f8fcfd !important;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.25),
    0 0 22px rgba(122, 220, 232, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
  text-shadow: 0 0 12px rgba(122, 220, 232, 0.16) !important;
}

.lead-form button[type="submit"]:hover,
.account-auth button[type="submit"]:hover,
.account-form-card button[type="submit"]:hover,
.auth-submit:hover,
.login-submit:hover,
.register-submit:hover {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(32, 36, 41, 0.72) !important;
  border-color: rgba(122, 220, 232, 0.42) !important;
}

.marketplace-searchbar,
.catalog-searchbar,
.beats-searchbar,
.search-shell,
.quick-search {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.065), rgba(255, 255, 255, 0.035)),
    rgba(22, 24, 28, 0.64) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  border-radius: 18px !important;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.marketplace-search::placeholder,
.site-search input::placeholder,
.lead-form input::placeholder,
.account-auth input::placeholder {
  color: rgba(184, 192, 200, 0.72) !important;
}

.package-card-bottom .package-price,
.package-price {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-self: stretch !important;
  min-height: 44px !important;
  width: 100% !important;
  padding: 0.62rem 0.9rem !important;
  text-align: center !important;
  border-radius: 14px !important;
}

.package-card-bottom,
.price-row.compact {
  display: grid !important;
  gap: 0.62rem !important;
  align-items: stretch !important;
}

.add-to-cart,
.package-add,
.beat-add-to-cart {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.2), rgba(255, 255, 255, 0.075)),
    rgba(24, 27, 32, 0.68) !important;
  border-color: rgba(122, 220, 232, 0.36) !important;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.26),
    0 0 24px rgba(122, 220, 232, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.13) !important;
}

.support-link,
.support-chat-toggle {
  border-radius: 999px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(122, 220, 232, 0.055)),
    rgba(27, 29, 34, 0.7) !important;
  border-color: rgba(255, 255, 255, 0.13) !important;
  color: rgba(247, 251, 252, 0.9) !important;
}

.account-hero-panel,
.account-panel,
.account-stats div,
.account-listing,
.account-alert {
  background:
    linear-gradient(145deg, rgba(122, 220, 232, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(27, 29, 34, 0.7) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.account-alert,
.status-rejected .account-listing-side > span,
.status-deleted .account-listing-side > span {
  background: rgba(48, 35, 40, 0.42) !important;
  border-color: rgba(255, 116, 116, 0.26) !important;
  color: #ffc7c7 !important;
}

.account-actions .primary-btn,
.account-actions .ghost-btn,
.account-panel-head .primary-btn,
.account-panel-head .ghost-btn,
.account-guest-actions a {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(27, 29, 34, 0.62) !important;
  border-color: rgba(122, 220, 232, 0.22) !important;
  color: #f7fbfc !important;
}

@media (max-width: 760px) {
  .topbar {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
  }

  .catalog-page,
  .marketplace-page,
  .account-page,
  .legal-page {
    padding-top: clamp(1rem, 4vw, 1.4rem) !important;
  }

  .product-modal,
  .cart-modal {
    padding-top: max(0.75rem, env(safe-area-inset-top)) !important;
  }

  .product-close,
  .cart-close,
  .modal-close,
  [data-close-modal] {
    top: max(0.75rem, env(safe-area-inset-top)) !important;
    z-index: 80 !important;
  }

  .contact {
    border-radius: 22px !important;
  }
}

/* v134: exact fixes for header search, quick search, account dashboard, support and checkboxes */
.site-search,
.site-search:focus-within {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(122, 220, 232, 0.045)),
    rgba(27, 29, 34, 0.46) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.site-search input,
.site-search input:focus {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

.catalog-search-row {
  border-color: rgba(255, 255, 255, 0.12) !important;
  border-radius: 20px !important;
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(23, 25, 30, 0.66) !important;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.catalog-search-row input,
.catalog-search-row input:focus,
.catalog-search {
  background: rgba(17, 19, 23, 0.64) !important;
  border-color: rgba(255, 255, 255, 0.13) !important;
  color: #f7fbfc !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.catalog-search-row input:focus,
.catalog-search:focus {
  border-color: rgba(122, 220, 232, 0.36) !important;
  box-shadow: 0 0 0 3px rgba(122, 220, 232, 0.08) !important;
}

.catalog-search-modes {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(17, 19, 23, 0.55) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.catalog-search-modes button {
  color: rgba(232, 238, 242, 0.72) !important;
}

.catalog-search-modes button.active,
.catalog-search-modes button:hover {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.16), rgba(255, 255, 255, 0.06)) !important;
  color: #f7fbfc !important;
  box-shadow: inset 0 0 0 1px rgba(122, 220, 232, 0.28) !important;
}

.account-dashboard-shell,
.account-phone-card,
.account-dashboard-content .account-panel,
.account-dashboard-content .account-stats div,
.account-workspace-title,
.account-order-card,
.account-dashboard-content .empty-cart,
.account-stat-placeholder,
.account-profile-block div,
.account-dashboard-nav a {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background:
    linear-gradient(145deg, rgba(122, 220, 232, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(26, 28, 33, 0.72) !important;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.account-dashboard-content .account-panel-head,
.account-workspace-title {
  background: transparent !important;
  box-shadow: none !important;
}

.account-workspace-title h1,
.account-dashboard-content h2,
.account-profile-title,
.account-nav-title {
  color: #f7fbfc !important;
  text-shadow: 0 0 18px rgba(122, 220, 232, 0.16) !important;
}

.account-section-tabs .primary-btn,
.account-section-tabs .ghost-btn,
.account-status-filter .ghost-btn,
.account-sidebar-close,
.account-sidebar-open,
.account-dashboard-nav a,
.account-phone-actions .primary-btn,
.account-phone-actions .ghost-btn {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(24, 27, 32, 0.64) !important;
  border-color: rgba(255, 255, 255, 0.13) !important;
  color: rgba(247, 251, 252, 0.86) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.account-section-tabs .primary-btn,
.account-section-tabs .active-track,
.account-status-filter .active-track,
.account-dashboard-nav a.active,
.account-dashboard-nav a:hover {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.18), rgba(255, 255, 255, 0.065)),
    rgba(31, 35, 40, 0.72) !important;
  border-color: rgba(122, 220, 232, 0.32) !important;
  color: #ffffff !important;
  transform: none !important;
}

.account-dashboard-nav span,
.account-soon-pill,
.account-sidebar-close,
.account-sidebar-open {
  background: rgba(122, 220, 232, 0.1) !important;
  color: #dff8fb !important;
  border-color: rgba(122, 220, 232, 0.22) !important;
}

.account-phone-actions .ghost-btn[href*="logout"],
.account-guest-actions .ghost-btn[href*="logout"],
a[href="/account/logout"] {
  background:
    linear-gradient(135deg, rgba(255, 116, 116, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(48, 33, 36, 0.72) !important;
  border-color: rgba(255, 116, 116, 0.36) !important;
  color: #ffe1e1 !important;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.account-phone-actions .ghost-btn[href*="logout"]:hover,
a[href="/account/logout"]:hover {
  background:
    linear-gradient(135deg, rgba(255, 116, 116, 0.26), rgba(255, 255, 255, 0.075)),
    rgba(58, 38, 41, 0.8) !important;
}

.support-chat {
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 999px !important;
  background: rgba(28, 30, 35, 0.7) !important;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(16px) !important;
}

.support-chat.open {
  border-radius: 24px !important;
  background: rgba(25, 27, 32, 0.74) !important;
}

.support-chat-toggle {
  width: 74px !important;
  height: 74px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(122, 220, 232, 0.07)),
    rgba(30, 33, 38, 0.86) !important;
  box-shadow: none !important;
}

.support-chat-toggle:hover {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.16), rgba(255, 255, 255, 0.07)),
    rgba(34, 37, 43, 0.92) !important;
  box-shadow: 0 0 20px rgba(122, 220, 232, 0.12) !important;
}

.support-chat-toggle strong,
.support-chat-toggle span {
  color: #f7fbfc !important;
  text-shadow: 0 0 12px rgba(122, 220, 232, 0.16) !important;
}

.support-chat-toggle.has-new {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.28), rgba(255, 255, 255, 0.08)),
    rgba(34, 38, 44, 0.94) !important;
  box-shadow:
    0 0 0 1px rgba(122, 220, 232, 0.34),
    0 0 26px rgba(122, 220, 232, 0.28) !important;
}

.support-chat-toggle.has-new::after {
  background: #7adce8 !important;
  box-shadow: 0 0 18px rgba(122, 220, 232, 0.62) !important;
}

.support-chat-panel,
.support-chat-hint,
.support-chat-hint::after {
  background:
    linear-gradient(145deg, rgba(122, 220, 232, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(25, 27, 32, 0.94) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34) !important;
}

.support-chat-form button,
.support-chat-form button:hover {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.18), rgba(255, 255, 255, 0.065)),
    rgba(28, 31, 36, 0.72) !important;
  border-color: rgba(122, 220, 232, 0.3) !important;
}

.cart-dialog,
.cart-item,
.empty-cart,
.cart-total,
.cart-form,
.cart-form .legal-actions a {
  background:
    linear-gradient(145deg, rgba(122, 220, 232, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(27, 29, 34, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(247, 251, 252, 0.86) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

.cart-old-price,
.cart-new-price,
.cart-total strong {
  color: #f7fbfc !important;
  text-shadow: 0 0 12px rgba(122, 220, 232, 0.12) !important;
}

label.check-field,
.lead-form label.check-field,
.cart-form label.check-field,
.account-auth label.check-field,
.legal-card.account-auth .lead-form label.check-field {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 0.7rem !important;
  width: 100% !important;
  text-align: left !important;
}

label.check-field input[type="checkbox"],
.lead-form label.check-field input[type="checkbox"],
.cart-form label.check-field input[type="checkbox"],
.account-auth label.check-field input[type="checkbox"] {
  flex: 0 0 18px !important;
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  margin: 0.15rem 0 0 !important;
  padding: 0 !important;
  accent-color: #7adce8 !important;
}

label.check-field span,
.lead-form label.check-field span,
.cart-form label.check-field span,
.account-auth label.check-field span {
  flex: 1 1 auto !important;
  display: block !important;
  min-width: 0 !important;
  margin: 0 !important;
  color: rgba(232, 238, 242, 0.78) !important;
}

/* v135: checkbox alignment, clean cyan forms, catalog/auth/account final pass */
.contact .lead-form {
  background: rgba(24, 27, 32, 0.82) !important;
  border: 1px solid rgba(122, 220, 232, 0.16) !important;
  border-radius: 24px !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.contact .lead-form label:not(.check-field),
.contact .legal-actions a {
  background: rgba(17, 19, 23, 0.68) !important;
  border: 1px solid rgba(255, 255, 255, 0.105) !important;
  border-radius: 16px !important;
  color: rgba(232, 238, 242, 0.78) !important;
}

.contact .lead-form input,
.contact .lead-form select,
.contact .lead-form textarea {
  background: rgba(12, 14, 18, 0.58) !important;
  border-color: rgba(122, 220, 232, 0.14) !important;
}

.check-field::before,
.check-field::after,
label.check-field::before,
label.check-field::after {
  display: none !important;
  content: none !important;
}

label.check-field,
.lead-form label.check-field,
.cart-form label.check-field,
.account-auth label.check-field,
.legal-card.account-auth .lead-form label.check-field {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr) !important;
  column-gap: 0.72rem !important;
  align-items: start !important;
  justify-items: stretch !important;
  min-height: 0 !important;
  padding: 0.88rem 0.92rem !important;
  border: 1px solid rgba(255, 255, 255, 0.105) !important;
  border-radius: 16px !important;
  background: rgba(17, 19, 23, 0.56) !important;
  color: rgba(232, 238, 242, 0.78) !important;
  line-height: 1.38 !important;
}

label.check-field input[type="checkbox"],
.lead-form label.check-field input[type="checkbox"],
.cart-form label.check-field input[type="checkbox"],
.account-auth label.check-field input[type="checkbox"],
.legal-card.account-auth .lead-form label.check-field input[type="checkbox"] {
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: start !important;
  justify-self: start !important;
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  margin: 0.08rem 0 0 !important;
  padding: 0 !important;
  accent-color: #7adce8 !important;
}

label.check-field span,
.lead-form label.check-field span,
.cart-form label.check-field span,
.account-auth label.check-field span,
.legal-card.account-auth .lead-form label.check-field span {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: start !important;
  display: block !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(232, 238, 242, 0.8) !important;
  font-size: 0.9rem !important;
  line-height: 1.38 !important;
  text-align: left !important;
}

.check-field a,
label.check-field a {
  color: #7adce8 !important;
  text-shadow: 0 0 10px rgba(122, 220, 232, 0.18) !important;
}

.catalog-switch {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.055), rgba(255, 255, 255, 0.03)),
    rgba(23, 25, 30, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  border-radius: 18px !important;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.catalog-switch a,
.catalog-switch a:first-child,
.catalog-switch a:hover {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(27, 30, 35, 0.68) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: rgba(247, 251, 252, 0.9) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.catalog-switch a:first-child,
.catalog-switch a:focus-visible {
  border-color: rgba(122, 220, 232, 0.3) !important;
}

.confirm-modal.video-choice-modal .confirm-backdrop,
.video-choice-modal .confirm-backdrop {
  background: rgba(8, 10, 13, 0.72) !important;
  backdrop-filter: blur(12px) !important;
}

.video-choice-modal .confirm-dialog {
  width: min(430px, calc(100vw - 2rem)) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(145deg, rgba(122, 220, 232, 0.065), rgba(255, 255, 255, 0.03)),
    rgba(25, 27, 32, 0.94) !important;
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  text-align: center !important;
}

.video-choice-modal .confirm-dialog h2,
.video-choice-modal .confirm-dialog p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.video-choice-modal [data-video-choice-message] {
  max-width: 320px !important;
  color: rgba(232, 238, 242, 0.76) !important;
}

.video-choice-actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.65rem !important;
  width: 100% !important;
}

.video-choice-actions .primary-btn,
.video-choice-actions .ghost-btn {
  min-width: 0 !important;
  width: 100% !important;
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.15), rgba(255, 255, 255, 0.055)),
    rgba(27, 30, 35, 0.72) !important;
  border-color: rgba(122, 220, 232, 0.22) !important;
}

.video-choice-actions .video-choice-cancel {
  grid-column: 1 / -1 !important;
  background: rgba(31, 33, 38, 0.7) !important;
}

.account-dashboard-page {
  background:
    radial-gradient(circle at 14% 18%, rgba(122, 220, 232, 0.055), transparent 30rem),
    linear-gradient(180deg, #101114 0%, #17191d 48%, #101114 100%) !important;
}

.account-dashboard-shell {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.account-phone-card {
  background:
    linear-gradient(145deg, rgba(122, 220, 232, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(25, 27, 32, 0.86) !important;
  border-color: rgba(255, 255, 255, 0.13) !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.account-section-tabs .primary-btn,
.account-section-tabs .ghost-btn,
.account-status-filter .ghost-btn,
.account-status-filter .active-track,
.account-dashboard-content .account-section-tabs a.primary-btn,
.account-dashboard-content .account-section-tabs a.ghost-btn,
.account-dashboard-content .account-status-filter a {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(27, 30, 35, 0.68) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(247, 251, 252, 0.88) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.account-section-tabs .primary-btn,
.account-status-filter .active-track,
.account-dashboard-content .account-section-tabs a.primary-btn {
  border-color: rgba(122, 220, 232, 0.32) !important;
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(31, 35, 40, 0.72) !important;
}

.legal-card.account-auth {
  background: rgba(23, 25, 30, 0.58) !important;
  border-color: rgba(255, 255, 255, 0.11) !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
  backdrop-filter: blur(18px) !important;
}

.legal-card.account-auth .lead-form {
  background: rgba(24, 27, 32, 0.72) !important;
  border-color: rgba(122, 220, 232, 0.13) !important;
}

.legal-card.account-auth .lead-form label:not(.check-field),
.legal-card.account-auth .account-legal-note,
.legal-card.account-auth .lead-form .ghost-btn {
  background: rgba(17, 19, 23, 0.5) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.legal-card.account-auth .lead-form button[type="submit"],
.legal-card.account-auth .lead-form .ghost-btn,
.legal-card.account-auth .lead-form button[type="submit"]:hover,
.legal-card.account-auth .lead-form .ghost-btn:hover {
  background:
    linear-gradient(135deg, rgba(122, 220, 232, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(27, 30, 35, 0.7) !important;
  border-color: rgba(122, 220, 232, 0.24) !important;
  color: #f7fbfc !important;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

@media (max-width: 640px) {
  .video-choice-modal .confirm-dialog {
    left: 50% !important;
    right: auto !important;
    width: min(360px, calc(100vw - 1.25rem)) !important;
    padding: 1rem !important;
    transform: translateX(-50%) !important;
  }

  .video-choice-actions {
    grid-template-columns: 1fr !important;
  }

  .video-choice-actions .video-choice-cancel {
    grid-column: auto !important;
  }
}


/* v136: desktop cleanup, checkbox lock, compact mobile header */
.nav-menu-toggle {
  display: none;
}

.contact .lead-form,
.legal-card.account-auth .lead-form,
.cart-form {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.contact .lead-form {
  padding: 0 !important;
  align-content: center !important;
}

.contact .lead-form label:not(.check-field),
.contact .legal-actions a,
.legal-card.account-auth .account-legal-note {
  border: 1px solid rgba(255, 255, 255, 0.11) !important;
  border-radius: 16px !important;
  background: rgba(17, 19, 23, 0.58) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

.contact .lead-form input,
.contact .lead-form select,
.contact .lead-form textarea {
  min-height: 32px !important;
  margin-top: 0.35rem !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.legal-card.account-auth {
  width: min(560px, 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.11) !important;
  background: rgba(23, 25, 30, 0.58) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25) !important;
}

.legal-card.account-auth .lead-form {
  padding: 0 !important;
}

.legal-card.account-auth .lead-form label:not(.check-field) {
  padding: 0.1rem 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.legal-card.account-auth .lead-form input {
  min-height: 48px !important;
  padding: 0 0.95rem !important;
  border: 1px solid rgba(255, 255, 255, 0.11) !important;
  border-radius: 14px !important;
  background: rgba(17, 19, 23, 0.58) !important;
}

label.check-field,
.lead-form label.check-field,
.cart-form label.check-field,
.account-auth label.check-field,
.legal-card.account-auth .lead-form label.check-field {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr) !important;
  align-items: start !important;
  column-gap: 0.72rem !important;
  padding: 0.72rem 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

label.check-field input[type="checkbox"],
.lead-form label.check-field input[type="checkbox"],
.cart-form label.check-field input[type="checkbox"],
.account-auth label.check-field input[type="checkbox"],
.legal-card.account-auth .lead-form label.check-field input[type="checkbox"] {
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: start !important;
  justify-self: start !important;
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 0.09rem 0 0 !important;
  padding: 0 !important;
  border-radius: 4px !important;
  accent-color: #7adce8 !important;
}

label.check-field span,
.lead-form label.check-field span,
.cart-form label.check-field span,
.account-auth label.check-field span,
.legal-card.account-auth .lead-form label.check-field span {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: start !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.38 !important;
}

#packages.package-panel {
  margin-bottom: clamp(0.9rem, 2vw, 1.4rem) !important;
}

#accounts.catalog-panel {
  margin-top: clamp(0.9rem, 2vw, 1.4rem) !important;
}

.catalog-toolbar,
.filter-row {
  overflow: visible !important;
}

.filter-row {
  align-items: center !important;
  padding-top: 0.2rem !important;
}

.filter-chip {
  min-height: 42px !important;
  padding: 0.54rem 0.82rem !important;
  line-height: 1.1 !important;
  overflow: visible !important;
}

.package-card-bottom,
.package-card-bottom.has-cart-shortcut,
.package-card-actions,
.price-row,
.price-row.compact,
.product-actions,
.cart-form,
.cart-total {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.package-card-bottom .package-price,
.package-price {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #f7fbfc !important;
}

.package-add,
.add-to-cart,
.beat-add-to-cart {
  min-height: 44px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #e6f1f3, #7adce8) !important;
  border: 0 !important;
  color: #111316 !important;
  text-shadow: none !important;
  box-shadow: 0 0 14px rgba(122, 220, 232, 0.22) !important;
}

.package-add:hover,
.add-to-cart:hover,
.beat-add-to-cart:hover,
.package-add.added,
.add-to-cart.added,
.beat-add-to-cart.added {
  background: linear-gradient(135deg, #ffffff, #9eeaf1) !important;
  color: #111316 !important;
}

.cart-dialog {
  background: rgba(24, 27, 32, 0.96) !important;
}

.cart-form label:not(.check-field) {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.cart-form input {
  background: rgba(17, 19, 23, 0.58) !important;
  border-color: rgba(255, 255, 255, 0.11) !important;
}

.account-dashboard-page,
.account-panel,
.account-stats div,
.account-dashboard-content .account-panel,
.account-dashboard-content .account-stats div,
.account-workspace-title,
.account-stat-placeholder,
.account-order-card,
.account-dashboard-nav a,
.account-phone-card {
  background: rgba(24, 27, 32, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.11) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

.account-dashboard-page {
  background: #101114 !important;
}

.account-dashboard-shell,
.account-dashboard-content .account-panel-head,
.account-workspace-title {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.account-section-tabs .primary-btn,
.account-section-tabs .ghost-btn,
.account-status-filter .ghost-btn,
.account-status-filter .active-track,
.account-dashboard-content .account-section-tabs a.primary-btn,
.account-dashboard-content .account-section-tabs a.ghost-btn,
.account-dashboard-content .account-status-filter a,
.account-dashboard-nav a.active,
.account-dashboard-nav a:hover {
  background: rgba(27, 30, 35, 0.76) !important;
  border-color: rgba(122, 220, 232, 0.24) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

@media (max-width: 760px) {
  .topbar {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(72px, auto) auto auto !important;
    align-items: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding: max(0.55rem, env(safe-area-inset-top)) 0.75rem 0.55rem !important;
    overflow: visible !important;
    transform: translateY(0) !important;
    transition: transform 0.22s ease !important;
  }

  body.modal-scroll-lock .topbar {
    transform: translateY(-110%) !important;
    pointer-events: none !important;
  }

  .nav-menu-toggle {
    grid-column: 3 !important;
    display: inline-grid !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    place-items: center !important;
    gap: 4px !important;
    padding: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.13) !important;
    border-radius: 999px !important;
    background: rgba(27, 30, 35, 0.78) !important;
    color: #f7fbfc !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  }

  .nav-menu-toggle span {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: currentColor !important;
  }

  .topbar .brand {
    grid-column: 1 !important;
    min-height: 42px !important;
  }

  .topbar .cart-float {
    grid-column: 2 !important;
    justify-self: end !important;
    min-width: 44px !important;
    width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    border-radius: 50% !important;
  }

  .topbar .cart-label {
    display: none !important;
  }

  .topbar .cart-icon {
    display: none !important;
  }

  .topbar .cart-count {
    position: static !important;
    min-width: 26px !important;
    height: 26px !important;
  }

  .site-search,
  .topbar nav,
  .nav-actions {
    display: none !important;
  }

  body.mobile-nav-open .topbar {
    grid-template-columns: minmax(72px, 1fr) auto !important;
  }

  body.mobile-nav-open .nav-menu-toggle {
    grid-column: 2 !important;
  }

  body.mobile-nav-open .site-search,
  body.mobile-nav-open .topbar nav,
  body.mobile-nav-open .nav-actions {
    grid-column: 1 / -1 !important;
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  body.mobile-nav-open .site-search {
    order: 3 !important;
  }

  body.mobile-nav-open .topbar nav {
    order: 4 !important;
    flex-wrap: wrap !important;
    overflow: visible !important;
    gap: 0.45rem !important;
    padding: 0.15rem 0 !important;
  }

  body.mobile-nav-open .topbar nav a {
    flex: 1 1 calc(50% - 0.45rem) !important;
    justify-content: center !important;
    min-height: 38px !important;
    padding: 0.48rem 0.5rem !important;
  }

  body.mobile-nav-open .nav-actions {
    order: 5 !important;
    flex-wrap: wrap !important;
    gap: 0.45rem !important;
  }

  body.mobile-nav-open .nav-actions > * {
    flex: 1 1 calc(50% - 0.45rem) !important;
    min-width: 0 !important;
  }

  .catalog-hero,
  .marketplace-hero,
  .beats-hero {
    min-height: 56svh !important;
  }

  .filter-row {
    padding-top: 0.35rem !important;
  }
}


/* v136.1: keep mobile cart visible while menu is collapsed */
@media (max-width: 760px) {
  .topbar .nav-actions {
    display: contents !important;
  }

  .topbar .nav-actions > :not(.cart-float) {
    display: none !important;
  }

  .topbar .cart-float {
    display: inline-flex !important;
  }

  body.mobile-nav-open .topbar {
    grid-template-columns: minmax(72px, 1fr) auto auto !important;
  }

  body.mobile-nav-open .nav-menu-toggle {
    grid-column: 3 !important;
  }

  body.mobile-nav-open .nav-actions {
    grid-column: 1 / -1 !important;
    display: flex !important;
  }

  body.mobile-nav-open .nav-actions > * {
    display: inline-flex !important;
  }

  body.mobile-nav-open .topbar .cart-float {
    grid-column: auto !important;
  }
}


/* v137: remove extra dark boxes from the lead form */
.contact > .lead-form,
.contact .lead-form,
.contact .lead-form:focus-within {
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.contact .lead-form > label,
.contact .lead-form > label:not(.check-field),
.contact .lead-form label.check-field,
.contact .lead-form .check-field,
.contact .lead-form .form-note {
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.contact .lead-form > label:not(.check-field) {
  display: grid !important;
  gap: 0.42rem !important;
  color: rgba(232, 238, 242, 0.82) !important;
}

.contact .lead-form input:not([type="checkbox"]),
.contact .lead-form select,
.contact .lead-form textarea {
  min-height: 48px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 0.95rem !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 14px !important;
  background: rgba(9, 11, 15, 0.22) !important;
  box-shadow: none !important;
  color: #f7fbfc !important;
}

.contact .lead-form input:not([type="checkbox"]):focus,
.contact .lead-form select:focus,
.contact .lead-form textarea:focus {
  border-color: rgba(122, 220, 232, 0.34) !important;
  background: rgba(9, 11, 15, 0.14) !important;
  box-shadow: 0 0 0 3px rgba(122, 220, 232, 0.07) !important;
}

.contact .lead-form .legal-actions a {
  background: transparent !important;
  box-shadow: none !important;
}

.contact .lead-form label.check-field,
.contact .lead-form .check-field {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr) !important;
  align-items: start !important;
  column-gap: 0.72rem !important;
  padding: 0.12rem 0 !important;
  line-height: 1.38 !important;
}

.contact .lead-form label.check-field input[type="checkbox"] {
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 0.08rem 0 0 !important;
  padding: 0 !important;
}

.contact .lead-form label.check-field span {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.38 !important;
}


/* v175: compact Full HD header with an independent right-side cart drawer */
@media (min-width: 1181px) and (max-width: 2100px) {
  .topbar {
    top: max(8px, env(safe-area-inset-top)) !important;
    width: min(calc(100% - 24px), 1220px) !important;
    min-height: 62px !important;
    grid-template-columns: 72px minmax(176px, 250px) minmax(0, 1fr) 294px !important;
    gap: 0.42rem !important;
    padding: 0.4rem 0.52rem !important;
  }
  .topbar .brand, .topbar .site-search, .topbar nav, .topbar .support-link,
  .topbar .account-link, .topbar .nav-cta, .topbar .cart-float {
    min-height: 44px !important;
    height: 44px !important;
  }
  .topbar nav { font-size: 0.8rem !important; }
  .topbar nav a { min-height: 34px !important; padding-inline: clamp(0.4rem, 0.55vw, 0.62rem) !important; }
  .topbar .site-search { padding-inline: 0.72rem !important; }
  .topbar .site-search input, .topbar .support-link, .topbar .account-link, .topbar .nav-cta { font-size: 0.8rem !important; }
  .topbar .nav-actions { width: 294px !important; gap: 0.3rem !important; }
  .topbar .support-link { min-width: 82px !important; padding-inline: 0.56rem !important; }
  .topbar .account-link { min-width: auto !important; max-width: none !important; }
  .topbar .nav-cta { min-width: 78px !important; max-width: 84px !important; padding-inline: 0.62rem !important; }
  .topbar .cart-float { width: 44px !important; min-width: 44px !important; max-width: 44px !important; height: 44px !important; border-radius: 50% !important; }
  .hero-content { margin-top: 7.4rem !important; }
  .cart-modal { justify-content: flex-end !important; align-items: flex-start !important; padding: 76px 18px 18px !important; }
  .cart-dialog { width: min(460px, calc(100vw - 36px)) !important; max-height: calc(100vh - 94px) !important; margin: 0 !important; }
}


/* v176: align the desktop cart drawer with the compact header */
@media (min-width: 1181px) and (max-width: 2100px) {
  .cart-modal {
    padding: max(8px, env(safe-area-inset-top)) 18px 18px !important;
  }

  .cart-dialog {
    top: max(12px, env(safe-area-inset-top)) !important;
    right: 18px !important;
    bottom: 18px !important;
    left: auto !important;
    max-height: none !important;
  }
}


/* v177: catalog skeleton loader and lazy media polish */
.catalog-loading-layer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  place-items: center;
  background: radial-gradient(circle at 50% 18%, rgba(105, 237, 255, 0.13), transparent 32%), rgba(8, 10, 14, 0.74);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  pointer-events: none;
}
.catalog-is-loading .catalog-loading-layer {
  display: grid;
}
.catalog-loader-card {
  width: min(320px, calc(100vw - 42px));
  border: 1px solid rgba(105, 237, 255, 0.24);
  border-radius: 30px;
  padding: 1.35rem;
  text-align: center;
  color: #f5fbff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42), 0 0 42px rgba(105, 237, 255, 0.12);
}
.catalog-loader-card span {
  display: block;
  width: 74px;
  height: 74px;
  margin: 0 auto 0.9rem;
  border-radius: 24px;
  background: linear-gradient(110deg, rgba(255,255,255,0.08) 8%, rgba(105,237,255,0.34) 28%, rgba(255,255,255,0.08) 48%);
  background-size: 220% 100%;
  animation: catalogShimmer 1.08s ease-in-out infinite;
}
.catalog-loader-card strong,
.catalog-loader-card small {
  display: block;
}
.catalog-loader-card small {
  margin-top: 0.3rem;
  color: rgba(245, 251, 255, 0.62);
}
.blogger-video video.catalog-lazy-video:not([src]) {
  background: linear-gradient(110deg, rgba(255,255,255,0.045) 8%, rgba(105,237,255,0.16) 28%, rgba(255,255,255,0.045) 48%);
  background-size: 220% 100%;
  animation: catalogShimmer 1.2s ease-in-out infinite;
}
@keyframes catalogShimmer {
  0% { background-position: 180% 0; }
  100% { background-position: -80% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .catalog-loader-card span,
  .blogger-video video.catalog-lazy-video:not([src]) {
    animation: none;
  }
}
