:root {
  --amp-bg: #f8fafc;
  --amp-text: #0f172a;
  --amp-card: #ffffff;
  --amp-border: #e2e8f0;
  --amp-primary: #0ea5e9;
}


/* Artist Carousel */

.amp-artist-carousel {
    position: relative;
    padding: 20px 10px 50px;
    overflow: hidden;
}

.amp-artist-carousel .swiper-slide {
    height: auto;
}

.amp-artist-carousel .amp-artist-card,
.amp-artist-carousel .amp-card,
.amp-artist-carousel .artist-card {
    background: #111;
    border-radius: 16px;
}

/* White Text */

.amp-artist-carousel h2,
.amp-artist-carousel h3,
.amp-artist-carousel h4,
.amp-artist-carousel p,
.amp-artist-carousel span,
.amp-artist-carousel a {
    color: #fff !important;
}

/* Navigation */

.amp-swiper-prev,
.amp-swiper-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

.amp-swiper-prev {
    left: 0;
}

.amp-swiper-next {
    right: 0;
}


.amp-page,
.amp-artist-page,
.amp-archive-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 48px;
  color: var(--amp-text);
}

.amp-archive-container {
  display: grid;
  gap: 20px;
}

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

.amp-archive-card {
  background: var(--amp-card);
  border: 1px solid var(--amp-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.amp-archive-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(10, 18, 35, 0.2);
}

.amp-archive-thumb,
.amp-hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.amp-archive-content {
  padding: 14px;
  display: grid;
  gap: 10px;
}

.amp-archive-content h3 {
  margin: 0;
  line-height: 1.2;
}

.amp-package-badge {
  background: #fef3c7;
  color: #92400e;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  width: fit-content;
}

.amp-package-gold .amp-package-badge,
.amp-package-gold {
  box-shadow: 0 0 0 2px #f59e0b inset;
}

.amp-archive-price strong { font-size: 18px; }

.amp-archive-btn,
.amp-main-btn,
.amp-form button {
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
  color: #fff;
  border: 0;
  border-radius: 35px;
  padding: 8px 15px 8px 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.35);
}

.amp-archive-btn:hover,
.amp-main-btn:hover,
.amp-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.45);
}

.amp-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}

.amp-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amp-card-meta span {
  border: 1px solid var(--amp-border);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 13px;
}

.amp-section {
  margin-top: 24px;
  background: var(--amp-card);
  border: 1px solid var(--amp-border);
  border-radius: 16px;
  padding: 16px;
}

.amp-form {
  max-width: 620px;
  background: var(--amp-card);
  border: 1px solid var(--amp-border);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.amp-form input,
.amp-form textarea,
.amp-form select {
  width: 100%;
  border: 1px solid var(--amp-border);
  border-radius: 10px;
  padding: 10px;
}

.amp-option {
  display: block;
  margin: 6px 0;
}

.amp-flow {
  max-width: 860px;
  margin: 0 auto;
}

.amp-progress {
  margin: 0 0 12px;
  font-size: 13px;
  color: #b6c4dd;
}

.amp-flow .amp-form {
  max-width: 860px;
  background: #081a34;
  border: 1px solid #1b3861;
  color: #e8f1ff;
}

.amp-flow .amp-form h2 {
  margin: 0 0 6px;
}

.amp-flow .amp-form input,
.amp-flow .amp-form textarea,
.amp-flow .amp-form select {
  background: #0a2345;
  border-color: #284a77;
  color: #e8f1ff;
}

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

.amp-package-card {
  background: #071a33;
  border: 1px solid #27466f;
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 8px;
  cursor: pointer;
}

.amp-package-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.amp-package-head strong {
  font-size: 16px;
}

.amp-package-price {
  font-weight: 700;
  color: #7dd3fc;
}

.amp-package-features {
  margin: 0;
  padding-left: 16px;
  color: #c9d8f3;
  font-size: 13px;
  display: grid;
  gap: 4px;
}

.amp-featured-wrapper {
  margin-top: 18px;
}

.amp-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.amp-category-tab {
  border: 1px solid #284a77;
  background: #081a34;
  color: #d9e8ff;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.amp-category-tab.active {
  background: #0ea5e9;
  color: #fff;
  border-color: #0ea5e9;
}

.amp-tab-content {
  display: none;
}

.amp-tab-content.active {
  display: block;
}

.swiper-slide {
  height: auto;
}

.amp-form-error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 10px;
}

.amp-form-success {
  border: 1px solid #86efac;
  background: #f0fdf4;
  color: #166534;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 10px;
}

.amp-search-inner {
  display: flex;
  gap: 8px;
}

.amp-search-inner input {
  flex: 1;
}

@media (max-width: 991px) {
  .amp-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .amp-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .amp-archive-grid {
    grid-template-columns: 1fr;
  }
  .amp-page,
  .amp-artist-page,
  .amp-archive-page {
    padding: 18px 12px 32px;
  }
  .amp-package-grid {
    grid-template-columns: 1fr;
  }
}

.amp-single {
  color: #f8fbff;
}

.amp-single .amp-section,
.amp-profile-hero > div,
.amp-stats-grid article {
  background: #06142a;
  border: 1px solid #112647;
}

.amp-profile-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 20px;
}

.amp-profile-left,
.amp-profile-right {
  border-radius: 18px;
  padding: 20px;
}

.amp-profile-right .amp-hero-image {
  aspect-ratio: 4 / 5;
  max-height: 620px;
  object-fit: cover;
}

.amp-kicker {
  color: #89a9d8;
  font-size: 12px;
  margin-bottom: 8px;
}

.amp-summary {
  color: #bdd0f0;
  margin: 10px 0 12px;
}

.amp-hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.amp-outline-btn {
  border: 1px solid #264c83;
  color: #d8e8ff;
  border-radius: 10px;
  padding: 10px 14px;
  text-decoration: none;
}

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

.amp-stats-grid article {
  border-radius: 12px;
  padding: 14px;
}

.amp-stats-grid strong {
  display: block;
  color: #fff;
}

.amp-stats-grid span {
  color: #9bb5d9;
  font-size: 12px;
}

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

.amp-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
}

.amp-video-box iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 12px;
}

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

.amp-testimonial-card {
  background: #081d39;
  border: 1px solid #15315a;
  border-radius: 10px;
  padding: 12px;
  color: #cce0ff;
}

.amp-faq-item {
  background: #081d39;
  border: 1px solid #15315a;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
}

.amp-faq-item h3 {
  margin: 0 0 6px;
}

.amp-dashboard {
  display: grid;
  gap: 14px;
}

.amp-dashboard-card {
  background: #071a33;
  border: 1px solid #23456f;
  border-radius: 14px;
  padding: 14px;
}

.amp-dashboard-card h3 {
  margin: 0 0 10px;
}

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

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

.amp-leads-table th,
.amp-leads-table td {
  border-bottom: 1px solid #1d3558;
  padding: 8px;
  text-align: left;
  font-size: 13px;
}

.amp-package-feature-list {
  margin: 6px 0 0;
  padding-left: 18px;
}

@media (max-width: 991px) {
  .amp-profile-hero {
    grid-template-columns: 1fr;
  }
  .amp-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .amp-testimonial-grid {
    grid-template-columns: 1fr;
  }
  .amp-profile-right .amp-hero-image {
    max-height: 520px;
  }
}

@media (max-width: 640px) {
  .amp-gallery-grid,
  .amp-stats-grid {
    grid-template-columns: 1fr;
  }
  .amp-video-box iframe {
    min-height: 220px;
  }
  .amp-profile-right .amp-hero-image {
    max-height: 420px;
  }
}

/* ═══════════════════════════════════════════════════
   ARTIST DASHBOARD — Enhanced Styles
═══════════════════════════════════════════════════ */

.amp-dashboard {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.amp-dashboard-header h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #0d1f3c;
}

/* ── Card base ───────────────────────────────────── */
.amp-dashboard-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.amp-dashboard-card h3 {
  margin: 0 0 18px;
  font-size: 1.1rem;
  color: #0d1f3c;
  border-bottom: 2px solid #f0f4ff;
  padding-bottom: 10px;
}

/* ── Package card ────────────────────────────────── */
.amp-dash-pkg-card { background: linear-gradient(135deg,#f0f4ff 0%,#fff 100%); }

.amp-dash-pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.amp-dash-pkg-meta p {
  margin: 6px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.amp-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #6b7280;
}

.amp-dash-pkg-features ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
.amp-dash-pkg-features li {
  font-size: 13px;
  color: #374151;
  padding: 3px 0;
}

/* Payment status colours */
.amp-status-paid    { color: #16a34a; }
.amp-status-unpaid  { color: #dc2626; }
.amp-status-pending { color: #d97706; }

/* ── Profile status banner ───────────────────────── */
.amp-dash-status-card { padding: 16px 24px; }

.amp-dash-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.amp-badge-approved {
  background: #dcfce7;
  color: #16a34a;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-left: 8px;
}

.amp-badge-pending {
  background: #fef9c3;
  color: #92400e;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-left: 8px;
}

/* ── Form sections ───────────────────────────────── */
.amp-dashboard-form .amp-form-section {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #e5e7eb;
}
.amp-dashboard-form .amp-form-section:last-of-type {
  border-bottom: none;
}
.amp-dashboard-form .amp-form-section h4 {
  font-size: .95rem;
  font-weight: 700;
  color: #1d4ed8;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.amp-form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.amp-form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.amp-form-row label,
.amp-form-row-2col label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 2px;
}

.req { color: #dc2626; }

.amp-dashboard-form input[type="text"],
.amp-dashboard-form input[type="email"],
.amp-dashboard-form input[type="tel"],
.amp-dashboard-form input[type="url"],
.amp-dashboard-form input[type="number"],
.amp-dashboard-form input:not([type="file"]):not([type="checkbox"]):not([type="radio"]),
.amp-dashboard-form textarea,
.amp-dashboard-form select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  background: #fafafa;
  transition: border-color .2s;
  box-sizing: border-box;
}

.amp-dashboard-form input:focus,
.amp-dashboard-form textarea:focus,
.amp-dashboard-form select:focus {
  outline: none;
  border-color: #3b82f6;
  background: #fff;
}

.amp-form-submit-row {
  text-align: center;
  padding-top: 8px;
}

.amp-submit-btn {
  background: #1d4ed8;
  color: #fff;
  border: none;
  padding: 12px 36px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.amp-submit-btn:hover { background: #1e40af; }

/* ── Leads table ─────────────────────────────────── */
.amp-no-leads {
  color: #6b7280;
  font-size: 14px;
}

.amp-leads-table th {
  background: #f1f5f9;
  color: #374151;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}

.amp-lead-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}
.amp-lead-status-new      { background:#dbeafe; color:#1d4ed8; }
.amp-lead-status-contacted{ background:#fef9c3; color:#92400e; }
.amp-lead-status-booked   { background:#dcfce7; color:#16a34a; }
.amp-lead-status-closed   { background:#f3f4f6; color:#6b7280; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 640px) {
  .amp-dash-pkg-grid,
  .amp-form-row-2col { grid-template-columns: 1fr; }
}

/* Social link buttons on public profile */
.amp-social-btn {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
}
.amp-social-btn:hover { opacity: .8; }
.amp-social-yt  { background:#ff0000; color:#fff; }
.amp-social-ig  { background:#e1306c; color:#fff; }
.amp-social-fb  { background:#1877f2; color:#fff; }
.amp-social-web { background:#374151; color:#fff; }

/* ═══════════════════════════════════════════════════
   ARTIST ONBOARDING FORM — Styles
═══════════════════════════════════════════════════ */

.amp-onboarding-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 16px;
}

.amp-onboarding-form h2 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.amp-form-subtitle {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 24px;
}

/* ── Profile photo upload row ────────────────────── */
.amp-onboarding-photo-row {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #f8faff;
  border: 2px dashed #c7d2fe;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.amp-photo-preview {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #e0e7ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  font-size: 28px;
}
.amp-photo-preview p { font-size: 11px; color: #6b7280; margin: 4px 0 0; }

.amp-photo-upload-info {
  flex: 1;
}

.amp-photo-label {
  display: inline-block;
  background: #1d4ed8;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 6px;
}

#amp_profile_image_input { display: none; }

.amp-hint {
  font-size: 12px;
  color: #9ca3af;
  margin: 4px 0 0;
}

/* ── Onboarding sections ─────────────────────────── */
.amp-onboarding-section {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.amp-onboarding-section h4 {
  font-size: .95rem;
  font-weight: 700;
  color: #1d4ed8;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.amp-onboarding-form input:not([type="file"]):not([type="checkbox"]),
.amp-onboarding-form textarea,
.amp-onboarding-form select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  background: #fafafa;
  box-sizing: border-box;
  transition: border-color .2s;
}

.amp-onboarding-form input:focus,
.amp-onboarding-form textarea:focus,
.amp-onboarding-form select:focus {
  outline: none;
  border-color: #3b82f6;
  background: #fff;
}

/* ── Submitted banner ────────────────────────────── */
.amp-submitted-banner {
  font-size: 15px;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .amp-onboarding-photo-row { flex-direction: column; text-align: center; }
}

/* ── Dashboard Tabs ─────────────────────────────── */
.amp-dashboard-tabs-nav {
  display: flex;
  gap: 4px;
  margin: 20px 0 0 0;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.amp-dash-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.65);
  border-radius: 8px 8px 0 0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  border-bottom: none;
  transition: all .2s;
}

.amp-dash-tab:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.amp-dash-tab.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.15);
  font-weight: 600;
}

.amp-dash-tab-content {
  border-radius: 0 8px 8px 8px !important;
  margin-top: 0 !important;
}

/* ── Payment Summary Stats ──────────────────────── */
.amp-payments-summary {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.amp-pay-stat {
  flex: 1;
  min-width: 140px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
}

.amp-pay-stat--pending {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
}

.amp-pay-stat--total {
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(99, 102, 241, 0.3);
}

.amp-pay-stat-val {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.amp-pay-stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── Payment Status Badges ──────────────────────── */
.amp-pay-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
}

.amp-pay-badge--settled {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.amp-pay-badge--pending {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.amp-pay-badge--cancelled {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.amp-no-leads {
  text-align: center;
  padding: 32px 20px;
  opacity: 0.75;
}

@media (max-width: 640px) {
  .amp-dashboard-tabs-nav { gap: 2px; }
  .amp-dash-tab { padding: 8px 12px; font-size: 13px; }
  .amp-payments-summary { flex-direction: column; }
}
