* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #f8f6f1;
  color: #17131d;
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid #ffb33c;
  outline-offset: 2px;
}

.topbar {
  background: #120c18;
  color: rgba(255, 248, 239, .68);
  font-size: 12.5px;
}
.topbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 9px clamp(18px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-inner p { display: flex; align-items: center; gap: 8px; margin: 0; font-weight: 700; }
.topbar-icon { flex: 0 0 auto; color: #ffb33c; }
.topbar-account { display: inline-flex; align-items: center; gap: 6px; flex: 0 0 auto; color: #fff8ef; font-weight: 800; transition: color .15s ease; }
.topbar-account:hover { color: #ffb33c; }

.mainnav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fffdf9;
  border-bottom: 1px solid #ece5d6;
}
.mainnav-inner {
  max-width: 1120px;
  margin: 0 auto;
  min-height: 76px;
  padding: 0 clamp(18px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 28px;
}
.mainnav .brand { color: #17131d; }
.mainnav .brand span { box-shadow: 0 0 10px rgba(255, 179, 60, .55); }
.mainnav .nav-menu { display: contents; }
.mainnav .nav-links { flex: 1; justify-content: center; color: #504b5e; }
.mainnav .nav-links a { transition: color .15s ease; }
.mainnav .nav-links a:hover { color: #d9472f; }
.mainnav .quote { display: none; }
.nav-item { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 800;
  font-size: 14px;
  color: inherit;
  cursor: pointer;
  transition: color .15s ease;
}
.chevron { transition: transform .15s ease; }
.nav-item.is-open .chevron { transform: rotate(180deg); }
.mainnav .nav-dropdown-toggle:hover,
.nav-item.is-open .nav-dropdown-toggle { color: #d9472f; }
.dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  padding: 8px;
  flex-direction: column;
  gap: 2px;
  border-radius: 16px;
  background: #fffdf9;
  border: 1px solid #ece5d6;
  box-shadow: 0 20px 44px rgba(15, 14, 22, .14);
  z-index: 40;
}
.nav-item.is-open .dropdown-panel { display: flex; }
.dropdown-panel a {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #3a3548;
  transition: background-color .15s ease, color .15s ease;
}
.dropdown-panel a:hover { background: #f6f1e6; color: #d9472f; }
.mainnav-actions { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #17131d;
  color: #fff8ef;
  font-weight: 900;
  font-size: 14px;
  transition: background-color .15s ease, transform .15s ease;
}
.cart-btn:hover { background: #2c2636; }
.cart-btn:active { transform: scale(.96); }
.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ffb33c;
  color: #17131d;
  font-size: 12px;
  font-weight: 900;
}

.hero {
  padding: clamp(48px, 7vw, 84px) clamp(18px, 4vw, 64px) 84px;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 179, 60, .16), transparent 24%),
    radial-gradient(circle at 14% 74%, rgba(116, 55, 182, .24), transparent 28%),
    #120c18;
  color: #fff8ef;
}
.hero-grid, .section, .split, .footer > div, .footer > p {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff8ef;
  font-weight: 900;
  text-transform: uppercase;
}
.brand span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffb33c;
  box-shadow: 0 0 14px rgba(255, 179, 60, .9);
}
.brand strong { color: #ffb33c; }
.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #e4ddcc;
  border-radius: 12px;
  background: #f6f1e6;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #17131d;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-menu { display: contents; }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 14px;
  font-weight: 800;
}
.quote, .btn, .cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .15s ease, opacity .15s ease, background-color .15s ease;
}
.quote:hover, .primary:hover { background: #ffc463; }
.ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); }
.cart:hover { background: #1c1e1e; }
.quote:active, .btn:active, .cart:active { transform: scale(.97); }
.quote, .primary {
  background: #ffb33c;
  color: #120c18;
  padding: 0 24px;
}
.ghost {
  border: 1px solid rgba(255,255,255,.14);
  color: #fff8ef;
  padding: 0 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .74fr);
  gap: clamp(42px, 8vw, 132px);
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: #ffb33c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #d9472f; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(52px, 6vw, 72px);
  line-height: .95;
}
h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1; }
.lead {
  max-width: 560px;
  color: #cdbff2;
  font-size: 20px;
  line-height: 1.65;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.stats { display: flex; flex-wrap: wrap; gap: 38px; margin-top: 58px; }
.stats strong, .stats span { display: block; }
.stats strong { color: #fff8ef; font-size: 28px; }
.stats span { color: #cdbff2; font-size: 14px; margin-top: 9px; }
.player-card {
  padding: 48px 32px 44px;
  border: 1px solid #44325f;
  border-radius: 18px;
  background: #281d39;
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
}
.player-card p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d5c6ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.live-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ffb33c;
  box-shadow: 0 0 10px rgba(255, 179, 60, .9);
  animation: live-pulse 1.6s ease-in-out infinite;
}
.player-card h2 { color: #fff8ef; font-size: 21px; margin-bottom: 30px; }
.wave { height: 112px; display: flex; align-items: center; gap: 7px; }
.wave i {
  flex: 1;
  max-width: 6px;
  min-height: 22px;
  border-radius: 999px;
  background: linear-gradient(#ffb33c, #ff695d);
  transform-origin: center;
  animation: wave-pulse 1.1s ease-in-out infinite;
}
.wave i:nth-child(2n) { height: 75%; animation-duration: 1.3s; animation-delay: -.15s; }
.wave i:nth-child(3n) { height: 44%; animation-duration: .85s; animation-delay: -.3s; }
.wave i:nth-child(5n) { height: 96%; animation-duration: 1.5s; animation-delay: -.45s; }
.wave i:nth-child(7n) { animation-delay: -.6s; }
.wave i:nth-child(11n) { animation-duration: 1.6s; animation-delay: -.75s; }

.process-card {
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 26px 70px rgba(8, 10, 22, .26);
  color: #081426;
}
.process-window {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 4px 12px;
}
.window-dots {
  display: flex;
  gap: 8px;
}
.window-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.window-dots span:nth-child(1) { background: #ff4d45; }
.window-dots span:nth-child(2) { background: #ffbd38; }
.window-dots span:nth-child(3) { background: #28c76f; }
.process-window strong {
  color: #081426;
  font-size: 13px;
  letter-spacing: .02em;
}
.process-wave {
  height: 150px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 48%, rgba(127, 191, 255, .18), transparent 32%),
    linear-gradient(135deg, #111b35, #162a5c);
}
.process-wave span {
  display: block;
  width: 8px;
  min-height: 34px;
  border-radius: 999px;
  background: linear-gradient(#f4fbff, #89bfff);
  box-shadow: 0 0 20px rgba(137, 191, 255, .38);
}
.process-wave span:nth-child(2n) { height: 62px; }
.process-wave span:nth-child(3n) { height: 78px; }
.process-wave span:nth-child(5n) { height: 96px; }
.process-wave span:nth-child(7n) { height: 50px; }
.process-steps {
  display: grid;
  gap: 12px;
}
.process-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #e6eaf1;
  border-radius: 18px;
  background: #fbfcfe;
}
.process-step > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #eef2f7;
  color: #0e1a2c;
  font-weight: 900;
  font-size: 13px;
}
.process-step.active > span {
  background: #2f6ced;
  color: white;
}
.process-step h2 {
  margin: 0 0 4px;
  color: #081426;
  font-size: 17px;
  line-height: 1.2;
}
.process-step p {
  margin: 0;
  color: #607084;
  font-size: 14px;
  line-height: 1.35;
}
.process-footer {
  margin-top: 20px;
  min-height: 80px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 20px;
  background: #0d1730;
  color: white;
}
.process-footer span,
.process-footer strong {
  display: block;
}
.process-footer span {
  color: #b7c0d3;
  font-size: 13px;
  font-weight: 800;
}
.process-footer strong {
  margin-top: 6px;
  font-size: 17px;
}
.process-footer a {
  color: white;
  font-size: 17px;
  font-weight: 900;
}

@keyframes live-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: .55; }
}
@keyframes wave-pulse {
  0%, 100% { transform: scaleY(.5); opacity: .85; }
  50% { transform: scaleY(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .wave i, .live-dot { animation: none; }
}

.section, .split { padding: 92px clamp(18px, 4vw, 64px); }
.section-lead, .split p { color: #62646a; font-size: 18px; line-height: 1.7; }
.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-top: 36px;
}
.product { background: #f8f8f6; color: #303030; transition: box-shadow .18s ease, transform .18s ease; }
.product:hover { box-shadow: 0 20px 44px rgba(15,14,22,.12); transform: translateY(-3px); }
.cover {
  position: relative;
  display: grid;
  place-content: center;
  gap: 12px;
  aspect-ratio: 1;
  overflow: hidden;
  color: white;
  text-align: center;
  padding: 22px;
}
.cover b {
  position: absolute;
  top: 0;
  left: 0;
  background: #b10868;
  padding: 7px 10px;
  font-size: 13px;
}
.cover strong { font-size: clamp(34px, 4vw, 48px); line-height: .9; text-transform: uppercase; }
.cover span { font-size: 12px; font-weight: 900; text-transform: uppercase; }
.grand { background: radial-gradient(circle at 50% 78%, #ffd23d, transparent 12%), linear-gradient(160deg, #050505, #192e5b 46%, #020202); }
.custom { background: radial-gradient(circle at 48% 48%, #ff74bc, transparent 32%), linear-gradient(145deg, #26003f, #7437b6 45%, #081054); }
.sexy { background: radial-gradient(circle at 54% 54%, #ff2577, transparent 24%), linear-gradient(150deg, #060606, #1a020d 58%, #000); }
.seductive { background: radial-gradient(circle at 76% 18%, #ff1e42, transparent 28%), linear-gradient(140deg, #160609, #9c221f 48%, #050505); }
.dynamic-cover {
  background-size: cover;
  background-position: center;
}
.dynamic-cover:not([style]) {
  background: linear-gradient(145deg, #071226, #1557df);
}
.audio {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 12px;
  background: #282828;
}
.audio button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #3a3a3a;
  transition: background-color .15s ease;
}
.audio button:hover { background: #4c4c4c; }
.audio span { height: 7px; background: #666; }
.audio span i { display: block; height: 100%; width: 76%; background: #ffd323; }
.audio time { color: #ffd323; font-size: 12px; font-weight: 900; }
.product h3 { font-size: 17px; line-height: 1.45; margin: 16px 0 8px; }
.stars { color: #ff9800; border-bottom: 1px solid #ddd; padding-bottom: 14px; }
.stars em { color: #454545; font-style: normal; }
.price { font-size: 22px; font-weight: 900; }
.price del { color: #676767; font-size: 14px; font-weight: 400; margin-left: 8px; }
.product h3, .stars, .price, .cart { margin-left: 0; margin-right: 0; }
.cart { min-height: 44px; background: #282a2a; color: #ffde00; }

.voices-section {
  padding: 88px clamp(18px, 4vw, 64px);
  background: #f7f8fb;
}
.voices-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.voices-header h2 {
  margin-bottom: 14px;
  color: #080a12;
}
.voices-header p:last-child {
  margin: 0 auto;
  color: #8b91a2;
  font-size: 16px;
  line-height: 1.65;
}
.voice-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}
.voice-card {
  text-align: center;
}
.voice-photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 3px solid #cfe1ff;
  border-radius: 14px;
  background: #17131d;
  box-shadow: 0 18px 44px rgba(16, 20, 35, .12);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.voice-photo.female {
  border-color: #ffd0e2;
}
.voice-card:hover .voice-photo {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(16, 20, 35, .18);
  border-color: #ffb33c;
}
.voice-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.voice-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(18,12,24,.2));
  pointer-events: none;
}
.voice-photo button {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: #e3315b;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
}
.voice-photo.is-playing button {
  background: linear-gradient(135deg, #37bdf2, #1e5ee8);
  color: #fff;
}
.voice-photo button[aria-disabled="true"] {
  opacity: .72;
  cursor: default;
}
.voice-card h3 {
  margin: 16px 0 0;
  color: #080a12;
  font-size: 16px;
}
.voice-card h3 span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-left: 4px;
  border-radius: 50%;
  background: #e9f1ff;
  color: #4c82ff;
  font-size: 12px;
}
.voice-card.female-voice h3 span {
  background: #ffe8f2;
  color: #f05a9a;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
}
.demo-list { display: grid; gap: 12px; }
.demo-list button {
  min-height: 68px;
  border: 1px solid #dfd8cc;
  border-radius: 14px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.demo-list button:hover,
.demo-list button:focus-visible { border-color: #d9472f; box-shadow: 0 8px 20px rgba(15,14,22,.06); }
.demo-list i {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #171f25;
  color: #ffb33c;
  font-style: normal;
  font-size: 12px;
}
.demo-list span { flex: 1; text-align: left; }
.demo-list small { color: #8a8f97; font-weight: 700; }
.cta {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 64px);
}
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 52px clamp(24px, 5vw, 64px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .08);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 179, 60, .2), transparent 32%),
    radial-gradient(circle at 8% 88%, rgba(116, 55, 182, .32), transparent 34%),
    #18101f;
  color: #fff8ef;
  box-shadow: 0 30px 70px rgba(10, 6, 16, .28);
}
.cta-text p:last-child { max-width: 460px; margin-top: 12px; color: rgba(255, 248, 239, .68); font-size: 18px; line-height: 1.6; }
.cta-btn { flex: 0 0 auto; gap: 6px; }
.cta-btn span { display: inline-block; transition: transform .15s ease; }
.cta-btn:hover span { transform: translateX(4px); }

.footer {
  position: relative;
  margin-top: 92px;
  padding: 60px clamp(18px, 4vw, 64px) 0;
  background:
    radial-gradient(circle at 86% 0%, rgba(255, 179, 60, .12), transparent 30%),
    radial-gradient(circle at 8% 100%, rgba(116, 55, 182, .22), transparent 34%),
    #120c18;
  color: #cdbff2;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffb33c, #7437b6, transparent);
}
.footer-top {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer-brand p { max-width: 300px; margin-top: 16px; color: #a79cc9; font-size: 14px; line-height: 1.7; }
.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer-col h3 {
  margin-bottom: 4px;
  color: #fff8ef;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-col a { color: #cdbff2; transition: color .15s ease; }
.footer-col a:hover { color: #ffb33c; }
.footer-note { color: #8a80ad; font-size: 13px; }
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding: 22px 0 28px;
  color: #8a80ad;
  font-size: 12px;
}

.order-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 9% 12%, rgba(50, 184, 238, .12), transparent 26%),
    linear-gradient(180deg, #f7fbff 0%, #eef4fb 100%);
  color: #071936;
}
.order-nav, .order-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(18px, 3vw, 30px);
  padding-right: clamp(18px, 3vw, 30px);
}
.order-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(247, 251, 255, .86);
  backdrop-filter: blur(18px);
  transition: min-height .2s ease, box-shadow .2s ease;
}
.order-nav.is-compact { min-height: 64px; box-shadow: 0 12px 28px rgba(7, 25, 54, .08); }
.order-brand .brand-wordmark { max-width: 220px; }
.back { background: #071936; color: white; border-radius: 999px; padding: 12px 18px; font-weight: 900; }
.order-shell {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(440px, 1fr);
  gap: 32px;
  align-items: start;
  padding-top: 26px;
  padding-bottom: 64px;
}
.order-product-card, .order-form-card {
  min-width: 0;
}
.order-product-card {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 96px;
}
.order-product-media {
  min-height: 304px;
  border-radius: 24px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 55% 72%, rgba(49, 189, 239, .42), transparent 28%),
    linear-gradient(135deg, #071936, #103d76 54%, #020814);
  color: white;
  box-shadow: 0 28px 60px rgba(7, 25, 54, .16);
}
.order-product-media.has-image { background-size: cover; background-position: center; text-shadow: 0 12px 32px rgba(0,0,0,.62); }
.order-product-media span {
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.order-product-media strong {
  max-width: 92%;
  font-size: clamp(42px, 6vw, 74px);
  line-height: .88;
  text-transform: uppercase;
}
.order-demo-card, .order-benefits div, .order-form-card, .order-panel {
  background: rgba(255,255,255,.94);
  border: 1px solid #dbe6f4;
  box-shadow: 0 22px 54px rgba(15, 32, 58, .08);
}
.order-demo-card {
  border-radius: 22px;
  padding: 22px 16px 18px;
}
.order-card-label {
  color: #2261e8;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.order-demo-card h2 { margin: 6px 0 14px; color: #101b34; font-size: 20px; }
.order-studio-player {
  min-height: 94px;
  display: grid;
  grid-template-columns: 58px minmax(0,1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid #d7e4f6;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}
.order-studio-player.is-disabled { opacity: .7; }
.order-player-play {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ff7b21, #ff4d12);
  color: white;
  box-shadow: 0 12px 24px rgba(255, 86, 22, .22);
  cursor: pointer;
}
.order-player-play:disabled { cursor: not-allowed; filter: grayscale(.25); }
.order-player-play .pause-icon, .order-studio-player.is-playing .order-player-play .play-icon { display: none; }
.order-studio-player.is-playing .order-player-play .pause-icon { display: block; }
.order-player-body { min-width: 0; }
.order-player-top { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.order-player-top span { color: #65728b; font-size: 12px; font-weight: 800; }
.order-player-top strong { color: #8b95ab; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; white-space: nowrap; }
.order-player-progress {
  position: relative;
  width: 100%;
  height: 38px;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  background: repeating-linear-gradient(90deg, transparent 0 8px, rgba(19, 43, 82, .06) 8px 9px);
  cursor: pointer;
}
.order-player-progress > span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, rgba(255,123,33,.18), rgba(255,77,18,.08));
}
.order-player-wave {
  position: absolute;
  inset: 5px 0;
  display: flex;
  align-items: end;
  gap: 3px;
}
.order-player-wave i {
  width: 4px;
  height: 18px;
  border-radius: 99px 99px 0 0;
  background: #7f91aa;
  opacity: .72;
}
.order-player-wave i:nth-child(3n) { height: 24px; }
.order-player-wave i:nth-child(4n) { height: 30px; }
.order-player-wave i:nth-child(5n) { height: 14px; }
.order-player-wave i.is-elapsed { background: linear-gradient(180deg, #ff9b28, #ff4f15); opacity: 1; }
.order-studio-player.is-playing .order-player-wave i { animation: clientEqualizer 1s ease-in-out infinite; animation-delay: calc(var(--bar-index, 1) * -35ms); }
.order-player-times { display: flex; justify-content: space-between; color: #4f5f7c; font-weight: 900; font-size: 13px; }
.order-benefits { display: grid; gap: 10px; }
.order-benefits div {
  border-radius: 18px;
  padding: 14px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 2px 12px;
}
.order-benefits b { grid-row: span 2; width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: #eef6ff; color: #1d62e8; }
.order-benefits strong { color: #101b34; }
.order-benefits span { color: #6a7892; }
.order-form-card {
  overflow: hidden;
  border-radius: 28px;
  padding: 28px 22px 0;
}
.order-heading p {
  margin: 0 0 8px;
  color: #2261e8;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.order-heading h1 {
  margin: 0;
  color: #061738;
  font-size: clamp(38px, 5vw, 58px);
  line-height: .94;
  letter-spacing: 0;
}
.order-heading span { display: block; margin-top: 10px; color: #60708b; }
.order-price-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(100deg,#edf4ff,#f8f2ff);
}
.order-price-strip span { display: block; color: #66758f; font-size: 12px; }
.order-price-strip strong { color: #071936; font-size: 28px; }
.order-price-strip em { color: #64728d; font-size: 13px; font-style: normal; }
.order-panel {
  display: grid;
  gap: 16px;
  border-radius: 22px;
  margin-top: 16px;
  padding: 20px 16px 98px;
}
.order-step-title { display: flex; gap: 14px; align-items: center; }
.order-step-title > span { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, #32b9ee, #1e5de8); color: white; font-weight: 950; }
.order-step-title h2 { font-size: 20px; margin: 0 0 2px; color: #071936; }
.order-step-title p { margin: 0; color: #65728b; }
.order-field { display: grid; gap: 8px; color: #071936; font-size: 14px; font-weight: 900; }
.order-field small { color: #64728d; font-weight: 500; line-height: 1.35; }
.order-field input, .order-field select, .order-field textarea { width: 100%; min-height: 50px; border: 1px solid #cfd8e6; border-radius: 14px; padding: 12px 14px; background: white; color: #23304a; font: inherit; font-weight: 600; }
.order-field textarea { min-height: 92px; resize: vertical; }
.order-cols { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.order-radio-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.order-radio-grid label {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #cfd8e6;
  border-radius: 14px;
  background: white;
  font-weight: 900;
}
.order-radio-grid label:has(input:checked) { border-color: #2261e8; background: #edf5ff; box-shadow: inset 0 0 0 1px #2261e8; }
.order-radio-grid b { display: block; color: #2261e8; font-size: 12px; }
.order-zone { max-width: calc(50% - 6px); }
.order-checkout {
  position: sticky;
  bottom: 0;
  z-index: 5;
  margin: -78px -22px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(135deg, #32b9ee, #1d56df);
  color: white;
  box-shadow: 0 -18px 48px rgba(29, 86, 223, .22);
}
.order-checkout span { font-size: 13px; }
.order-checkout strong { display: block; font-size: 34px; line-height: 1; }
.order-checkout small { display: block; margin-top: 8px; font-weight: 800; }
.order-checkout button { min-height: 50px; border: 0; border-radius: 17px; background: white; color: #1f5ddd; font-weight: 950; padding: 0 26px; cursor: pointer; }

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .mainnav .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 10px;
    padding: 16px clamp(18px, 4vw, 64px) 20px;
    background: #fffdf9;
    border-bottom: 1px solid #ece5d6;
    box-shadow: 0 18px 30px rgba(15, 14, 22, .08);
  }
  .mainnav { position: sticky; }
  .mainnav-inner { position: relative; }
  .mainnav .nav-menu.is-open { display: flex; }
  .mainnav .nav-links { flex-direction: column; gap: 4px; }
  .mainnav .nav-links a { padding: 10px 4px; border-radius: 10px; }
  .mainnav .nav-links a:hover { background: #f6f1e6; }
  .nav-item { position: static; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 10px 4px; border-radius: 10px; }
  .nav-dropdown-toggle:hover { background: #f6f1e6; }
  .dropdown-panel {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 2px;
    padding: 4px 4px 4px 14px;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .mainnav .quote { display: flex; margin-top: 4px; }
  .hero-grid, .split, .order-page { grid-template-columns: 1fr; }
  .products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .voice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cta-card { flex-direction: column; align-items: flex-start; }
  .cta-btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .hero { min-height: auto; padding: 40px 14px 28px; background: linear-gradient(#120c18,#170f22 58%,#f8f6f1 58%); }
  .topbar-inner { padding: 8px 14px; }
  .topbar-inner p span { display: none; }
  .topbar-account span { display: none; }
  .mainnav-inner { padding: 0 14px; min-height: 64px; gap: 14px; }
  .cart-label { display: none; }
  .cart-btn { padding: 0 12px; gap: 6px; min-height: 40px; }
  .menu-toggle { width: 40px; height: 40px; }
  .mainnav .nav-menu { padding-left: 14px; padding-right: 14px; }
  .quote { width: 100%; min-height: 46px; padding: 0 16px; font-size: 14px; }
  .hero-grid { border: 1px solid rgba(255,255,255,.09); border-radius: 30px; background: linear-gradient(180deg, rgba(39,29,55,.92), rgba(18,12,24,.96)); padding: 26px 20px 20px; gap: 22px; }
  h1 { font-size: 42px; }
  .lead { font-size: 17px; }
  .actions { display: grid; }
  .btn { width: 100%; }
  .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
  .stats div { border-radius: 18px; background: rgba(255,255,255,.07); padding: 14px 10px; }
  .stats strong { font-size: 20px; }
  .stats span { font-size: 11px; }
  .player-card { border-radius: 24px; background: rgba(255,255,255,.08); padding: 20px; }
  .process-card { border-radius: 24px; padding: 14px; }
  .process-wave { height: 118px; border-radius: 20px; gap: 6px; }
  .process-step { padding: 12px; grid-template-columns: 38px 1fr; }
  .process-step h2 { font-size: 15px; }
  .process-step p { font-size: 13px; }
  .process-footer { min-height: 72px; padding: 16px; }
  .wave { height: 78px; }
  .section, .split { padding: 58px 14px; }
  .voices-section { padding: 58px 14px; }
  .voices-header { text-align: left; margin-bottom: 26px; }
  .voice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .voice-photo { border-radius: 18px; }
  .voice-card h3 { font-size: 15px; }
  .products { grid-template-columns: 1fr; }
  .product { border-radius: 24px; overflow: hidden; box-shadow: 0 18px 46px rgba(15,14,22,.1); }
  .product h3, .stars, .price, .cart { margin-left: 16px; margin-right: 16px; }
  .cart { margin-bottom: 16px; min-height: 52px; }
  .split { margin-left: 14px; margin-right: 14px; border-radius: 26px; background: white; box-shadow: 0 16px 44px rgba(15,14,22,.08); }
  .cta { padding-left: 14px; padding-right: 14px; }
  .cta-card { border-radius: 24px; padding: 34px 22px; text-align: left; }
  .cta-btn { justify-content: center; }
  .footer { margin-top: 64px; padding: 44px 20px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; padding-bottom: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; padding-top: 18px; }
  .order-nav { flex-direction: column; align-items: flex-start; gap: 14px; }
  .soundcloud { grid-template-columns: 64px 40px 1fr; }
  .cols, .base-price { grid-template-columns: 1fr; }
  .checkout { flex-direction: column; align-items: stretch; }
}

/* Palette violette/orange pour la carte de droite du hero */
.process-card {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 179, 60, .12), transparent 30%),
    linear-gradient(180deg, #2a1f3c, #1b1428);
  border: 1px solid #44325f;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .32);
  color: #fff8ef;
}
.process-window strong {
  color: #fff8ef;
}
.process-wave {
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 179, 60, .14), transparent 34%),
    linear-gradient(135deg, #281d39, #21162f);
  border: 1px solid rgba(255, 255, 255, .08);
}
.process-wave span {
  background: linear-gradient(#ffb33c, #ff695d);
  box-shadow: 0 0 18px rgba(255, 179, 60, .24);
}
.process-step {
  background: rgba(255, 255, 255, .055);
  border-color: rgba(255, 255, 255, .09);
}
.process-step > span {
  background: rgba(255, 255, 255, .1);
  color: #fff8ef;
}
.process-step.active > span {
  background: #ffb33c;
  color: #120c18;
}
.process-step h2 {
  color: #fff8ef;
}
.process-step p {
  color: #cdbff2;
}
.process-footer {
  background: #120c18;
  border: 1px solid rgba(255, 255, 255, .08);
}
.process-footer span {
  color: #cdbff2;
}
.process-footer a {
  color: #ffb33c;
}

/* Identite Studio Jingles: bleu, argent et noir */
:root {
  --sj-blue: #168dff;
  --sj-blue-deep: #064ad8;
  --sj-cyan: #35c8ff;
  --sj-silver: #f4f7fb;
  --sj-metal: #b7c4d4;
  --sj-black: #03070d;
}
.logo-brand {
  gap: 10px;
}
.logo-brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(22, 141, 255, .28);
}
.logo-brand .brand-wordmark {
  width: clamp(170px, 18vw, 245px);
  height: auto;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}
.logo-brand > span {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: #f4f7fb;
}
.mainnav .logo-brand > span,
.order-brand.logo-brand > span {
  color: #101827;
}
.brand strong,
.logo-brand strong {
  color: var(--sj-blue);
}
.mainnav .brand span {
  box-shadow: none;
}
.topbar,
.hero,
.footer {
  background:
    radial-gradient(circle at 82% 18%, rgba(22, 141, 255, .22), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(53, 200, 255, .12), transparent 28%),
    #03070d;
}
.topbar-icon,
.live-dot,
.eyebrow,
.brand strong,
.footer-col a:hover,
.footer::before {
  color: var(--sj-cyan);
}
.quote,
.primary,
.cart-count {
  background: linear-gradient(135deg, var(--sj-cyan), var(--sj-blue-deep));
  color: white;
}
.quote:hover,
.primary:hover {
  background: linear-gradient(135deg, #73dcff, var(--sj-blue));
}
.lead,
.stats span,
.footer-brand p,
.footer-col a,
.footer-bottom,
.process-step p {
  color: #b8d2f0;
}
.player-card,
.process-card,
.cta-card {
  background:
    radial-gradient(circle at 82% 12%, rgba(53, 200, 255, .16), transparent 30%),
    linear-gradient(180deg, #0c172a, #060b16);
  border-color: rgba(53, 200, 255, .22);
}
.process-wave {
  background:
    radial-gradient(circle at 50% 46%, rgba(53, 200, 255, .16), transparent 34%),
    linear-gradient(135deg, #071226, #0d1d3b);
  border-color: rgba(53, 200, 255, .14);
}
.wave i,
.process-wave span {
  background: linear-gradient(#f4f7fb, #35c8ff 46%, #064ad8);
  box-shadow: 0 0 18px rgba(53, 200, 255, .34);
}
.process-step.active > span {
  background: linear-gradient(135deg, var(--sj-cyan), var(--sj-blue-deep));
  color: white;
}
.process-footer a {
  color: var(--sj-cyan);
}
.cart {
  color: #dff5ff;
  background: #071226;
}
.cart:hover {
  background: #0b1f40;
}
.voice-card:hover .voice-photo {
  border-color: var(--sj-cyan);
}
.voice-card h3 span {
  background: #e8f5ff;
  color: var(--sj-blue);
}
.hero-logo {
  display: block;
  width: min(210px, 46vw);
  margin: 0 0 22px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .36), 0 0 34px rgba(22, 141, 255, .24);
}
@media (max-width: 900px) {
  .logo-brand img {
    width: 42px;
    height: 42px;
  }
  .logo-brand .brand-wordmark {
    width: 190px;
    height: auto;
  }
}

.brand.logo-brand .brand-wordmark {
  width: clamp(170px, 18vw, 245px);
  height: auto;
  max-height: 64px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}
@media (max-width: 560px) {
  .brand.logo-brand .brand-wordmark {
    width: 150px;
    max-height: 48px;
  }
}

/* Navigation professionnelle Studio Jingles */
.mainnav-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.mainnav .nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.mainnav .nav-links {
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(18px, 2vw, 30px);
  white-space: nowrap;
}
.mainnav .nav-links > a,
.mainnav .nav-dropdown-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.mainnav .nav-links > a {
  color: #273044;
}
.mainnav .nav-links > a:hover,
.mainnav .nav-dropdown-toggle:hover {
  color: var(--sj-blue);
}
.mainnav .quote {
  display: inline-flex;
  min-height: 42px;
  margin-left: 8px;
  padding: 0 18px;
  font-size: 14px;
}
.mainnav-actions {
  justify-content: flex-end;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #dce8f8;
  border-radius: 999px;
  color: #0b1f40;
  font-size: 14px;
  font-weight: 900;
  background: #f7fbff;
}
.contact-btn:hover {
  border-color: var(--sj-cyan);
  color: var(--sj-blue);
}
.cart-btn {
  background: #061226;
}
.cart-btn:hover {
  background: #0b1f40;
}

@media (max-width: 1100px) {
  .mainnav-inner {
    gap: 18px;
  }
  .mainnav .nav-links {
    gap: 16px;
    font-size: 13px;
  }
  .mainnav .quote {
    padding: 0 14px;
  }
  .contact-btn {
    display: none;
  }
}

@media (max-width: 940px) {
  .mainnav-inner {
    display: flex;
  }
  .mainnav .nav-menu {
    align-items: stretch;
    justify-content: flex-start;
  }
  .mainnav .nav-links {
    align-items: stretch;
    flex-wrap: nowrap;
    white-space: normal;
  }
}
@media (max-width: 560px) {
  .hero-logo { width: min(230px, 70vw); }
  .logo-brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .logo-brand .brand-wordmark {
    width: 150px;
    height: auto;
    border-radius: 0;
  }
  .hero {
    background:
      radial-gradient(circle at 82% 12%, rgba(22, 141, 255, .25), transparent 28%),
      linear-gradient(#03070d, #071226 58%, #f8f6f1 58%);
  }
}

/* Correction finale du header: alignement net et dimensions stables */
.mainnav {
  background: #fffdf9;
}
.mainnav-inner {
  max-width: 1180px;
  min-height: 74px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) auto;
  gap: 24px;
}
.mainnav .brand.logo-brand {
  min-width: 0;
  overflow: hidden;
}
.mainnav .brand.logo-brand .brand-wordmark {
  width: 252px;
  max-width: 252px;
  max-height: 52px;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.mainnav .nav-menu {
  min-width: 0;
  justify-content: center;
}
.mainnav .nav-links {
  gap: 24px;
  font-size: 14px;
}
.mainnav .quote {
  min-width: 92px;
  min-height: 46px;
  margin-left: 22px;
  padding: 0 18px;
  border-radius: 999px;
  line-height: 1.15;
  text-align: center;
}
.mainnav-actions {
  gap: 10px;
}
.contact-btn {
  min-width: 98px;
  min-height: 46px;
  padding: 0 18px;
  background: #f2f8ff;
}
.cart-btn {
  min-width: 138px;
  min-height: 46px;
  padding: 0 18px;
}

@media (max-width: 1180px) {
  .mainnav-inner {
    grid-template-columns: 240px minmax(0, 1fr) auto;
    gap: 18px;
  }
  .mainnav .brand.logo-brand .brand-wordmark {
    width: 218px;
    max-width: 218px;
  }
  .mainnav .nav-links {
    gap: 18px;
    font-size: 13px;
  }
  .mainnav .quote {
    min-width: 86px;
    margin-left: 14px;
  }
  .contact-btn {
    display: none;
  }
}

@media (max-width: 940px) {
  .mainnav-inner {
    display: flex;
  }
  .mainnav .brand.logo-brand .brand-wordmark {
    width: 196px;
    max-width: 196px;
  }
}

@media (max-width: 560px) {
  .mainnav .brand.logo-brand .brand-wordmark {
    width: 168px;
    max-width: 168px;
    max-height: 42px;
  }
  .cart-btn {
    min-width: 0;
  }
}

/* Correction mobile: le menu reste ferme tant que le hamburger n'est pas active */
@media (max-width: 900px) {
  .mainnav-inner {
    position: relative;
  }

  .mainnav .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 20px 22px;
    background: #fffdf9;
    border-top: 1px solid #ece5d6;
    box-shadow: 0 18px 30px rgba(6, 18, 38, .1);
  }

  .mainnav .nav-menu.is-open {
    display: flex;
  }

  .mainnav .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    white-space: normal;
  }

  .mainnav .nav-links > a,
  .mainnav .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 11px 0;
  }

  .mainnav .quote {
    width: 100%;
    margin: 4px 0 0;
  }
}

/* Finition menu desktop: logo, liens et actions bien alignes */
@media (min-width: 901px) {
  .mainnav {
    background: #fffdf9;
  }

  .mainnav-inner {
    max-width: 1240px;
    min-height: 74px;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
  }

  .mainnav .brand.logo-brand {
    display: flex;
    align-items: center;
    overflow: visible;
  }

  .mainnav .brand.logo-brand .brand-wordmark {
    width: 238px;
    max-width: 238px;
    max-height: 48px;
  }

  .mainnav .nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    gap: 20px;
  }

  .mainnav .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(18px, 2vw, 30px);
    min-width: 0;
    color: #17223a;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
  }

  .mainnav .nav-links > a,
  .mainnav .nav-dropdown-toggle {
    min-height: 42px;
    padding: 0;
    color: #17223a;
  }

  .mainnav .quote {
    min-width: 98px;
    min-height: 46px;
    margin-left: 0;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #35c3f4, #1557df);
    box-shadow: none;
  }

  .mainnav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }

  .contact-btn,
  .cart-btn {
    min-height: 46px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .contact-btn {
    min-width: 96px;
    padding: 0 18px;
    background: #f2f8ff;
  }

  .cart-btn {
    min-width: 138px;
    padding: 0 18px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .mainnav-inner {
    grid-template-columns: 230px minmax(0, 1fr) auto;
    gap: 18px;
    padding: 0 22px;
  }

  .mainnav .brand.logo-brand .brand-wordmark {
    width: 210px;
    max-width: 210px;
  }

  .mainnav .nav-links {
    gap: 18px;
    font-size: 13.5px;
  }

  .contact-btn {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1040px) {
  .mainnav-inner {
    grid-template-columns: 210px minmax(0, 1fr) auto;
    gap: 14px;
  }

  .mainnav .brand.logo-brand .brand-wordmark {
    width: 190px;
    max-width: 190px;
  }

  .mainnav .nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .mainnav .quote {
    min-width: 82px;
    padding: 0 16px;
  }

  .cart-btn {
    min-width: 118px;
    padding: 0 14px;
  }
}

/* Menu visible pendant le scroll */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .mainnav {
  position: relative;
  top: auto;
  z-index: 1;
  box-shadow: 0 8px 22px rgba(6, 18, 38, .08);
}

.site-header .topbar,
.site-header .mainnav,
.site-header .mainnav-inner,
.site-header .brand-wordmark,
.site-header .quote,
.site-header .cart-btn,
.site-header .contact-btn {
  transition: min-height .2s ease, padding .2s ease, opacity .2s ease, transform .2s ease, box-shadow .2s ease, max-height .2s ease, width .2s ease;
}

.site-header.is-compact .topbar {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}

.site-header.is-compact .mainnav {
  box-shadow: 0 12px 30px rgba(6, 18, 38, .16);
}

.site-header.is-compact .mainnav-inner {
  min-height: 58px;
}

.site-header.is-compact .brand-wordmark {
  transform: translateY(-1px);
}

@media (min-width: 901px) {
  .site-header.is-compact .mainnav-inner {
    min-height: 60px;
  }

  .site-header.is-compact .mainnav .brand.logo-brand .brand-wordmark {
    width: 188px;
    max-width: 188px;
    max-height: 38px;
  }

  .site-header.is-compact .mainnav .nav-links > a,
  .site-header.is-compact .mainnav .nav-dropdown-toggle {
    min-height: 36px;
  }

  .site-header.is-compact .mainnav .quote,
  .site-header.is-compact .contact-btn,
  .site-header.is-compact .cart-btn {
    min-height: 38px;
  }
}

@media (max-width: 900px) {
  .site-header.is-compact .mainnav-inner {
    min-height: 56px;
  }

  .site-header.is-compact .mainnav .brand.logo-brand .brand-wordmark {
    width: 150px;
    max-width: 150px;
    max-height: 36px;
  }

  .site-header.is-compact .cart-btn,
  .site-header.is-compact .menu-toggle {
    min-height: 38px;
    height: 38px;
  }
}

.order-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: min-height .2s ease, padding .2s ease, box-shadow .2s ease;
}

.order-nav .brand-wordmark,
.order-nav .back {
  transition: width .2s ease, max-height .2s ease, min-height .2s ease, padding .2s ease, transform .2s ease;
}

.order-nav.is-compact {
  box-shadow: 0 12px 30px rgba(6, 18, 38, .14);
}

.order-nav.is-compact .brand-wordmark {
  width: 180px;
  max-width: 180px;
  max-height: 38px;
}

.order-nav.is-compact .back {
  min-height: 38px;
  padding: 0 16px;
}

/* Animation douce du menu au scroll: degrade, blur et moins de saut visuel */
.site-header {
  background: transparent;
}

.site-header .topbar {
  max-height: 38px;
  overflow: hidden;
  transform: translateY(0);
}

.site-header .topbar,
.site-header .mainnav,
.site-header .mainnav-inner,
.site-header .brand-wordmark,
.site-header .quote,
.site-header .cart-btn,
.site-header .contact-btn,
.site-header .menu-toggle {
  transition:
    background .45s ease,
    box-shadow .45s ease,
    opacity .36s ease,
    transform .45s cubic-bezier(.22, 1, .36, 1),
    max-height .45s cubic-bezier(.22, 1, .36, 1),
    min-height .45s cubic-bezier(.22, 1, .36, 1),
    padding .45s cubic-bezier(.22, 1, .36, 1);
}

.site-header .mainnav {
  background: rgba(255, 253, 249, 1);
}

.site-header .brand-wordmark {
  transform-origin: left center;
  will-change: transform;
}

.site-header.is-compact .topbar {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
}

.site-header.is-compact .mainnav {
  background:
    linear-gradient(135deg, rgba(255, 253, 249, .96), rgba(235, 247, 255, .94)),
    radial-gradient(circle at 12% 50%, rgba(53, 195, 244, .18), transparent 34%);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(6, 18, 38, .14);
}

.site-header.is-compact .mainnav-inner {
  min-height: 68px;
}

.site-header.is-compact .brand-wordmark {
  transform: scale(.9);
}

@media (min-width: 901px) {
  .site-header.is-compact .mainnav-inner {
    min-height: 68px;
  }

  .site-header.is-compact .mainnav .brand.logo-brand .brand-wordmark {
    width: 238px;
    max-width: 238px;
    max-height: 48px;
  }

  .site-header.is-compact .mainnav .nav-links > a,
  .site-header.is-compact .mainnav .nav-dropdown-toggle {
    min-height: 40px;
  }

  .site-header.is-compact .mainnav .quote,
  .site-header.is-compact .contact-btn,
  .site-header.is-compact .cart-btn {
    min-height: 42px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .site-header.is-compact .mainnav .brand.logo-brand .brand-wordmark {
    width: 210px;
    max-width: 210px;
  }
}

@media (min-width: 901px) and (max-width: 1040px) {
  .site-header.is-compact .mainnav .brand.logo-brand .brand-wordmark {
    width: 190px;
    max-width: 190px;
  }
}

@media (max-width: 900px) {
  .site-header.is-compact .mainnav-inner {
    min-height: 62px;
  }

  .site-header.is-compact .mainnav .brand.logo-brand .brand-wordmark {
    width: 168px;
    max-width: 168px;
    max-height: 42px;
    transform: scale(.9);
  }

  .site-header.is-compact .cart-btn,
  .site-header.is-compact .menu-toggle {
    min-height: 40px;
    height: 40px;
  }
}

.order-nav {
  background: rgba(255, 253, 249, .98);
}

.order-nav.is-compact {
  background:
    linear-gradient(135deg, rgba(255, 253, 249, .96), rgba(235, 247, 255, .94));
  backdrop-filter: blur(14px);
}

/* Visualiseur audio anime */
.process-wave {
  position: relative;
  overflow: hidden;
}

.process-wave::before {
  content: "";
  position: absolute;
  inset: 18% 18%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(53, 200, 255, .32), transparent 62%);
  filter: blur(12px);
  opacity: .78;
  animation: wave-glow 2.6s ease-in-out infinite;
}

.process-wave span {
  position: relative;
  z-index: 1;
  transform-origin: center;
  animation: process-wave-bar 1.25s ease-in-out infinite;
}

.process-wave span:nth-child(1) { animation-delay: -.05s; animation-duration: 1.35s; }
.process-wave span:nth-child(2) { animation-delay: -.38s; animation-duration: 1.08s; }
.process-wave span:nth-child(3) { animation-delay: -.16s; animation-duration: 1.28s; }
.process-wave span:nth-child(4) { animation-delay: -.62s; animation-duration: 1.12s; }
.process-wave span:nth-child(5) { animation-delay: -.24s; animation-duration: 1.42s; }
.process-wave span:nth-child(6) { animation-delay: -.72s; animation-duration: 1.02s; }
.process-wave span:nth-child(7) { animation-delay: -.31s; animation-duration: 1.2s; }
.process-wave span:nth-child(8) { animation-delay: -.82s; animation-duration: 1.36s; }
.process-wave span:nth-child(9) { animation-delay: -.44s; animation-duration: 1.06s; }
.process-wave span:nth-child(10) { animation-delay: -.67s; animation-duration: 1.28s; }
.process-wave span:nth-child(11) { animation-delay: -.18s; animation-duration: 1.16s; }
.process-wave span:nth-child(12) { animation-delay: -.54s; animation-duration: 1.34s; }
.process-wave span:nth-child(13) { animation-delay: -.09s; animation-duration: 1.12s; }

@keyframes process-wave-bar {
  0%, 100% {
    transform: scaleY(.72);
    opacity: .8;
    filter: brightness(.92);
  }
  45% {
    transform: scaleY(1.18);
    opacity: 1;
    filter: brightness(1.18);
  }
  70% {
    transform: scaleY(.88);
    opacity: .9;
  }
}

@keyframes wave-glow {
  0%, 100% {
    transform: scale(.92);
    opacity: .48;
  }
  50% {
    transform: scale(1.08);
    opacity: .86;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-wave::before,
  .process-wave span {
    animation: none;
  }
}

/* Anti-rebond scroll: on ne change plus la hauteur du header, seulement son apparence */
.site-header.is-compact .topbar {
  max-height: 38px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.site-header.is-compact .mainnav {
  transform: translateY(-38px);
}

.site-header.is-compact {
  margin-bottom: -38px;
}

.site-header.is-compact .mainnav-inner {
  min-height: 74px;
}

@media (min-width: 901px) {
  .site-header.is-compact .mainnav-inner {
    min-height: 74px;
  }
}

@media (max-width: 900px) {
  .site-header.is-compact .topbar {
    max-height: 31px;
  }

  .site-header.is-compact .mainnav {
    transform: translateY(-31px);
  }

  .site-header.is-compact {
    margin-bottom: -31px;
  }

  .site-header.is-compact .mainnav-inner {
    min-height: 64px;
  }
}

/* Espace client */
.client-body,
.client-dashboard-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 8%, rgba(47, 103, 235, .1), transparent 26%),
    linear-gradient(135deg, #f8fafc, #eef3f8);
  color: #091229;
}

.client-auth {
  min-height: calc(100vh - 220px);
  display: grid;
  place-items: center;
  padding: 72px 18px;
}

.client-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.client-logo img {
  width: 210px;
  max-width: 72vw;
  height: auto;
  display: block;
}

.client-auth .client-logo {
  margin-bottom: 18px;
}

.auth-card {
  width: min(520px, 100%);
  padding: clamp(30px, 5vw, 42px);
  background: rgba(255, 255, 255, .92);
  border: 1px solid #dde5ef;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(9, 18, 41, .12);
}

.auth-card.register-card {
  width: min(820px, 100%);
}

.client-eyebrow {
  margin: 0 0 14px;
  color: #1f63ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.auth-card h1,
.dashboard-hero h1 {
  margin: 0;
  color: #091229;
  font-size: clamp(42px, 6vw, 60px);
  line-height: .95;
  letter-spacing: 0;
}

.auth-intro,
.dashboard-hero p {
  max-width: 680px;
  margin: 22px 0 30px;
  color: #60708c;
  font-size: 18px;
  line-height: 1.55;
}

.client-form {
  display: grid;
  gap: 18px;
}

.client-form label {
  display: grid;
  gap: 9px;
  color: #071126;
  font-size: 14px;
  font-weight: 900;
}

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

.form-row.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.client-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: #071126;
  background: #eaf2ff;
  border: 1px solid #d5e0ef;
  border-radius: 14px;
  outline: 0;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.client-form input:focus {
  background: #fff;
  border-color: #2f67eb;
  box-shadow: 0 0 0 4px rgba(47, 103, 235, .12);
}

.client-form button {
  min-height: 54px;
  margin-top: 2px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #3a77f5, #1d57e8);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(47, 103, 235, .28);
}

.auth-switch {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid #e4eaf2;
  color: #60708c;
  font-weight: 800;
  text-align: center;
}

.auth-switch a {
  color: #1557e8;
  font-weight: 900;
}

.form-alert {
  margin: 0 0 18px;
  padding: 13px 15px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
}

.form-alert.error {
  color: #8a1f1f;
  background: #fff0f0;
  border: 1px solid #ffd0d0;
}

.form-alert.success {
  color: #12603c;
  background: #edfff6;
  border: 1px solid #bcebd3;
}

.dashboard-shell {
  width: min(1136px, calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0 64px;
}

.dashboard-logo {
  margin-bottom: 28px;
}

.dashboard-hero {
  padding-top: 4px;
}

.dashboard-hero h1 {
  max-width: 860px;
}

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

.dashboard-card {
  min-height: 222px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: rgba(255, 255, 255, .94);
  border: 1px solid #dde5ef;
  border-radius: 26px;
  box-shadow: 0 20px 58px rgba(9, 18, 41, .08);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.dashboard-card:hover {
  transform: translateY(-3px);
  border-color: #bcd3ff;
  box-shadow: 0 24px 68px rgba(47, 103, 235, .16);
}

.dashboard-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #2f67eb;
  background: #dceaff;
}

.dashboard-card strong {
  margin-bottom: 14px;
  color: #071126;
  font-size: 22px;
  line-height: 1.1;
}

.dashboard-card p {
  margin: 0;
  color: #60708c;
  font-size: 15px;
  line-height: 1.55;
}

.orders-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 58px;
}

.orders-hero {
  margin-bottom: 34px;
}

.orders-hero .client-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.orders-hero h1 {
  margin: 0;
  color: #091229;
  font-size: clamp(48px, 6vw, 64px);
  line-height: .95;
  letter-spacing: 0;
}

.orders-hero > p:not(.client-eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: #60708c;
  font-size: 18px;
  line-height: 1.55;
}

.client-section-nav {
  margin: -10px 0 28px;
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  border: 1px solid #dde8f6;
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 16px 42px rgba(9, 18, 41, .07);
}

.client-section-nav a {
  min-height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #42526d;
  font-size: 13px;
  font-weight: 950;
}

.client-section-nav a:hover,
.client-section-nav a.is-active {
  color: #fff;
  background: linear-gradient(135deg, #35c3f4, #1557df);
  box-shadow: 0 12px 26px rgba(47, 103, 235, .18);
}

.orders-panel {
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: clamp(34px, 6vw, 70px);
  background: rgba(255, 255, 255, .94);
  border: 1px solid #dde5ef;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(9, 18, 41, .09);
}

.orders-empty {
  display: grid;
  justify-items: center;
  text-align: center;
}

.orders-empty-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #2f67eb;
  background: #dceaff;
}

.orders-empty h2 {
  margin: 28px 0 12px;
  color: #071126;
  font-size: 29px;
  line-height: 1.1;
}

.orders-empty p {
  margin: 0;
  color: #60708c;
  font-size: 17px;
}

.orders-btn {
  min-height: 48px;
  margin-top: 26px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #3a77f5, #1d57e8);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(47, 103, 235, .25);
}

.orders-list {
  width: 100%;
  display: grid;
  gap: 14px;
}

.order-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid #e0e8f2;
  border-radius: 18px;
  background: #fbfdff;
}

.order-row strong,
.order-row span {
  display: block;
}

.order-row strong {
  color: #071126;
  font-size: 17px;
}

.order-row span,
.order-row em {
  color: #60708c;
  font-style: normal;
  font-size: 14px;
}

.order-row b {
  color: #091229;
}

.order-row-link {
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.order-row-link:hover {
  transform: translateY(-2px);
  border-color: #2b86f6;
  box-shadow: 0 18px 42px rgba(21, 87, 232, .12);
}
.order-row-link em {
  min-height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #35c3f4, #1557df);
  font-weight: 950;
}

.invoice-row {
  grid-template-columns: minmax(0, 1fr) auto auto auto auto;
}

.invoice-download {
  min-height: 36px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #1557e8;
  background: #eaf2ff;
  font-size: 13px;
  font-weight: 900;
}

.invoice-download:hover {
  background: #dceaff;
}

.download-row {
  grid-template-columns: minmax(190px, 1fr) minmax(280px, 420px) auto auto;
}

[data-download-item][hidden],
[data-download-item].is-hidden-page,
[data-folder-panel][hidden] {
  display: none !important;
}

.downloads-panel {
  place-items: stretch;
}

.downloads-panel .orders-empty {
  align-self: center;
  justify-self: center;
}

.download-folders {
  width: 100%;
  display: grid;
  gap: 24px;
}

.download-folder-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.download-folder-tab {
  min-height: 92px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #e0e8f2;
  border-radius: 22px;
  color: #071126;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 14px 34px rgba(9, 18, 41, .05);
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.download-folder-tab:hover,
.download-folder-tab.is-active {
  transform: translateY(-2px);
  border-color: #9ec5ff;
  box-shadow: 0 20px 48px rgba(47, 103, 235, .14);
}

.download-folder-tab.is-active .download-folder-icon {
  color: #fff;
  background: linear-gradient(135deg, #35c3f4, #1557df);
}

.download-folder-tab strong,
.download-folder-tab span {
  display: block;
}

.download-folder-tab strong {
  font-size: 16px;
  font-weight: 950;
}

.download-folder-tab span {
  margin-top: 4px;
  color: #60708c;
  font-size: 13px;
  font-weight: 800;
}

.download-folder {
  width: 100%;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid #e0e8f2;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 18px 45px rgba(9, 18, 41, .06);
}

.download-folder-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 18px;
}

.download-folder-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #2f67eb;
  background: linear-gradient(135deg, #dceaff, #eef6ff);
}

.download-folder-header h2 {
  margin: 0;
  color: #071126;
  font-size: 22px;
  line-height: 1.1;
}

.download-folder-header p {
  margin: 5px 0 0;
  color: #60708c;
  font-size: 14px;
}

.download-folder-all {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #35c3f4, #1557df);
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(47, 103, 235, .2);
}

.download-folder-all:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(47, 103, 235, .27);
}

.client-audio-player {
  min-height: 78px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: stretch;
  gap: 11px;
  border: 1px solid #d7e1ee;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 14px 34px rgba(9, 18, 41, .08);
}

.client-audio-play {
  width: 52px;
  height: 52px;
  align-self: center;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #ff7a1a, #f04413);
  box-shadow: 0 12px 28px rgba(240, 68, 19, .24);
  cursor: pointer;
}

.client-audio-play .pause-icon,
.client-audio-player.is-playing .client-audio-play .play-icon {
  display: none;
}

.client-audio-player.is-playing .client-audio-play .pause-icon {
  display: block;
}

.client-audio-main {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.client-audio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.client-audio-meta span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.client-audio-meta strong {
  color: #94a3b8;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.client-audio-visual {
  position: absolute;
  inset: 3px 0 0;
  height: 34px;
  display: flex;
  align-items: end;
  gap: 2px;
  pointer-events: none;
}

.client-audio-visual i {
  width: 4px;
  height: 18px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #64748b, #cbd5e1);
  transform: scaleY(.55);
  transform-origin: bottom center;
  transition: transform .08s linear, background .16s ease;
}

.client-audio-visual i:nth-child(3n) { height: 24px; }
.client-audio-visual i:nth-child(4n) { height: 30px; }
.client-audio-visual i:nth-child(5n) { height: 14px; }
.client-audio-visual i.is-elapsed {
  background: linear-gradient(180deg, #ff8a25, #f04413);
}

.client-audio-player.uses-fallback-visual.is-playing .client-audio-visual i {
  animation: clientEqualizer 1s ease-in-out infinite;
}

.client-audio-progress {
  position: relative;
  height: 38px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: repeating-linear-gradient(90deg, rgba(148, 163, 184, .16) 0 1px, transparent 1px 8px);
  cursor: pointer;
}

.client-audio-progress > span {
  width: 0;
  height: 100%;
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 122, 26, .22), rgba(240, 68, 19, .1));
}

.client-audio-times {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
}

.client-audio-current {
  color: #f04413;
}

@keyframes clientEqualizer {
  0%, 100% { transform: scaleY(.55); }
  50% { transform: scaleY(1.25); }
}

.download-btn {
  color: #fff;
  background: linear-gradient(135deg, #3a77f5, #1d57e8);
  box-shadow: 0 12px 28px rgba(47, 103, 235, .22);
}

.download-btn:hover {
  background: linear-gradient(135deg, #35c3f4, #1557df);
}

.download-actions {
  display: grid;
  gap: 8px;
}

.download-actions form {
  margin: 0;
}

.download-actions .invoice-download {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.share-btn {
  color: #1557e8;
  background: #eaf2ff;
}

.download-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e0e8f2;
}

.download-pagination button {
  min-width: 38px;
  height: 38px;
  border: 1px solid #d7e4f5;
  border-radius: 12px;
  color: #1557e8;
  background: #fff;
  font-weight: 950;
  cursor: pointer;
}

.download-pagination button.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #35c3f4, #1557df);
  box-shadow: 0 12px 26px rgba(47, 103, 235, .18);
}

.share-result {
  width: 100%;
  margin-bottom: 18px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid #bfdbfe;
  border-radius: 18px;
  background: #eff6ff;
}

.share-result strong {
  color: #071126;
}

.share-result input {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #d5e0ef;
  border-radius: 12px;
  background: #fff;
}

.share-result button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #35c3f4, #1557df);
  font-weight: 900;
  cursor: pointer;
}

.share-body {
  min-height: 100vh;
  background: linear-gradient(135deg, #eef6ff, #ffffff);
}

.share-shell {
  width: min(720px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
}

.share-logo {
  display: inline-flex;
  margin-bottom: 26px;
}

.share-card {
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid #dde5ef;
  border-radius: 28px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 24px 70px rgba(9, 18, 41, .1);
}

.share-card h1 {
  margin: 10px 0 12px;
  color: #091229;
  font-size: clamp(34px, 6vw, 54px);
  line-height: .95;
}

.share-card p:not(.client-eyebrow) {
  color: #60708c;
}

.share-audio {
  width: 100%;
  margin: 24px 0 18px;
}

.share-download {
  width: max-content;
}

.profile-shell {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 58px;
}

.profile-panel {
  padding: clamp(26px, 5vw, 42px);
  background: rgba(255, 255, 255, .94);
  border: 1px solid #dde5ef;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(9, 18, 41, .09);
}

.profile-summary {
  margin-bottom: 28px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 22px;
  background: #f4f8ff;
  border: 1px solid #e0e9f8;
}

.profile-avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #35c3f4, #1557df);
  font-size: 19px;
  font-weight: 900;
}

.profile-summary strong,
.profile-summary p {
  display: block;
  margin: 0;
}

.profile-summary strong {
  color: #071126;
  font-size: 20px;
}

.profile-summary p {
  margin-top: 4px;
  color: #60708c;
}

.profile-form button {
  width: fit-content;
  min-width: 260px;
  padding: 0 26px;
}

.password-box {
  margin-top: 4px;
  padding: 22px;
  border: 1px solid #e0e8f2;
  border-radius: 22px;
  background: #fbfdff;
}

.password-box h2 {
  margin: 0 0 8px;
  color: #071126;
  font-size: 22px;
}

.password-box p {
  margin: 0 0 18px;
  color: #60708c;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .auth-card {
    border-radius: 24px;
    padding: 26px 20px;
  }

  .form-row,
  .form-row.three,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .auth-card h1,
  .dashboard-hero h1 {
    font-size: 42px;
  }

  .dashboard-card {
    min-height: 180px;
  }

  .orders-shell {
    width: min(100% - 28px, 1180px);
    padding: 38px 0 44px;
  }

  .orders-panel {
    min-height: 340px;
    border-radius: 24px;
  }

  .client-section-nav {
    width: 100%;
  }

  .client-section-nav a {
    flex: 1 1 auto;
  }

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

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

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

  .download-folder-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-folder-all {
    width: 100%;
  }

  .share-result {
    grid-template-columns: 1fr;
  }

  .client-audio-player {
    width: 100%;
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .profile-shell {
    width: min(100% - 28px, 980px);
    padding: 38px 0 44px;
  }

  .profile-panel {
    border-radius: 24px;
  }

  .profile-summary {
    align-items: flex-start;
  }

  .profile-form button {
    width: 100%;
    min-width: 0;
  }
}

/* Panel administration */
.admin-body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  background: #eef3f8;
  color: #091229;
}

.admin-auth {
  grid-column: 1 / -1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px 18px;
}

.admin-auth-card {
  width: min(520px, 100%);
  padding: clamp(30px, 5vw, 42px);
  background: #fff;
  border: 1px solid #dde5ef;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(9, 18, 41, .12);
}

.admin-auth-card h1 {
  margin: 0 0 16px;
  font-size: clamp(40px, 6vw, 56px);
  line-height: .95;
}

.admin-auth-card > p:not(.client-eyebrow) {
  margin: 0 0 26px;
  color: #60708c;
  line-height: 1.55;
}

.admin-sidebar {
  min-height: 100vh;
  padding: 24px;
  position: sticky;
  top: 0;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 26px;
  background:
    radial-gradient(circle at 20% 8%, rgba(53, 200, 255, .18), transparent 30%),
    #061226;
  color: #f4f7fb;
}

.admin-logo img {
  width: 190px;
  max-width: 100%;
  display: block;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar nav a,
.admin-logout {
  min-height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  color: rgba(244, 247, 251, .78);
  font-weight: 900;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.admin-logout {
  margin-top: auto;
  color: #9ddfff;
  background: rgba(53, 200, 255, .1);
}

.admin-main {
  padding: clamp(24px, 4vw, 46px);
}

.admin-header {
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.admin-header h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: .95;
}

.admin-header > span {
  padding: 10px 14px;
  border-radius: 999px;
  color: #1557e8;
  background: #dceaff;
  font-weight: 900;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.admin-stats a,
.admin-panel {
  background: rgba(255, 255, 255, .94);
  border: 1px solid #dde5ef;
  border-radius: 24px;
  box-shadow: 0 20px 58px rgba(9, 18, 41, .08);
}

.admin-stats a {
  min-height: 132px;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 8px;
}

.admin-stats strong {
  font-size: 42px;
  line-height: 1;
}

.admin-stats span {
  color: #60708c;
  font-weight: 900;
}

.admin-panel {
  padding: 24px;
  margin-bottom: 22px;
}

.admin-panel h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.admin-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.admin-actions-grid a {
  min-height: 58px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  color: #1557e8;
  background: #eaf2ff;
  font-weight: 900;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 15px 14px;
  border-bottom: 1px solid #e4ebf5;
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: #60708c;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.admin-table td span {
  display: block;
  margin-top: 4px;
  color: #60708c;
  font-size: 13px;
}

.admin-product-cell {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.admin-product-thumb {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dbe6f4;
  border-radius: 14px;
  background: #f8fbff;
}

.admin-product-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.admin-product-thumb span {
  margin: 0;
  padding: 0 8px;
  color: #7a879d;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.admin-inline-form {
  display: flex;
  gap: 8px;
}

.admin-inline-form select,
.admin-form-grid select,
.admin-form-grid input {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #d5e0ef;
  border-radius: 12px;
  background: #fff;
}

.admin-form-grid input[type="file"] {
  padding: 10px;
  background: #f8fbff;
}

.admin-form-grid input[type="file"]::file-selector-button {
  min-height: 34px;
  margin-right: 12px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #35c3f4, #1557df);
  font-weight: 900;
  cursor: pointer;
}

.admin-inline-form button,
.admin-form-grid button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #35c3f4, #1557df);
  font-weight: 900;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.admin-form-grid label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.admin-form-grid .admin-wide {
  grid-column: span 2;
}

.admin-product-edit {
  padding: 16px;
  border: 1px solid #e4ebf5;
  border-radius: 18px;
  background: #f8fbff;
}

.admin-folder-form {
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-client-picker {
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-selected-client,
.admin-muted {
  margin: 16px 0 0;
  color: #60708c;
  line-height: 1.5;
}

.admin-selected-client strong {
  color: #071126;
}

.admin-folder-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.admin-folder-list span {
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #1557e8;
  background: #eaf2ff;
  font-size: 13px;
  font-weight: 900;
}

.admin-status {
  width: max-content;
  min-height: 30px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.admin-status.is-active {
  color: #12633d;
  background: #dcfce7;
}

.admin-status.is-paused {
  color: #8a4b00;
  background: #fff3d6;
}

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

.admin-action-row form {
  margin: 0;
}

.admin-action-btn {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: #1557e8;
  background: #eaf2ff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.admin-action-btn.share {
  color: #fff;
  background: linear-gradient(135deg, #35c3f4, #1557df);
}

.admin-action-btn.preview {
  color: #fff;
  background: linear-gradient(135deg, #ff8a25, #f04413);
}

.admin-action-btn.preview.is-playing {
  background: linear-gradient(135deg, #0f172a, #334155);
}

.admin-action-btn.pause {
  color: #8a4b00;
  background: #fff3d6;
}

.admin-action-btn.delete {
  color: #b42318;
  background: #fee4e2;
}

.admin-production-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-top: 8px;
  padding: 0 12px;
  border-radius: 999px;
  color: #1557e8;
  background: #eaf2ff;
  font-weight: 950;
  text-decoration: none;
}

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

  .admin-sidebar {
    min-height: auto;
    position: static;
  }

  .admin-sidebar nav,
  .admin-stats,
  .admin-actions-grid,
  .admin-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .admin-main {
    padding: 22px 14px;
  }

  .admin-header {
    display: grid;
  }

  .admin-sidebar nav,
  .admin-stats,
  .admin-actions-grid,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-grid .admin-wide {
    grid-column: auto;
  }
}

/* Order page responsive polish */
@media (max-width: 980px) {
  .order-shell { grid-template-columns: 1fr; }
  .order-product-card { position: static; }
  .order-zone { max-width: none; }
}

@media (max-width: 620px) {
  .order-nav { align-items: flex-start; gap: 12px; flex-direction: column; }
  .order-brand .brand-wordmark { max-width: 190px; }
  .order-shell { padding-top: 16px; gap: 20px; }
  .order-product-media { min-height: 220px; border-radius: 22px; padding: 24px; }
  .order-product-media strong { font-size: 38px; }
  .order-studio-player { grid-template-columns: 52px minmax(0, 1fr); padding: 10px; }
  .order-player-play { width: 50px; height: 50px; }
  .order-player-top { flex-direction: column; gap: 2px; }
  .order-form-card { border-radius: 24px; padding: 22px 16px 0; }
  .order-heading h1 { font-size: 36px; }
  .order-price-strip, .order-cols, .order-radio-grid { grid-template-columns: 1fr; }
  .order-panel { padding-bottom: 118px; }
  .order-checkout { margin-left: -16px; margin-right: -16px; flex-direction: column; align-items: stretch; }
  .order-checkout button { width: 100%; }
}
/* Order page shared layout */
.order-site-header { position: relative; z-index: 40; }
.order-body .footer { margin-top: 28px; }
.order-body .mainnav { box-shadow: 0 12px 28px rgba(7, 25, 54, .05); }
.order-body .site-header.is-compact .mainnav { box-shadow: 0 14px 34px rgba(7, 25, 54, .11); }
/* Compact order form like reference */
.order-form-card {
  max-width: 640px;
  justify-self: start;
}
.order-price-strip {
  padding: 16px 18px;
  margin-top: 16px;
}
.order-price-strip strong {
  font-size: 27px;
}
.order-panel {
  gap: 14px;
  padding: 18px 16px 92px;
}
.order-step-title {
  gap: 12px;
}
.order-step-title > span {
  width: 36px;
  height: 36px;
  border-radius: 11px;
}
.order-step-title h2 {
  font-size: 20px;
}
.order-field {
  gap: 7px;
}
.order-field small {
  font-size: 12px;
}
.order-field input,
.order-field select,
.order-field textarea {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 13px;
  font-weight: 500;
}
.order-field textarea {
  min-height: 92px;
}
.order-cols {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: 12px;
}
.order-radio-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
}
.order-radio-grid label {
  min-height: 56px;
  padding: 8px 10px;
  gap: 8px;
  border-radius: 14px;
  line-height: 1.15;
}
.order-radio-grid input {
  flex: 0 0 auto;
}
.order-radio-grid span {
  font-size: 13px;
  line-height: 1.16;
}
.order-radio-grid b {
  font-size: 11px;
  line-height: 1.05;
}
.order-zone {
  max-width: calc(50% - 6px);
}
.order-checkout {
  margin-top: -72px;
}

@media (max-width: 980px) {
  .order-form-card {
    max-width: 640px;
    justify-self: center;
    width: 100%;
  }
}

@media (max-width: 620px) {
  .order-panel {
    padding: 16px 14px 112px;
  }
  .order-cols {
    grid-template-columns: 1fr;
  }
  .order-radio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .order-zone {
    max-width: none;
  }
  .order-radio-grid label {
    min-height: 58px;
  }
}
/* Fix compact order radio overflow */
.order-radio-grid input[type="radio"] {
  width: auto;
  min-width: 18px;
  min-height: 18px;
  flex: 0 0 18px;
  padding: 0;
}
.order-radio-grid span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.order-radio-grid label {
  min-width: 0;
  overflow: hidden;
}
/* Canadian price emphasis */
.order-price-strip strong {
  font-size: 32px;
  letter-spacing: -.02em;
}
.order-checkout {
  padding: 22px 18px;
  min-height: 116px;
}
.order-checkout strong {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-top: 8px;
  font-size: 36px;
  line-height: .92;
  letter-spacing: -.02em;
}
.order-checkout strong em {
  margin-left: 5px;
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .06em;
}
.order-checkout button {
  min-width: 250px;
  min-height: 50px;
  font-size: 15px;
}

@media (max-width: 620px) {
  .order-price-strip strong {
    font-size: 30px;
  }
  .order-checkout strong {
    font-size: 34px;
  }
  .order-checkout button {
    min-width: 0;
  }
}
/* Final checkout price sizing */
.order-checkout strong {
  font-size: 48px;
  line-height: .9;
  font-weight: 950;
  gap: 4px;
}
.order-checkout strong span {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
.order-checkout strong em {
  align-self: flex-end;
  margin-left: 7px;
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1;
}
.order-checkout > div > span {
  font-size: 13px;
  font-weight: 800;
}
.order-checkout small {
  margin-top: 10px;
  font-size: 15px;
}

@media (max-width: 620px) {
  .order-checkout strong {
    font-size: 44px;
  }
  .order-checkout strong em {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
/* Cart checkout page */
.cart-page-body {
  min-height: 100vh;
  background: radial-gradient(circle at 8% 10%, rgba(50, 184, 238, .12), transparent 28%), linear-gradient(180deg, #f7fbff, #eef4fb);
  color: #071936;
}
.cart-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 70px;
}
.cart-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #2261e8;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.cart-breadcrumb span { color: #8b97ad; }
.cart-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-top: 12px;
}
.cart-hero h1 {
  margin: 0;
  color: #09152e;
  font-size: clamp(48px, 6vw, 66px);
  line-height: .9;
}
.cart-hero p {
  max-width: 650px;
  margin: 18px 0 0;
  color: #5f6f8b;
  font-size: 18px;
  line-height: 1.55;
}
.cart-count-card {
  min-width: 118px;
  min-height: 94px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid #dbe6f4;
  border-radius: 22px;
  background: white;
  box-shadow: 0 20px 45px rgba(15, 32, 58, .08);
  text-align: center;
}
.cart-count-card strong { display: block; font-size: 34px; }
.cart-count-card span { color: #65728b; font-weight: 900; }
.cart-alert {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0 22px;
  padding: 13px 16px;
  border: 1px solid #8bebbf;
  border-radius: 18px;
  background: #eefdf5;
  color: #007a58;
  font-weight: 950;
}
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
  margin-top: 18px;
}
.cart-item-card,
.cart-summary-card,
.cart-empty {
  border: 1px solid #dbe6f4;
  border-radius: 28px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 58px rgba(15, 32, 58, .09);
}
.cart-item-card { padding: 20px; }
.cart-item-header {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}
.cart-item-image {
  width: 120px;
  aspect-ratio: 1.2 / 1;
  border-radius: 18px;
  background: linear-gradient(135deg, #071936, #1d56df);
  background-size: cover;
  background-position: center;
}
.cart-item-header p {
  margin: 0 0 8px;
  color: #2261e8;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.cart-item-header h2 { margin: 0; font-size: 26px; color: #061738; }
.cart-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.cart-pills span {
  padding: 8px 12px;
  border: 1px solid #dfe7f3;
  border-radius: 999px;
  background: #fbfdff;
  color: #65728b;
  font-size: 12px;
  font-weight: 900;
}
.cart-line-total { text-align: right; }
.cart-line-total span { display: block; color: #69768d; font-size: 12px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.cart-line-total strong { display: block; margin-top: 6px; font-size: 25px; }
.cart-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.cart-detail-box {
  min-height: 340px;
  padding: 18px;
  border: 1px solid #dbe6f4;
  border-radius: 22px;
  background: #f8fbff;
}
.cart-detail-box h3 { margin: 0 0 16px; font-size: 17px; text-transform: uppercase; }
.cart-detail-box dl { margin: 0; }
.cart-detail-box dl div {
  padding: 11px 0;
  border-bottom: 1px solid #dbe6f4;
}
.cart-detail-box dl div:last-child { border-bottom: 0; }
.cart-detail-box dt { color: #071936; font-weight: 950; }
.cart-detail-box dd { margin: 5px 0 0; color: #5c6d88; }
.cart-options-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; color: #5c6d88; }
.cart-options-list li { display: flex; justify-content: space-between; gap: 12px; }
.cart-note { margin-top: 22px; padding-top: 18px; border-top: 1px solid #dbe6f4; color: #5c6d88; }
.cart-note p { margin: 8px 0 0; }
.cart-item-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #dbe6f4;
}
.cart-item-footer label { display: flex; align-items: center; gap: 10px; color: #65728b; font-weight: 950; }
.cart-item-footer input { width: 74px; min-height: 42px; text-align: center; border: 1px solid #dbe6f4; border-radius: 14px; background: white; font-weight: 950; }
.cart-remove {
  min-height: 42px;
  border: 1px solid #ffc8c8;
  border-radius: 999px;
  padding: 0 18px;
  background: #fff1f1;
  color: #c01515;
  font-weight: 950;
}
.cart-summary-card {
  position: sticky;
  top: 112px;
  padding: 26px;
}
.cart-summary-card > p {
  margin: 0 0 12px;
  color: #2261e8;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.cart-summary-card h2 { margin: 0 0 20px; font-size: 30px; }
.cart-summary-total {
  padding: 22px;
  border: 1px solid #dbe6f4;
  border-radius: 22px;
  background: #f8fbff;
}
.cart-summary-total span { display: block; color: #65728b; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.cart-summary-total strong { display: block; margin-top: 8px; font-size: 34px; }
.cart-summary-total em { font-size: 14px; font-style: normal; }
.cart-promo-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #dbe6f4;
  border-radius: 18px;
  background: #fff;
}
.cart-promo-form label {
  color: #0c1830;
  font-size: 13px;
  font-weight: 950;
}
.cart-promo-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}
.cart-promo-form input {
  min-width: 0;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid #d5e0ef;
  border-radius: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.cart-promo-form button {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #07162d;
  font-weight: 950;
}
.cart-promo-form small {
  margin: 0 !important;
  color: #07835d !important;
  text-align: left !important;
  font-weight: 900;
}
.cart-primary {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #32b9ee, #1d56df);
  color: white;
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(29, 86, 223, .2);
}
.cart-summary-card small { display: block; margin: 20px 0; color: #6a7892; line-height: 1.5; text-align: center; }
.cart-security { display: grid; gap: 10px; padding-top: 18px; border-top: 1px solid #dbe6f4; color: #65728b; font-weight: 950; }
.cart-empty { margin-top: 28px; padding: 70px 24px; text-align: center; }
.cart-empty h2 { margin: 0; font-size: 30px; }
.cart-empty p { color: #65728b; }

@media (max-width: 980px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary-card { position: static; }
}

@media (max-width: 680px) {
  .cart-shell { width: min(100% - 28px, 1180px); padding-top: 20px; }
  .cart-hero { flex-direction: column; }
  .cart-hero h1 { font-size: 46px; }
  .cart-item-header { grid-template-columns: 92px minmax(0, 1fr); }
  .cart-item-image { width: 92px; }
  .cart-line-total { grid-column: 1 / -1; text-align: left; }
  .cart-detail-grid { grid-template-columns: 1fr; }
  .cart-detail-box { min-height: 0; }
  .cart-item-footer { flex-direction: column; align-items: stretch; }
  .cart-remove { width: 100%; }
}
/* Admin layout hard fix */
body.admin-body {
  display: grid !important;
  grid-template-columns: 280px minmax(0, 1fr) !important;
  align-items: stretch !important;
}
body.admin-body > .admin-sidebar {
  grid-column: 1 !important;
  width: 280px !important;
}
body.admin-body > .admin-main {
  grid-column: 2 !important;
  display: block !important;
  min-width: 0 !important;
  width: 100% !important;
  min-height: 100vh !important;
  background: #eef3f8 !important;
  color: #091229 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (max-width: 900px) {
  body.admin-body {
    grid-template-columns: 1fr !important;
  }
  body.admin-body > .admin-sidebar,
  body.admin-body > .admin-main {
    grid-column: 1 !important;
    width: 100% !important;
  }
}
/* Professional admin sidebar layout */
@media (min-width: 901px) {
  body.admin-body {
    display: block !important;
    padding-left: 300px !important;
    background: #eef3f8 !important;
  }
  body.admin-body > .admin-sidebar {
    position: fixed !important;
    inset: 0 auto 0 0 !important;
    width: 300px !important;
    min-height: 100vh !important;
    padding: 26px 22px !important;
    border-right: 1px solid rgba(255,255,255,.08) !important;
    box-shadow: 24px 0 55px rgba(7, 18, 38, .12) !important;
    overflow-y: auto !important;
  }
  body.admin-body > .admin-main {
    width: 100% !important;
    min-height: 100vh !important;
    padding: 34px clamp(28px, 3vw, 52px) 54px !important;
  }
  .admin-logo {
    display: flex !important;
    align-items: center !important;
    min-height: 58px !important;
    margin-bottom: 8px !important;
  }
  .admin-logo img {
    width: 210px !important;
    padding: 8px 10px !important;
    border-radius: 12px !important;
    background: #fff !important;
  }
  .admin-sidebar nav {
    gap: 10px !important;
  }
  .admin-sidebar nav a,
  .admin-logout {
    min-height: 48px !important;
    border-radius: 14px !important;
  }
  .admin-logout {
    margin-top: auto !important;
  }
}
/* FXProd-like product cards */
.products {
  align-items: start;
}
.product {
  width: 100%;
  max-width: 292px;
  justify-self: center;
  background: #fffdf9;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.product:hover {
  box-shadow: none;
  transform: none;
}
.product .cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  display: block;
  border-radius: 0;
  background-size: cover;
  background-position: center;
}
.product .cover b {
  top: 0;
  left: 0;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 0;
  background: #b10868;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-transform: none;
}
.product .cover strong,
.product .cover span {
  display: none !important;
}
.product .audio {
  min-height: 50px;
  border-radius: 0;
}
.product h3 {
  min-height: 58px;
  margin: 16px 0 8px;
  color: #2f3032;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 900;
}
.product .stars {
  margin: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid #ddd;
}
.product .price {
  margin: 14px 0 20px;
  color: #303030;
  font-size: 23px;
  font-weight: 950;
}
.product .cart {
  display: flex;
  width: 100%;
  min-height: 46px;
  margin: 0;
  padding: 0 18px;
  border-radius: 999px;
  background: #282a2a;
  color: #ffde00;
  font-size: 15px;
  font-weight: 950;
  text-align: center;
}
.product .cart:hover {
  background: #1f2020;
}

@media (max-width: 560px) {
  .product {
    max-width: 292px;
  }
  .product h3,
  .product .stars,
  .product .price,
  .product .cart {
    margin-left: 0;
    margin-right: 0;
  }
}
/* Product price inline alignment */
.product .price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
  line-height: 1;
}
.product .price sup {
  position: static;
  top: auto;
  font-size: .58em;
  line-height: 1;
  margin-left: 1px;
}
.product .price del {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  margin-left: 0;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.product .price del sup {
  font-size: .62em;
}
/* Product price tight cents */
.product .price {
  gap: 5px;
}
.product .price > sup {
  margin-left: -4px;
  transform: translateY(-.18em);
}
.product .price del {
  margin-left: 4px;
  gap: 0;
}
.product .price del sup {
  margin-left: -2px;
  transform: translateY(-.12em);
}
/* Product demo player controls */
.product-audio button {
  position: relative;
  display: grid;
  place-items: center;
}
.product-audio button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #ffd323;
}
.product-audio.is-playing button::before {
  width: 10px;
  height: 12px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, #ffd323 0 35%, transparent 35% 65%, #ffd323 65% 100%);
}
.product-audio:not(.has-audio) {
  opacity: .72;
}
.product-audio:not(.has-audio) button::before {
  display: none;
}
.product-audio span {
  cursor: pointer;
  overflow: hidden;
}
.product-audio span i {
  width: 0;
  transition: width .08s linear;
}
/* Clean order cover image */
.order-product-media.has-image {
  background-size: cover;
  background-position: center;
  text-shadow: none;
}
.order-product-media span,
.order-product-media strong {
  display: none !important;
}
/* Order cover full image fit */
.order-product-media {
  min-height: auto;
  aspect-ratio: 1 / 1;
  max-height: 560px;
  background-color: #061226;
  background-repeat: no-repeat;
}
.order-product-media.has-image {
  background-size: contain;
  background-position: center;
}

@media (max-width: 980px) {
  .order-product-media {
    max-height: none;
  }
}

  to { transform: translateX(-100%); }
}
/* Order player marquee title */
.order-player-top {
  overflow: hidden;
  align-items: center;
}
.order-player-top strong {
  min-width: 0;
  max-width: 285px;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}
.order-player-top strong span {
  display: inline-block;
  min-width: max-content;
  padding-left: 0;
}
.order-studio-player:hover .order-player-top strong span,
.order-studio-player.is-playing .order-player-top strong span {
  animation: orderTitleMarquee 8s linear infinite alternate;
}
@keyframes orderTitleMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% + 285px)); }
}

@media (max-width: 620px) {
  .order-player-top strong {
    max-width: 190px;
  }
  @keyframes orderTitleMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-100% + 190px)); }
  }
}
/* Ready-made pack order panel */
.order-ready-panel {
  padding-bottom: 98px;
}
.ready-offer {
  padding: 18px;
  border: 1px solid #dbe6f4;
  border-radius: 18px;
  background: #f8fbff;
}
.ready-offer h3 {
  margin: 0 0 10px;
  color: #071936;
  font-size: 30px;
  line-height: 1.05;
  text-transform: uppercase;
}
.ready-offer p {
  margin: 0 0 16px;
  color: #3f4c64;
  font-size: 16px;
  line-height: 1.55;
}
.ready-offer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: #26344d;
  font-weight: 700;
}
.ready-offer li::marker {
  color: #1d56df;
}
/* Admin product detail textarea */
.admin-form-grid textarea {
  width: 100%;
  min-height: 120px;
  border: 1px solid #cfd8e6;
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  color: #23304a;
  font: inherit;
  font-weight: 600;
  resize: vertical;
}
.admin-product-edit textarea {
  min-height: 110px;
}

/* Cart validation */
.cart-validate-form {
  margin: 24px 0 0;
}
.cart-validate-form .cart-primary {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.cart-alert-error {
  border-color: #fecaca;
  background: #fff1f2;
  color: #be123c;
}
.orders-created-alert {
  margin: 0 0 22px;
}

/* Admin order delivery */
.admin-delivery-count {
  display: inline-flex !important;
  width: fit-content;
  min-height: 32px;
  margin: 0 !important;
  padding: 6px 12px;
  align-items: center;
  border-radius: 999px;
  color: #1557e8 !important;
  background: #eaf2ff;
  font-weight: 950;
}
.admin-order-delivery-row td {
  padding-top: 0;
  background: #f8fbff;
}
.admin-order-delivery {
  border: 1px solid #dce7f5;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
.admin-order-delivery summary {
  min-height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  color: #071936;
  font-weight: 950;
  cursor: pointer;
}
.admin-order-upload-form {
  padding: 0 18px 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.admin-order-upload-form button {
  grid-column: span 1;
}

@media (max-width: 980px) {
  .admin-order-upload-form {
    grid-template-columns: 1fr;
  }
  .admin-order-upload-form .admin-wide,
  .admin-order-upload-form button {
    grid-column: auto;
  }
}

/* Professional invoice document */
.invoice-document-body {
  margin: 0;
  background: #2b2b2b;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
}
.invoice-document {
  position: relative;
  width: 794px;
  min-height: 1040px;
  margin: 4px auto;
  padding: 92px 62px 40px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 0 1px #111, 0 18px 60px rgba(0, 0, 0, .28);
}
.invoice-ribbon {
  position: absolute;
  top: 22px;
  right: -88px;
  width: 360px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(38deg);
  color: #fff;
  background: #1d56df;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 2px;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .14);
}
.invoice-ribbon.is-paid {
  background: #8cdc3f;
}
.invoice-ribbon.is-pending {
  background: #35aef4;
}
.invoice-document-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.invoice-document-header img {
  width: 300px;
  display: block;
}
.invoice-document-header p {
  margin: 10px 0 0;
  color: #333;
  font-size: 13px;
}
.invoice-document-actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  align-items: center;
}
.invoice-document-actions a,
.invoice-document-actions button {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #c6c6c6;
  border-radius: 4px;
  background: #f2f2f2;
  color: #111;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}
.invoice-summary-band {
  margin: 28px 0 38px;
  padding: 8px 6px 10px;
  background: #eee;
}
.invoice-summary-band h1 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.1;
}
.invoice-summary-band p {
  margin: 5px 0 0;
  font-size: 14px;
}
.invoice-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 0 0 36px;
}
.invoice-address-block {
  min-height: 116px;
}
.invoice-address-block h2 {
  margin: 0 0 4px;
  font-size: 14px;
}
.invoice-address-block strong,
.invoice-address-block span {
  display: block;
  font-size: 12px;
  line-height: 1.28;
}
.invoice-lines,
.invoice-transactions {
  margin-top: 30px;
}
.invoice-lines table,
.invoice-transactions table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #c8c8c8;
  font-size: 12px;
}
.invoice-lines th,
.invoice-lines td,
.invoice-transactions th,
.invoice-transactions td {
  padding: 6px 6px;
  border: 1px solid #c8c8c8;
}
.invoice-lines th,
.invoice-transactions th {
  background: #e9e9e9;
  font-weight: 700;
  text-align: center;
}
.invoice-lines td:first-child {
  width: 74%;
}
.invoice-lines td:last-child,
.invoice-lines th:last-child,
.invoice-transactions td:last-child,
.invoice-transactions th:last-child {
  text-align: center;
  white-space: nowrap;
}
.invoice-lines td span {
  display: block;
  margin-top: 3px;
  color: #333;
}
.invoice-total-line td {
  background: #eee;
  font-weight: 700;
}
.invoice-total-line td:first-child {
  text-align: right;
}
.invoice-total-line.is-final td {
  font-weight: 900;
}
.invoice-transactions h2 {
  margin: 0 0 16px 4px;
  font-size: 18px;
}
.invoice-transactions td {
  text-align: center;
}
.invoice-transactions .invoice-total-line td:first-child {
  text-align: right;
}
.invoice-document-footer {
  position: absolute;
  left: 62px;
  right: 62px;
  bottom: 38px;
  text-align: center;
}
.invoice-document-footer p {
  margin: 0;
  font-size: 11px;
}

@media print {
  .invoice-document-body {
    background: #fff;
  }
  .invoice-document {
    width: auto;
    min-height: 100vh;
    margin: 0;
    box-shadow: none;
  }
  .invoice-document-actions {
    display: none;
  }
}

@media (max-width: 840px) {
  .invoice-document {
    width: calc(100% - 24px);
    min-height: auto;
    padding: 72px 24px 70px;
  }
  .invoice-document-header img {
    width: 220px;
  }
  .invoice-meta-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .invoice-ribbon {
    right: -116px;
  }
.invoice-document-footer {
  position: static;
  margin-top: 40px;
}
}

/* Webradio logo carousel */
.radio-showcase {
  padding: 72px 0 86px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(236, 248, 255, .72), rgba(255, 255, 255, .96));
}
.radio-showcase-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 30px;
}
.radio-showcase-header h2 {
  max-width: 760px;
  margin: 8px 0 12px;
  color: #071936;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
  letter-spacing: 0;
}
.radio-showcase-header p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: #53627b;
  font-size: 18px;
  line-height: 1.6;
}
.radio-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.radio-carousel::before,
.radio-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(160px, 18vw);
  pointer-events: none;
}
.radio-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #f7fcff, rgba(247, 252, 255, 0));
}
.radio-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}
.radio-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 10px 0;
  animation: radioLogoMarquee 34s linear infinite;
  will-change: transform;
}
.radio-carousel:hover .radio-track {
  animation-play-state: paused;
}
.radio-logo-card {
  width: 210px;
  min-height: 132px;
  padding: 14px 16px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  gap: 8px;
  flex: 0 0 auto;
  border: 1px solid #dce8f6;
  border-radius: 18px;
  background:
    radial-gradient(circle at 22% 18%, rgba(48, 189, 244, .24), transparent 28%),
    linear-gradient(135deg, #ffffff, #f4f9ff);
  box-shadow: 0 18px 42px rgba(7, 25, 54, .08);
}
.radio-logo-card img {
  width: 100%;
  height: 82px;
  object-fit: contain;
  align-self: center;
  justify-self: center;
}
.radio-logo-card strong {
  color: #071936;
  font-size: 25px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}
.radio-logo-card span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: #1557df;
  background: #eaf3ff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1.4px;
}
@keyframes radioLogoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-25% - 13.5px)); }
}

@media (max-width: 720px) {
  .radio-showcase {
    padding: 54px 0 64px;
  }
  .radio-showcase-header {
    width: min(100% - 28px, 1180px);
  }
  .radio-logo-card {
    width: 176px;
    min-height: 116px;
  }
  .radio-logo-card strong {
    font-size: 21px;
  }
}

/* Admin webradios */
.admin-radio-list {
  display: grid;
  gap: 18px;
}
.admin-radio-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid #dce7f5;
  border-radius: 20px;
  background: #f8fbff;
}
.admin-radio-side {
  display: grid;
  gap: 10px;
  align-content: start;
}
.admin-radio-preview {
  min-height: 130px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid #dce8f6;
  border-radius: 18px;
  background:
    radial-gradient(circle at 22% 18%, rgba(48, 189, 244, .24), transparent 28%),
    linear-gradient(135deg, #fff, #f4f9ff);
}
.admin-radio-preview img {
  display: block !important;
  width: 100% !important;
  height: 82px !important;
  max-width: 100% !important;
  max-height: 82px !important;
  object-fit: contain !important;
}
.admin-radio-preview strong {
  color: #071936;
  font-size: 26px;
  line-height: 1;
  font-weight: 950;
}
.admin-radio-preview span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: #1557df;
  background: #eaf3ff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1.4px;
}
.admin-radio-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}
.admin-radio-edit {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .admin-radio-card {
    grid-template-columns: 1fr;
  }
  .admin-radio-edit {
    grid-template-columns: 1fr;
  }
}
