:root {
  --bg: #f4f7f3;
  --surface: #ffffff;
  --surface-soft: #f1f7f2;
  --surface-strong: #0f3b34;
  --surface-strong-alt: #12463d;
  --text: #16302b;
  --muted: #5f756f;
  --line: rgba(22, 48, 43, 0.1);
  --accent: #f08b51;
  --accent-strong: #db6d34;
  --accent-soft: rgba(240, 139, 81, 0.14);
  --success: #1f7a63;
  --hero-shadow: 0 32px 90px rgba(15, 59, 52, 0.18);
  --card-shadow: 0 24px 60px rgba(14, 40, 36, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(31, 122, 99, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(240, 139, 81, 0.16), transparent 24%),
    linear-gradient(180deg, #f7fbf8 0%, #edf5f0 55%, #f8f4ee 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(15, 59, 52, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 59, 52, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 88%);
}

.page-shell {
  width: min(1280px, calc(100% - 28px));
  margin: 14px auto 28px;
  padding: 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--hero-shadow);
  backdrop-filter: blur(14px);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(15, 59, 52, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 36px rgba(15, 59, 52, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #f6fbf8;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.32), transparent 40%),
    linear-gradient(135deg, #f59d69 0%, #ef7d40 100%);
  color: #112f29;
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-text {
  font-weight: 800;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-nav a,
.contact-card a,
.legal-links a,
.back-link {
  text-decoration: none;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(246, 251, 248, 0.86);
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.site-nav a:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.lang-button {
  border: 0;
  background: transparent;
  color: rgba(246, 251, 248, 0.72);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.lang-button.is-active {
  background: #ffffff;
  color: var(--surface-strong);
}

.hero,
.seo-intro,
.metrics,
.content-grid,
.packs-section,
.music-section,
.split-section,
.faq-section,
.showcase,
.reviews-section,
.contact-section {
  animation: rise 0.7s ease both;
}

.hero-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 30px;
  align-items: center;
  margin-bottom: 26px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(10, 48, 41, 0.98) 0%, rgba(18, 70, 61, 0.96) 55%, rgba(28, 106, 90, 0.94) 100%);
  box-shadow: var(--hero-shadow);
  overflow: hidden;
  position: relative;
}

.hero-banner::before,
.hero-banner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-banner::before {
  width: 380px;
  height: 380px;
  top: -160px;
  right: -110px;
  background: rgba(240, 139, 81, 0.18);
}

.hero-banner::after {
  width: 280px;
  height: 280px;
  left: -110px;
  bottom: -140px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  color: #f7fcfa;
}

.eyebrow,
.panel-label,
.showcase-card p,
.hero-floating-label,
.pack-badge,
.contact-card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 900;
}

.eyebrow {
  color: rgba(247, 252, 250, 0.72);
}

.hero h1,
.section-heading h2,
.contact-copy h2,
.seo-intro-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 12ch;
  margin-top: 16px;
  font-size: clamp(3.2rem, 7vw, 5.7rem);
  line-height: 0.94;
}

.hero-intro,
.seo-intro-copy p,
.card p,
.timeline p,
.track-body p,
.contact-copy p,
.review-text,
.review-empty,
.metrics span,
.shuffle-player-copy p:last-child,
.shuffle-status,
.info-strip,
.legal-card p,
.legal-card li,
.form-intro,
.form-help,
.form-note,
.payment-breakdown {
  color: var(--muted);
  line-height: 1.72;
}

.hero-intro {
  max-width: 62ch;
  color: rgba(247, 252, 250, 0.82);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #f59c67 0%, #ef7d40 100%);
  color: #132c26;
  box-shadow: 0 18px 34px rgba(240, 139, 81, 0.26);
}

.button-primary:hover {
  background: linear-gradient(135deg, #f7a979 0%, #ef6e2d 100%);
}

.button-secondary {
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-trust-item,
.metrics article,
.card,
.timeline article,
.track-card,
.review-card,
.review-empty,
.contact-card,
.seo-intro-copy,
.seo-aside,
.info-strip,
.shuffle-player {
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
}

.hero-trust-item {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-trust-item strong {
  display: block;
  margin-bottom: 8px;
  color: #f8fdfa;
  font-size: 1rem;
}

.hero-trust-item span {
  color: rgba(247, 252, 250, 0.74);
}

.hero-visual {
  min-height: 100%;
  display: grid;
  align-content: center;
  gap: 18px;
}

.hero-photo {
  min-height: 560px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(11, 35, 31, 0.12), rgba(11, 35, 31, 0.34)),
    url("images/hero-image.webp");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-orb-one {
  width: 180px;
  height: 180px;
  top: 26px;
  right: 26px;
  background: rgba(240, 139, 81, 0.28);
  filter: blur(4px);
}

.hero-orb-two {
  width: 120px;
  height: 120px;
  left: 24px;
  bottom: 28px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-floating-card {
  width: min(340px, 86%);
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 40px rgba(15, 59, 52, 0.2);
}

.hero-floating-card strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 1.08rem;
}

.hero-floating-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.hero-floating-card-secondary {
  margin-left: auto;
  background: rgba(15, 59, 52, 0.94);
  color: #f7fcfa;
}

.hero-floating-card-secondary p {
  color: rgba(247, 252, 250, 0.74);
}

.hero-floating-label {
  color: var(--accent-strong);
}

.hero-floating-card-secondary .hero-floating-label {
  color: rgba(240, 139, 81, 0.86);
}

.seo-intro,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
}

.seo-intro-copy,
.seo-aside,
.metrics article,
.card,
.timeline article,
.track-card,
.review-card,
.review-empty,
.contact-card,
.info-strip,
.shuffle-player {
  background: rgba(255, 255, 255, 0.94);
}

.seo-intro-copy,
.seo-aside,
.card,
.timeline article,
.contact-card,
.review-card,
.review-empty,
.info-strip {
  padding: 24px;
}

.seo-intro-copy .eyebrow {
  color: var(--success);
}

.section-heading,
.contact-copy {
  max-width: 780px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.contact-copy h2,
.seo-intro-copy h2 {
  margin-top: 10px;
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 0.98;
  color: #11352e;
}

.section-intro {
  max-width: 60ch;
  margin: 14px 0 0;
  color: var(--muted);
}

.seo-aside-title {
  margin: 0 0 16px;
  font-weight: 900;
  color: #14372f;
}

.seo-list,
.feature-list,
.options-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.cards,
.timeline,
.showcase-grid,
.track-grid,
.reviews-grid {
  display: grid;
  gap: 20px;
}

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

.metrics article {
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(15, 59, 52, 0.96), rgba(20, 78, 67, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
}

.metrics strong {
  display: block;
  margin-bottom: 8px;
  color: #f7fcfa;
  font-size: 1.02rem;
}

.metrics span {
  color: rgba(247, 252, 250, 0.74);
}

.content-grid,
.packs-section,
.music-section,
.split-section,
.faq-section,
.showcase,
.reviews-section,
.contact-section {
  padding: 42px 0;
}

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

.faq-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
}

.card::before,
.timeline article::before {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(240, 139, 81, 0.1) 100%);
  margin-bottom: 18px;
}

.card h3,
.timeline h3,
.showcase-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.packs-section .section-heading {
  display: grid;
  gap: 0;
}

.pack-cards {
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pack-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.pack-kicker,
.pack-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 900;
  background: rgba(16, 61, 53, 0.08);
  color: var(--surface-strong);
  margin-bottom: 12px;
}

.pack-card-featured {
  background:
    linear-gradient(180deg, rgba(240, 139, 81, 0.08), rgba(255, 255, 255, 0.96));
  border-color: rgba(240, 139, 81, 0.34);
  transform: translateY(-10px);
}

.pack-badge {
  color: var(--accent-strong);
  background: rgba(240, 139, 81, 0.16);
}

.pack-name {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: 1.08rem;
  line-height: 1.35;
}

.pack-price {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1;
  color: #103d35;
}

.pack-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.pack-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 59, 52, 0.06);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-list {
  color: var(--muted);
  line-height: 1.68;
  margin-top: 0;
}

.info-strip {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.info-strip p {
  margin: 0;
  font-weight: 900;
}

.music-section-featured {
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(240, 139, 81, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 242, 0.96));
  border: 1px solid rgba(17, 53, 46, 0.08);
  box-shadow: var(--hero-shadow);
}

.music-section-featured .section-heading {
  max-width: 860px;
}

.shuffle-player {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 22px;
  margin-top: 28px;
}

.shuffle-player-hero {
  margin-top: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.hero-banner .shuffle-player-copy h3,
.hero-banner .shuffle-status strong {
  color: #f7fcfa;
}

.hero-banner .shuffle-player-copy p:last-child,
.hero-banner .shuffle-status,
.hero-banner .shuffle-status span {
  color: rgba(247, 252, 250, 0.76);
}

.hero-banner .shuffle-button.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f7fcfa;
}

.shuffle-player-copy h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1;
}

.shuffle-status {
  margin: 0;
}

.shuffle-status strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
}

.shuffle-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.shuffle-button {
  border: 0;
  cursor: pointer;
}

.shuffle-button.button-secondary {
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.shuffle-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.shuffle-player audio,
.track-body audio {
  width: 100%;
}

.track-carousel-shell {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.track-carousel-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.track-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 14px;
  margin-inline: -4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.track-card {
  overflow: hidden;
  min-height: 100%;
  scroll-snap-align: start;
}

.track-card:hover {
  transform: translateY(-4px);
}

.track-visual {
  min-height: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff8f3;
}

.track-visual span {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.track-visual h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 0.96;
}

.track-body {
  padding: 22px;
}

.visual-one {
  background:
    linear-gradient(180deg, rgba(12, 24, 22, 0.08), rgba(12, 24, 22, 0.78)),
    linear-gradient(135deg, #be6237 0%, #f1a36d 100%);
}

.visual-two {
  background:
    linear-gradient(180deg, rgba(12, 24, 22, 0.08), rgba(12, 24, 22, 0.78)),
    linear-gradient(135deg, #175049 0%, #49a690 100%);
}

.visual-three {
  background:
    linear-gradient(180deg, rgba(12, 24, 22, 0.08), rgba(12, 24, 22, 0.78)),
    linear-gradient(135deg, #3f5842 0%, #b5a05c 100%);
}

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

.timeline article span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 900;
}

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

.showcase-card {
  min-height: 300px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 26px;
  color: #fff9f3;
  box-shadow: var(--card-shadow);
}

.showcase-link {
  margin-top: 18px;
  align-self: flex-start;
  color: #fff8f2;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.showcase-link:hover {
  background: rgba(255, 255, 255, 0.18);
}

.accent-one {
  background:
    linear-gradient(180deg, transparent 18%, rgba(14, 30, 26, 0.86) 100%),
    linear-gradient(135deg, #b85132 0%, #e09264 100%);
}

.accent-two {
  background:
    linear-gradient(180deg, transparent 18%, rgba(14, 30, 26, 0.86) 100%),
    linear-gradient(135deg, #0f4f46 0%, #68a994 100%);
}

.accent-three {
  background:
    linear-gradient(180deg, transparent 18%, rgba(14, 30, 26, 0.86) 100%),
    linear-gradient(135deg, #587148 0%, #b5a16a 100%);
}

.accent-four {
  background:
    linear-gradient(180deg, transparent 18%, rgba(14, 30, 26, 0.86) 100%),
    linear-gradient(135deg, #6d3d4b 0%, #c9819a 100%);
}

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

.review-card {
  display: grid;
  gap: 12px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.review-author {
  margin: 0;
  font-weight: 900;
}

.review-date {
  color: var(--muted);
  font-size: 0.94rem;
}

.review-rating {
  color: var(--accent-strong);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.contact-card {
  display: grid;
  gap: 16px;
}

.contact-card p {
  margin: 0;
  font-weight: 900;
}

.contact-card-label {
  color: var(--success);
}

.contact-card-section,
.contact-link-list {
  display: grid;
  gap: 8px;
}

.contact-card a,
.legal-links a,
.back-link,
.legal-card a {
  color: var(--text);
}

.contact-card a:hover,
.legal-links a:hover,
.back-link:hover,
.legal-card a:hover {
  color: var(--accent-strong);
}

.form-page {
  max-width: 920px;
}

.client-dashboard-page {
  max-width: none;
  width: min(1480px, calc(100% - 24px));
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-weight: 800;
}

.page-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.page-tools .back-link {
  margin-bottom: 0;
}

.page-tools .language-switcher {
  background: rgba(17, 53, 46, 0.08);
  border: 1px solid rgba(17, 53, 46, 0.08);
}

.page-tools .lang-button {
  color: rgba(17, 53, 46, 0.72);
}

.page-tools .lang-button.is-active {
  background: var(--surface-strong);
  color: #ffffff;
}

.form-shell,
.order-form,
.paypal-button-shell {
  display: grid;
  gap: 18px;
}

.form-card,
.thank-you-card,
.legal-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  padding: 24px;
  box-shadow: var(--card-shadow);
}

.legal-card h1,
.legal-card h2 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.legal-card h2 {
  margin-bottom: 10px;
  font-size: 1.9rem;
}

.legal-card h2:not(:first-of-type) {
  margin-top: 28px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.form-field label,
.form-group legend {
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(17, 53, 46, 0.14);
  border-radius: 16px;
  background: #f9fcfa;
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(240, 139, 81, 0.24);
  border-color: rgba(240, 139, 81, 0.6);
}

.form-note.is-error {
  color: #9a3f25;
}

.form-note.is-success {
  color: var(--success);
}

.form-help {
  font-size: 0.95rem;
}

.payment-summary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 242, 0.96));
}

.payment-total,
.payment-breakdown,
.form-group,
.consent-option {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
}

.payment-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
}

.payment-total span {
  color: var(--muted);
  font-weight: 800;
}

.payment-total strong {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-family: Georgia, "Times New Roman", serif;
}

.payment-breakdown {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
}

.payment-summary-lines {
  display: grid;
  gap: 8px;
  padding: 14px 18px;
  border: 1px solid rgba(34, 139, 92, 0.18);
  border-radius: 18px;
  background: rgba(237, 249, 241, 0.88);
}

.payment-summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.98rem;
}

.payment-summary-line span {
  color: var(--muted);
  font-weight: 700;
}

.payment-summary-line strong {
  color: var(--text);
}

.payment-summary-line.is-discount strong {
  color: #1f8a4c;
}

.payment-summary-line.is-total {
  padding-top: 6px;
  border-top: 1px dashed rgba(34, 139, 92, 0.24);
}

.payment-summary-line.is-total strong {
  font-size: 1.05rem;
}

.payment-breakdown strong {
  color: var(--text);
}

.payment-modal[hidden] {
  display: none;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: min(8vh, 72px) 16px 16px;
  overflow-y: auto;
  isolation: isolate;
}

.payment-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 0;
  background: rgba(9, 30, 27, 0.54);
}

.payment-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 560px);
  max-width: 560px;
  margin: 0;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 60px rgba(9, 30, 27, 0.24);
}

.payment-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 53, 46, 0.08);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.paypal-button-shell.is-loading {
  min-height: 92px;
  align-items: center;
}

.paypal-button-shell.is-loading::before {
  content: "Chargement securise de PayPal...";
  display: block;
  padding: 16px 18px;
  border: 1px dashed rgba(17, 53, 46, 0.18);
  border-radius: 18px;
  background: rgba(241, 247, 242, 0.76);
  color: var(--muted);
  text-align: center;
}

.form-group {
  margin: 0;
  padding: 18px;
  display: grid;
  gap: 14px;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.checkbox-option input {
  accent-color: var(--accent-strong);
}

.consent-option {
  padding: 14px 16px;
}

.legal-links {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.legal-links p {
  margin: 0;
  font-weight: 900;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-account-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  transition: 0.2s ease;
}

.header-account-link:hover {
  background: rgba(255, 255, 255, 0.16);
}

.account-order-banner,
.client-benefits,
.delivery-panel,
.message-item,
.order-list-item {
  border: 1px solid var(--line);
  background: rgba(241, 247, 242, 0.72);
  box-shadow: var(--card-shadow);
}

.account-order-banner {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
}

.client-shell {
  gap: 24px;
}

.client-auth-layout,
.dashboard-grid {
  display: grid;
  gap: 24px;
}

.dashboard-grid {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
  align-items: start;
}

.client-profile-summary,
.client-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.client-profile-summary {
  margin-bottom: 20px;
  align-items: flex-start;
}

.client-avatar {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.auth-buttons {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.auth-provider-button {
  justify-content: center;
}

.client-benefits {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
}

.client-benefits p,
.client-benefits-list {
  margin: 0;
}

.client-benefits-list {
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.order-list {
  display: grid;
  gap: 14px;
}

.order-list-item {
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 18px;
  text-align: left;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.order-list-item strong,
.message-heading strong {
  font-size: 1rem;
}

.order-list-number {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 122, 99, 0.1);
  color: var(--surface-strong);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.order-list-item span,
.message-heading span,
.order-detail-meta,
.message-item p {
  color: var(--muted);
}

.order-list-item:hover,
.order-list-item.is-active,
.order-list-item.active {
  transform: translateY(-2px);
  border-color: rgba(240, 139, 81, 0.38);
  background: rgba(240, 139, 81, 0.12);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31, 122, 99, 0.12);
  color: var(--success);
  font-size: 0.84rem;
  font-weight: 900;
}

.order-detail-meta {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.delivery-panel {
  padding: 20px;
  border-radius: 22px;
  margin-bottom: 20px;
}

.conversation-panel {
  display: grid;
  gap: 18px;
}

.message-list {
  min-height: 240px;
  max-height: 460px;
  overflow: auto;
  display: grid;
  gap: 14px;
  padding-right: 4px;
}

.message-item {
  padding: 18px;
  border-radius: 22px;
}

.message-item.is-own {
  background: rgba(240, 139, 81, 0.12);
  border-color: rgba(240, 139, 81, 0.28);
}

.message-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.message-item p {
  margin: 0;
  white-space: pre-wrap;
}

.message-attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.message-attachments a {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 59, 52, 0.08);
  color: var(--surface-strong);
  font-weight: 700;
}

.client-hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(circle at top right, rgba(240, 139, 81, 0.22), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(135deg, rgba(10, 48, 41, 0.98) 0%, rgba(17, 66, 57, 0.94) 52%, rgba(27, 100, 85, 0.9) 100%);
  box-shadow: 0 30px 80px rgba(15, 59, 52, 0.2);
  color: #f7fcfa;
}

.client-hero-card .eyebrow,
.client-hero-card h1,
.client-hero-card .form-intro,
.client-hero-card .form-note {
  position: relative;
  z-index: 1;
}

.client-hero-card h1 {
  max-width: 12ch;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 0.95;
}

.client-hero-card .form-intro {
  max-width: 62ch;
  color: rgba(247, 252, 250, 0.86);
  font-size: 1.04rem;
}

.client-quick-points {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}

.client-quick-point {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.client-quick-point strong {
  color: #ffffff;
  font-size: 0.98rem;
}

.client-quick-point span {
  color: rgba(247, 252, 250, 0.78);
  font-size: 0.93rem;
  line-height: 1.5;
}

.client-auth-layout {
  gap: 28px;
  justify-items: center;
}

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

.client-stage-auth {
  justify-items: center;
}

.client-stage-dashboard {
  gap: 24px;
}

.client-dashboard-intro {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 0 4px;
}

.client-dashboard-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.client-dashboard-intro h2 {
  margin: 6px 0 10px;
}

.client-dashboard-intro .form-help {
  max-width: 64ch;
}

.client-auth-card,
.client-overview-card,
.client-profile-card,
.client-orders-card,
.client-order-detail-card,
.client-message-orders-card,
.client-message-thread-card {
  border-radius: 28px;
  border: 1px solid rgba(17, 53, 46, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 251, 248, 0.92) 100%);
}

.client-auth-card {
  width: min(100%, 920px);
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
}

.client-auth-card h2,
.client-overview-card h2,
.client-profile-card h2,
.client-orders-card h2,
.client-order-detail-card h2,
.client-message-orders-card h2,
.client-message-thread-card h2 {
  margin-bottom: 10px;
}

.client-overview-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 32px);
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at top right, rgba(240, 139, 81, 0.24), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(10, 48, 41, 0.98) 0%, rgba(15, 59, 52, 0.94) 52%, rgba(29, 110, 93, 0.92) 100%);
  box-shadow: 0 28px 70px rgba(15, 59, 52, 0.18);
  color: #f7fcfa;
}

.client-overview-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.client-overview-copy {
  display: grid;
  gap: 6px;
}

.client-overview-copy h2,
.client-overview-copy .form-help,
.client-overview-card .eyebrow {
  color: #f7fcfa;
}

.client-overview-copy .form-help {
  color: rgba(247, 252, 250, 0.82);
}

.client-overview-card .hero-actions {
  margin-bottom: 0;
}

.client-overview-card .button {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.client-overview-card .button:hover {
  background: rgba(255, 255, 255, 0.14);
}

.client-overview-stats {
  margin: 0;
}

.client-overview-stat {
  display: grid;
  gap: 8px;
  height: 100%;
  min-height: 108px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.client-overview-stat-label {
  color: rgba(247, 252, 250, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.client-overview-stat-value {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.25;
}

.client-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(17, 53, 46, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--card-shadow);
}

.client-tab-button {
  min-height: 72px;
  flex: 1 1 220px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px 12px;
  padding: 14px 18px;
  border: 1px solid rgba(17, 53, 46, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--surface-strong);
  text-align: left;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.client-tab-kicker {
  grid-column: 1 / 2;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.client-tab-label {
  grid-column: 1 / 2;
  font-size: 1rem;
  line-height: 1.25;
}

.client-tab-count {
  grid-column: 2 / 3;
  grid-row: 1 / span 2;
  min-width: 36px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(17, 53, 46, 0.08);
  color: var(--surface-strong);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.client-tab-button:hover,
.client-tab-button:focus-visible {
  border-color: rgba(240, 139, 81, 0.38);
  background: rgba(240, 139, 81, 0.12);
  transform: translateY(-1px);
}

.client-tab-button.is-active,
.client-tab-button.active,
.client-tab-button[aria-selected="true"] {
  border-color: transparent;
  background: linear-gradient(135deg, var(--surface-strong) 0%, #1f7a63 100%);
  color: #ffffff;
}

.client-tab-button.is-active .client-tab-kicker,
.client-tab-button.active .client-tab-kicker,
.client-tab-button[aria-selected="true"] .client-tab-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.client-tab-button.is-active .client-tab-count,
.client-tab-button.active .client-tab-count,
.client-tab-button[aria-selected="true"] .client-tab-count {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.client-tab-panel {
  display: grid;
  gap: 20px;
}

.client-tab-panel[hidden] {
  display: none !important;
}

.admin-detail-tabs {
  margin-bottom: 22px;
}

.admin-detail-tabs .client-tab-button {
  min-height: 64px;
  flex: 1 1 180px;
}

.client-orders-layout,
.client-message-layout {
  align-items: start;
}

.auth-buttons {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.email-auth-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 420px);
  margin-bottom: 18px;
}

.email-auth-switcher .button.is-active {
  background: var(--surface-strong);
  color: #ffffff;
  border-color: transparent;
}

.email-auth-form {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.email-auth-form[hidden] {
  display: none !important;
}

.auth-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.auth-provider-button {
  position: relative;
  min-height: 64px;
  justify-content: flex-start;
  padding-inline: 22px;
  font-size: 0.98rem;
  font-weight: 800;
}

.auth-provider-button::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
}

.provider-google {
  background: #ffffff;
  color: #14322b;
  border: 1px solid rgba(17, 53, 46, 0.12);
}

.provider-google::before {
  content: "G";
  background: rgba(17, 53, 46, 0.08);
  color: #14322b;
}

.client-benefits {
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(17, 53, 46, 0.04) 0%, rgba(240, 139, 81, 0.08) 100%);
}

.client-benefits p {
  font-weight: 800;
  color: var(--surface-strong);
}

.client-profile-card,
.client-orders-card,
.client-order-detail-card,
.client-message-orders-card,
.client-message-thread-card {
  position: relative;
  overflow: hidden;
}

.client-overview-card::before,
.client-profile-card::before,
.client-orders-card::before,
.client-order-detail-card::before,
.client-message-orders-card::before,
.client-message-thread-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--accent) 0%, #1f7a63 100%);
}

.client-orders-layout .client-orders-card,
.client-message-layout .client-message-orders-card {
  position: sticky;
  top: 18px;
  align-self: start;
}

.client-section-header {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.client-section-header h2,
.client-section-header h3 {
  margin: 4px 0 0;
}

.client-profile-summary {
  margin-bottom: 24px;
}

.client-avatar {
  width: 88px;
  height: 88px;
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(17, 53, 46, 0.12);
}

.client-profile-card .hero-actions,
.client-order-detail-card .hero-actions {
  margin-bottom: 18px;
}

.profile-form,
.message-form {
  display: grid;
  gap: 18px;
}

.profile-form .form-group,
.message-form {
  background: rgba(255, 255, 255, 0.72);
}

.message-form {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.admin-filter-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.admin-filter-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.admin-filter-link:hover,
.admin-filter-link:focus-visible {
  color: var(--surface-strong);
  text-decoration-color: var(--accent);
}

.admin-filter-link.is-active {
  color: var(--surface-strong);
  text-decoration-color: var(--accent);
}

.admin-console-shell {
  width: min(1600px, calc(100% - 24px));
  padding: 24px;
}

.admin-console-layout {
  display: grid;
  gap: 0;
}

.admin-console-hero {
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(240, 139, 81, 0.24), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(10, 48, 41, 0.98) 0%, rgba(15, 59, 52, 0.94) 52%, rgba(29, 110, 93, 0.92) 100%);
  box-shadow: 0 30px 80px rgba(15, 59, 52, 0.2);
  color: #f7fcfa;
}

.admin-console-badge {
  color: var(--surface-strong);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-console-title {
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.02;
  color: #ffffff;
}

.admin-console-intro {
  max-width: 62ch;
  color: rgba(247, 252, 250, 0.8);
  font-size: 1rem;
  line-height: 1.75;
}

.admin-session-alert {
  background: rgba(255, 255, 255, 0.14);
  color: #f7fcfa;
}

.admin-session-alert code {
  color: inherit;
}

.admin-hero-actions .btn {
  min-height: 48px;
  padding-inline: 18px;
  border-radius: 999px;
  font-weight: 700;
}

.admin-summary-card,
.admin-console-card,
.admin-thread-card,
.admin-message-form {
  border-radius: 24px;
  border: 1px solid rgba(17, 53, 46, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(246, 251, 248, 0.95) 100%);
  box-shadow: var(--card-shadow);
}

.admin-summary-card .card-body {
  display: grid;
  gap: 8px;
}

.admin-summary-label,
.admin-section-kicker,
.admin-detail-fact-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.admin-summary-value {
  color: var(--surface-strong);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
}

.admin-summary-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-sidebar-card,
.admin-detail-card,
.admin-promo-card {
  overflow: hidden;
}

.admin-sidebar-card .card-header,
.admin-detail-card .card-body,
.admin-promo-card .card-body {
  position: relative;
}

.admin-sidebar-card .card-header::before,
.admin-detail-card .card-body::before,
.admin-promo-card .card-body::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, #1f7a63 100%);
}

.admin-input-group .input-group-text {
  background: rgba(15, 59, 52, 0.05);
  border-color: rgba(17, 53, 46, 0.12);
  color: var(--muted);
  font-weight: 700;
}

.admin-filter-pills {
  align-items: center;
}

.admin-filter-link.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 59, 52, 0.05);
  color: var(--surface-strong);
  text-decoration: none;
  font-weight: 700;
}

.admin-filter-link.nav-link:hover,
.admin-filter-link.nav-link:focus-visible {
  background: rgba(240, 139, 81, 0.12);
  color: var(--surface-strong);
}

.admin-filter-link.nav-link.active,
.admin-filter-link.nav-link.is-active {
  background: linear-gradient(135deg, var(--surface-strong) 0%, #1f7a63 100%);
  color: #ffffff;
}

.admin-order-list {
  display: grid;
  gap: 10px;
}

.admin-order-item {
  border: 1px solid rgba(17, 53, 46, 0.08);
  border-radius: 18px !important;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.admin-order-item:hover,
.admin-order-item:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(240, 139, 81, 0.32);
  box-shadow: 0 16px 30px rgba(17, 53, 46, 0.08);
}

.admin-order-item.active,
.admin-order-item.is-active {
  background: linear-gradient(135deg, rgba(15, 59, 52, 0.94) 0%, rgba(31, 122, 99, 0.92) 100%);
  border-color: transparent;
  color: #ffffff;
}

.admin-order-item.active .small,
.admin-order-item.active .text-body-secondary,
.admin-order-item.is-active .small,
.admin-order-item.is-active .text-body-secondary {
  color: rgba(255, 255, 255, 0.76) !important;
}

.admin-order-item.active .badge,
.admin-order-item.is-active .badge {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
}

.admin-status-badge {
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 800;
}

.admin-detail-tab {
  min-height: 52px;
  padding: 12px 16px;
  border-radius: 18px;
  font-weight: 700;
}

.admin-detail-tab.active,
.admin-detail-tab.is-active {
  background: linear-gradient(135deg, var(--surface-strong) 0%, #1f7a63 100%);
}

.admin-detail-tab.active .badge,
.admin-detail-tab.is-active .badge {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
}

.admin-detail-accordion .accordion-item {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(17, 53, 46, 0.08);
}

.admin-detail-accordion .accordion-button {
  font-weight: 800;
  color: var(--surface-strong);
  background: rgba(255, 255, 255, 0.94);
}

.admin-detail-accordion .accordion-button:not(.collapsed) {
  color: var(--surface-strong);
  background: rgba(240, 139, 81, 0.08);
  box-shadow: none;
}

.admin-detail-fact {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 18px;
  border-radius: 18px;
  background: rgba(15, 59, 52, 0.05);
  border: 1px solid rgba(17, 53, 46, 0.06);
}

.admin-detail-fact-value {
  color: var(--surface-strong);
  font-size: 1rem;
  line-height: 1.4;
}

.admin-brief-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(17, 53, 46, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.admin-brief-card .list-group-item {
  padding-inline: 0;
  background: transparent;
}

.admin-delivery-list {
  margin-bottom: 0;
}

.admin-delivery-files-group,
.admin-promo-list-group {
  gap: 12px;
}

.admin-delivery-file,
.admin-promo-item {
  border: 1px solid rgba(17, 53, 46, 0.08);
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.92);
}

.admin-message-meta {
  background: rgba(15, 59, 52, 0.06);
  color: var(--surface-strong);
}

.admin-thread-card {
  background: linear-gradient(180deg, rgba(248, 251, 249, 0.96) 0%, rgba(240, 246, 242, 0.94) 100%);
}

.admin-message-list {
  min-height: 300px;
}

.admin-message-item {
  border: 1px solid rgba(17, 53, 46, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 24px rgba(15, 59, 52, 0.04);
}

.admin-message-form {
  background: rgba(255, 255, 255, 0.96);
}

.admin-inline-alert {
  border: 0;
  border-radius: 16px;
}

.admin-toast-container .toast {
  min-width: 320px;
  border-radius: 18px;
}

.order-list {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.order-list-compact .order-list-item {
  padding: 16px;
}

.order-list-item {
  gap: 6px;
  background: rgba(255, 255, 255, 0.96);
}

.order-list-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.order-list-item strong {
  color: var(--surface-strong);
}

.order-list-status {
  padding: 8px 12px;
  background: rgba(15, 59, 52, 0.08);
  color: var(--surface-strong);
  font-size: 0.76rem;
  font-weight: 900;
}

.order-list-item span:last-child {
  font-size: 0.84rem;
}

.status-pill {
  background: linear-gradient(135deg, rgba(31, 122, 99, 0.14) 0%, rgba(240, 139, 81, 0.18) 100%);
  border: 1px solid rgba(31, 122, 99, 0.14);
}

.order-detail-meta {
  gap: 10px;
  margin-bottom: 22px;
}

.client-order-callout {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(15, 59, 52, 0.06);
  color: var(--surface-strong);
}

.client-order-callout p {
  color: var(--muted);
}

.client-order-callout-accent {
  background: linear-gradient(135deg, rgba(15, 59, 52, 0.08) 0%, rgba(240, 139, 81, 0.16) 100%);
}

.client-brief-grid {
  margin: 0;
}

.client-brief-entry {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 246, 0.95) 100%);
  box-shadow: 0 20px 34px rgba(15, 59, 52, 0.06);
}

.client-brief-entry .card-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.client-brief-entry-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-brief-entry-value {
  margin: 0;
  color: var(--surface-strong);
  font-size: 1rem;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
}

.order-detail-meta p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15, 59, 52, 0.05);
}

.order-detail-block {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(17, 53, 46, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.order-detail-block strong {
  color: var(--surface-strong);
}

.delivery-panel {
  padding: 24px;
  border-radius: 24px;
  border-color: rgba(31, 122, 99, 0.14);
  background: linear-gradient(135deg, rgba(31, 122, 99, 0.08) 0%, rgba(240, 139, 81, 0.12) 100%);
}

.message-context {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15, 59, 52, 0.05);
  color: var(--muted);
}

.message-context p {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
}

.delivery-files-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.delivery-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(17, 53, 46, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.delivery-file-name {
  font-weight: 700;
  color: var(--surface-strong);
  word-break: break-word;
}

.delivery-file-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.delivery-file-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 53, 46, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: var(--surface-strong);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.delivery-file-action:hover,
.delivery-file-action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(240, 139, 81, 0.36);
  background: rgba(240, 139, 81, 0.12);
}

.delivery-file-action:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.conversation-panel {
  gap: 20px;
}

.message-list {
  padding: 10px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(244, 247, 243, 0.96) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.message-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: #ffffff;
}

.message-item.is-own {
  background: linear-gradient(135deg, rgba(240, 139, 81, 0.14) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.message-heading {
  margin-bottom: 12px;
}

.message-attachments a {
  background: rgba(240, 139, 81, 0.12);
  color: var(--surface-strong);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero-banner,
  .seo-intro,
  .contact-section,
  .shuffle-player {
    grid-template-columns: 1fr;
  }

  .client-quick-points {
    grid-template-columns: 1fr;
  }

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

  .dashboard-grid,
  .client-orders-layout,
  .client-message-layout {
    grid-template-columns: 1fr;
  }

  .client-orders-layout > .client-orders-card,
  .client-message-layout > .client-message-orders-card {
    position: relative;
    top: auto;
  }

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

  .cards,
  .faq-cards,
  .track-grid,
  .reviews-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .track-carousel {
    grid-auto-columns: minmax(300px, 82vw);
  }

  .pack-card-featured {
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    display: grid;
    justify-content: start;
  }

  .site-nav,
  .language-switcher,
  .header-actions {
    justify-self: start;
  }

  .metrics,
  .cards,
  .faq-cards,
  .timeline,
  .reviews-grid,
  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .track-grid {
    grid-template-columns: none;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .page-shell {
    width: min(100% - 16px, 100%);
    margin: 8px auto 22px;
    padding: 14px;
    border-radius: 22px;
  }

  .site-header {
    padding: 12px;
    border-radius: 18px;
  }

  .site-nav {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .site-nav a,
  .lang-button {
    font-size: 0.93rem;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .hero-banner,
  .music-section-featured,
  .seo-intro-copy,
  .seo-aside,
  .card,
  .timeline article,
  .contact-card,
  .info-strip,
  .review-card,
  .review-empty,
  .form-card,
  .thank-you-card,
  .legal-card,
  .payment-modal-dialog {
    padding: 20px;
  }

  .hero-photo {
    min-height: 380px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 10vw, 3.45rem);
    max-width: 100%;
  }

  .section-heading h2,
  .contact-copy h2,
  .seo-intro-copy h2,
  .client-hero-card h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-intro,
  .form-intro,
  .seo-intro-copy p,
  .contact-copy p,
  .client-hero-card .form-intro {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .card p,
  .timeline p,
  .track-body p,
  .review-text,
  .review-empty,
  .form-note,
  .form-help,
  .payment-breakdown,
  .client-dashboard-intro p {
    font-size: 0.94rem;
  }

  .button,
  .auth-provider-button {
    font-size: 0.96rem;
    padding: 13px 18px;
  }

  .form-field label,
  .checkbox-option,
  .payment-summary-line {
    font-size: 0.92rem;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 0.98rem;
  }

  .payment-total strong,
  .modal-total strong {
    font-size: 1.45rem;
  }

  .button {
    width: 100%;
  }

  .header-actions,
  .client-section-header,
  .client-profile-summary {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .client-overview-main {
    flex-direction: column;
  }

  .auth-buttons {
    grid-template-columns: 1fr;
  }

  .email-auth-switcher {
    width: 100%;
  }

  .client-tabs {
    display: grid;
  }

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

  .client-tab-button {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 64px;
  }

  .auth-inline-actions {
    display: grid;
  }

  .hero-actions,
  .shuffle-actions {
    display: grid;
  }

  .delivery-file-item {
    flex-direction: column;
    align-items: stretch;
  }

  .delivery-file-actions {
    justify-content: stretch;
  }

  .delivery-file-action {
    flex: 1 1 160px;
  }

  .pack-cards {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 82vw);
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 4px 12px;
    margin-inline: -4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    align-items: stretch;
  }

  .pack-card {
    min-height: 100%;
    scroll-snap-align: start;
  }

  .pack-card-featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

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

  .brand-text {
    font-size: 0.96rem;
  }

  .hero h1,
  .section-heading h2,
  .contact-copy h2,
  .seo-intro-copy h2 {
    line-height: 1;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 2.8rem);
    letter-spacing: -0.02em;
  }

  .section-heading h2,
  .contact-copy h2,
  .seo-intro-copy h2,
  .client-hero-card h1,
  .legal-card h1,
  .legal-card h2 {
    font-size: clamp(1.7rem, 9vw, 2.25rem);
  }

  .eyebrow,
  .panel-label,
  .hero-floating-label,
  .pack-badge,
  .contact-card-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero-intro,
  .form-intro,
  .seo-intro-copy p,
  .contact-copy p,
  .client-hero-card .form-intro,
  .client-hero-card .form-note {
    font-size: 0.95rem;
  }

  .card p,
  .timeline p,
  .track-body p,
  .review-text,
  .review-empty,
  .form-note,
  .form-help,
  .payment-breakdown,
  .client-dashboard-intro p,
  .legal-card p,
  .legal-card li {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .button,
  .auth-provider-button,
  .site-nav a,
  .lang-button {
    font-size: 0.92rem;
  }

  .form-field label,
  .checkbox-option,
  .payment-summary-line {
    font-size: 0.88rem;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 0.96rem;
  }

  .track-visual h3 {
    font-size: 1.55rem;
  }

  .track-carousel {
    grid-auto-columns: minmax(268px, 88vw);
  }

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

  .language-switcher {
    width: 100%;
    justify-content: center;
  }

  .header-account-link {
    width: 100%;
  }

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

  .payment-total strong {
    font-size: 1.3rem;
  }

  .pack-cards {
    grid-auto-columns: minmax(264px, 88vw);
  }

  .pack-meta {
    gap: 6px;
  }

  .pack-meta span {
    font-size: 0.78rem;
  }
}
