@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --amp-bg: #f8fafc;
  --amp-text: #0f172a;
  --amp-card: #ffffff;
  --amp-border: #e2e8f0;
  --amp-primary: #8b5cf6;
  --amp-font-body: 'Inter', sans-serif;
  --amp-font-head: 'Roboto', sans-serif;
  --amp-grad:       linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
  --amp-btn-shadow: 0 0 15px rgba(236, 72, 153, 0.35);
  --amp-btn-radius: 35px;
  --amp-btn-padding: 8px 15px;
}


/* 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-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  background: var(--amp-card);
  border: 1px solid var(--amp-border);
  border-radius: 14px;
  padding: 12px;
}

.amp-archive-filters input,
.amp-archive-filters select {
  width: 100%;
  border: 1px solid var(--amp-border);
  border-radius: 8px;
  padding: 9px 10px;
}

.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;
  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-card-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.amp-book-now-btn {
  background: linear-gradient(90deg, #fb673a, #ff2f86) !important;
}

.amp-category-banner-wrap {
  margin-top: 14px;
}

.amp-category-banner-slider {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.25);
  background: transparent;
}

.amp-category-banner-slider .swiper-slide {
  background: transparent;
}

.amp-category-banner-img {
  width: 100%;
  height: clamp(180px, 26vw, 320px);
  object-fit: cover;
  object-position: center top;
  display: block;
  background: transparent;
}

.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: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.35);
}

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

.amp-shortcode-guide {
  margin: 0;
  padding-left: 20px;
}

.mega-menu-cats,
.amp-category-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.mega-menu-cats li,
.amp-category-menu li {
  margin: 0;
  padding: 0;
}

.mega-menu-cats .amp-category-pill,
.amp-category-menu .amp-category-pill {
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  background: #081a34;
  border: 1px solid #284a77;
  color: #d9e8ff;
  font-weight: 600;
  font-size: 13px;
}

.mega-menu-cats .amp-category-pill:hover,
.amp-category-menu .amp-category-pill:hover {
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
  border-color: transparent;
  color: #fff;
}

.mega-menu-cats .amp-category-pill.is-active,
.amp-category-menu .amp-category-pill.is-active {
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.35);
}

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

@media (max-width: 640px) {
  .mega-menu-cats,
  .amp-category-menu {
    grid-template-columns: 1fr;
  }
}

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

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

@media (max-width: 640px) {
  .amp-archive-filters {
    grid-template-columns: 1fr;
  }

  .amp-archive-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .amp-archive-card {
    border-radius: 12px;
  }

  .amp-archive-content h3 {
    font-size: 18px;
  }
}

.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 rgba(236, 72, 153, 0.4);
  color: #e8e8f0;
  border-radius: 35px;
  padding: 8px 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.amp-outline-btn:hover {
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.35);
}

.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: var(--amp-font-body, 'Inter', 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: #8b5cf6;
  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: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 35px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.35);
}
.amp-submit-btn:hover { transform: translateY(-1px); box-shadow: 0 0 20px rgba(139, 92, 246, 0.45); }

/* ── 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: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
  color: #fff;
  padding: 8px 15px;
  border-radius: 35px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.35);
}

#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: #8b5cf6;
  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; }
}

/* ═══════════════════════════════════════════════════
   GLOBAL FONT OVERRIDE — Inter + Roboto
═══════════════════════════════════════════════════ */
.amp-page,
.amp-artist-page,
.amp-archive-page,
.amp-featured-wrapper,
.amp-artist-carousel,
.amp-dashboard,
.amp-onboarding-wrap,
.amp-flow {
  font-family: var(--amp-font-body, 'Inter', sans-serif);
}

.amp-archive-content h3,
.amp-dashboard-header h2,
.amp-dashboard-card h3 {
  font-family: var(--amp-font-head, 'Roboto', sans-serif);
}

/* Mobile responsive fixes for carousel and archive */
@media (max-width: 767px) {
  .amp-artist-carousel .swiper-slide {
    width: 80vw !important;
    max-width: 300px;
  }
  .amp-archive-grid {
    grid-template-columns: 1fr !important;
  }
  .amp-hero {
    grid-template-columns: 1fr !important;
  }
  .amp-search-inner {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════════════
   ArtistHub Brand Colors for frontend elements
═══════════════════════════════════════════════════ */
.amp-archive-btn,
.amp-main-btn,
.amp-form button {
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6) !important;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.35) !important;
}

/* Mobile overflow prevention */
body {
  overflow-x: hidden;
}
.amp-page,
.amp-artist-page,
.amp-archive-page {
  overflow-x: hidden;
  max-width: 100%;
}
.amp-archive-content h3,
.amp-archive-card {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Dashboard mobile fixes */
@media (max-width: 600px) {
  .amp-dashboard {
    padding: 12px;
  }
  .amp-dashboard-card {
    padding: 16px;
  }
  .amp-dash-pkg-grid {
    grid-template-columns: 1fr !important;
  }
  .amp-payments-summary {
    flex-direction: column;
  }
  .amp-dashboard-tabs-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .amp-dash-tab {
    flex-shrink: 0;
    white-space: nowrap;
  }
  .amp-leads-table {
    font-size: 12px;
  }
  .amp-leads-table th,
  .amp-leads-table td {
    padding: 6px 4px;
  }
  .amp-form-row-2col {
    grid-template-columns: 1fr !important;
  }
}


/* ═══════════════════════════════════════════════════
   GLOBAL BUTTON BRAND OVERRIDE — catches all remaining buttons
═══════════════════════════════════════════════════ */
.amp-page a[class*="btn"]:not(.amp-btn-outline):not(.amp-social-btn):not(.amp-lead-badge):not(.amp-pay-badge):not(.amp-badge-approved):not(.amp-badge-pending),
.amp-flow a[class*="btn"],
.amp-dashboard a.amp-btn-primary,
button.amp-btn-primary,
input[type="submit"].amp-btn-primary {
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6) !important;
  border-radius: 35px !important;
  padding: 8px 15px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.35) !important;
  border: none !important;
  color: #fff !important;
}

/* Archive look parity fix (strong override) */
.post-type-archive-artist_profile .amp-page,
.tax-artist_category .amp-page,
.tax-artist_city .amp-page {
  max-width: 1220px !important;
  color: #eaf2ff !important;
}

.post-type-archive-artist_profile .amp-archive-container h1,
.tax-artist_category .amp-archive-container h1,
.tax-artist_city .amp-archive-container h1 {
  color: #fff !important;
  font-size: clamp(34px, 5vw, 56px) !important;
  line-height: 1.05 !important;
  margin: 0 0 8px 0 !important;
}

.post-type-archive-artist_profile .amp-archive-filters,
.tax-artist_category .amp-archive-filters,
.tax-artist_city .amp-archive-filters {
  grid-template-columns: 2fr repeat(3, 1fr) 1fr 1fr 1fr auto !important;
  background: rgba(7, 18, 40, 0.82) !important;
  border: 1px solid rgba(59, 130, 246, 0.24) !important;
  backdrop-filter: blur(4px);
  border-radius: 16px !important;
  padding: 12px !important;
  position: sticky;
  top: 10px;
  z-index: 20;
}

.post-type-archive-artist_profile .amp-archive-filters input,
.post-type-archive-artist_profile .amp-archive-filters select,
.tax-artist_category .amp-archive-filters input,
.tax-artist_category .amp-archive-filters select,
.tax-artist_city .amp-archive-filters input,
.tax-artist_city .amp-archive-filters select {
  background: #0d1f3c !important;
  color: #eaf2ff !important;
  border: 1px solid rgba(148, 163, 184, 0.3) !important;
  min-height: 44px !important;
}

.post-type-archive-artist_profile .amp-archive-filters input::placeholder,
.tax-artist_category .amp-archive-filters input::placeholder,
.tax-artist_city .amp-archive-filters input::placeholder {
  color: rgba(226, 232, 240, 0.75) !important;
}

.post-type-archive-artist_profile .amp-archive-grid,
.tax-artist_category .amp-archive-grid,
.tax-artist_city .amp-archive-grid {
  margin-top: 4px;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

.post-type-archive-artist_profile .amp-archive-card,
.tax-artist_category .amp-archive-card,
.tax-artist_city .amp-archive-card {
  display: grid !important;
  grid-template-columns: 230px minmax(0, 1fr) !important;
  align-items: stretch;
  background: linear-gradient(110deg, #050b18 0%, #101f3a 100%) !important;
  border: 1px solid rgba(96, 165, 250, 0.28) !important;
  border-radius: 22px !important;
  overflow: hidden;
}

.post-type-archive-artist_profile .amp-archive-card > a,
.tax-artist_category .amp-archive-card > a,
.tax-artist_city .amp-archive-card > a {
  height: 100%;
  display: block;
}

.post-type-archive-artist_profile .amp-archive-thumb,
.tax-artist_category .amp-archive-thumb,
.tax-artist_city .amp-archive-thumb {
  height: 100% !important;
  min-height: 260px;
  aspect-ratio: auto !important;
  object-fit: cover !important;
}

.post-type-archive-artist_profile .amp-archive-content,
.tax-artist_category .amp-archive-content,
.tax-artist_city .amp-archive-content {
  padding: 18px 20px !important;
  display: grid !important;
  gap: 10px !important;
  align-content: start;
}

.post-type-archive-artist_profile .amp-archive-content h3,
.tax-artist_category .amp-archive-content h3,
.tax-artist_city .amp-archive-content h3 {
  color: #ffffff !important;
  font-size: clamp(30px, 3.2vw, 42px);
}

.post-type-archive-artist_profile .amp-archive-price,
.tax-artist_category .amp-archive-price,
.tax-artist_city .amp-archive-price {
  color: #d6e5ff;
}

.post-type-archive-artist_profile .amp-archive-price strong,
.tax-artist_category .amp-archive-price strong,
.tax-artist_city .amp-archive-price strong {
  color: #ffffff;
}

.post-type-archive-artist_profile .amp-archive-content .amp-archive-btn,
.tax-artist_category .amp-archive-content .amp-archive-btn,
.tax-artist_city .amp-archive-content .amp-archive-btn {
  margin-top: 4px;
  width: 100%;
  text-align: center;
}

.amp-requirement-wrap {
  display: flex;
  justify-content: center;
}

.amp-requirement-form {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
}

.amp-btn-clear {
  background: #102646 !important;
  box-shadow: none !important;
  border: 1px solid rgba(147, 197, 253, 0.35) !important;
  color: #dbeafe !important;
}

.amp-artist-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  color: #e9f1ff !important;
  font-size: 13px;
}

.amp-artist-meta li {
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Directory/Carousel cards: equal height, white text, side-by-side buttons */
.amp-artist-carousel .swiper-slide {
  height: auto !important;
  display: flex;
}

.amp-artist-carousel .amp-archive-card {
  width: 100%;
  height: 100%;
  display: flex !important;
  flex-direction: column;
}

.amp-artist-carousel .amp-archive-content {
  flex: 1;
  display: flex !important;
  flex-direction: column;
  gap: 10px;
}

.amp-artist-carousel .amp-archive-content h3,
.amp-artist-carousel .amp-archive-price,
.amp-artist-carousel .amp-archive-price strong,
.amp-artist-carousel .amp-artist-meta,
.amp-artist-carousel .amp-artist-meta li {
  color: #fff !important;
}

.amp-artist-carousel .amp-card-cta-row,
.post-type-archive-artist_profile .amp-card-cta-row,
.tax-artist_category .amp-card-cta-row,
.tax-artist_city .amp-card-cta-row {
  margin-top: auto;
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px !important;
}

.amp-artist-carousel .amp-card-cta-row .amp-archive-btn,
.post-type-archive-artist_profile .amp-card-cta-row .amp-archive-btn,
.tax-artist_category .amp-card-cta-row .amp-archive-btn,
.tax-artist_city .amp-card-cta-row .amp-archive-btn {
  flex: 1 1 0;
  margin: 0 !important;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .post-type-archive-artist_profile .amp-archive-filters,
  .tax-artist_category .amp-archive-filters,
  .tax-artist_city .amp-archive-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .post-type-archive-artist_profile .amp-archive-grid,
  .tax-artist_category .amp-archive-grid,
  .tax-artist_city .amp-archive-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .post-type-archive-artist_profile .amp-archive-filters,
  .tax-artist_category .amp-archive-filters,
  .tax-artist_city .amp-archive-filters {
    grid-template-columns: 1fr !important;
  }

  .amp-btn-clear,
  .post-type-archive-artist_profile .amp-archive-filters .amp-archive-btn,
  .tax-artist_category .amp-archive-filters .amp-archive-btn,
  .tax-artist_city .amp-archive-filters .amp-archive-btn {
    width: 100%;
    text-align: center;
  }

  .post-type-archive-artist_profile .amp-archive-card,
  .tax-artist_category .amp-archive-card,
  .tax-artist_city .amp-archive-card {
    grid-template-columns: 1fr !important;
  }

  .amp-card-cta-row {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .post-type-archive-artist_profile .amp-archive-thumb,
  .tax-artist_category .amp-archive-thumb,
  .tax-artist_city .amp-archive-thumb {
    min-height: 210px;
  }
}

/* ── Archive / Category page layout ──────────────────────────────────────── */

/* Container */
.post-type-archive-artist_profile .amp-archive-container,
.tax-artist_category .amp-archive-container,
.tax-artist_city .amp-archive-container {
  gap: 18px !important;
}

/* Filter bar — 5 dropdowns in one row */
.post-type-archive-artist_profile .amp-archive-filters,
.tax-artist_category .amp-archive-filters,
.tax-artist_city .amp-archive-filters {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr auto !important;
  gap: 10px !important;
  background: rgba(7, 18, 40, 0.90) !important;
  border: 1px solid rgba(59, 130, 246, 0.28) !important;
  backdrop-filter: blur(6px);
  border-radius: 16px !important;
  padding: 12px 16px !important;
  position: sticky;
  top: 10px;
  z-index: 30;
}

.post-type-archive-artist_profile .amp-archive-filters select,
.post-type-archive-artist_profile .amp-archive-filters input,
.tax-artist_category .amp-archive-filters select,
.tax-artist_category .amp-archive-filters input,
.tax-artist_city .amp-archive-filters select,
.tax-artist_city .amp-archive-filters input {
  width: 100%;
  background: #0d1f3c !important;
  color: #eaf2ff !important;
  border: 1px solid rgba(148, 163, 184, 0.3) !important;
  border-radius: 10px !important;
  min-height: 42px !important;
  padding: 0 10px !important;
  font-size: 14px;
}

.post-type-archive-artist_profile .amp-archive-filters .amp-archive-btn,
.tax-artist_category .amp-archive-filters .amp-archive-btn,
.tax-artist_city .amp-archive-filters .amp-archive-btn {
  min-height: 42px;
  padding: 0 20px !important;
  white-space: nowrap;
}

/* Banner slider — always visible */
.post-type-archive-artist_profile .amp-category-banner-wrap,
.tax-artist_category .amp-category-banner-wrap,
.tax-artist_city .amp-category-banner-wrap {
  display: block !important;
}

/* Grid — 2 columns desktop */
.post-type-archive-artist_profile .amp-archive-grid,
.tax-artist_category .amp-archive-grid,
.tax-artist_city .amp-archive-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

/* Card — horizontal: image left, info right */
.post-type-archive-artist_profile .amp-archive-card,
.tax-artist_category .amp-archive-card,
.tax-artist_city .amp-archive-card {
  display: grid !important;
  grid-template-columns: 200px minmax(0, 1fr) !important;
  align-items: stretch;
  background: linear-gradient(110deg, #060e20 0%, #0e1e38 100%) !important;
  border: 1px solid rgba(96, 165, 250, 0.22) !important;
  border-radius: 20px !important;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-type-archive-artist_profile .amp-archive-card:hover,
.tax-artist_category .amp-archive-card:hover,
.tax-artist_city .amp-archive-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15);
}

.post-type-archive-artist_profile .amp-archive-card > a,
.tax-artist_category .amp-archive-card > a,
.tax-artist_city .amp-archive-card > a {
  display: block;
  height: 100%;
}

.post-type-archive-artist_profile .amp-archive-thumb,
.tax-artist_category .amp-archive-thumb,
.tax-artist_city .amp-archive-thumb {
  width: 100% !important;
  height: 100% !important;
  min-height: 220px;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center top;
  display: block;
}

.post-type-archive-artist_profile .amp-archive-content,
.tax-artist_category .amp-archive-content,
.tax-artist_city .amp-archive-content {
  padding: 18px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  justify-content: center;
}

.post-type-archive-artist_profile .amp-archive-content h3,
.tax-artist_category .amp-archive-content h3,
.tax-artist_city .amp-archive-content h3 {
  color: #ffffff !important;
  font-size: clamp(16px, 1.5vw, 24px) !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.post-type-archive-artist_profile .amp-archive-price,
.tax-artist_category .amp-archive-price,
.tax-artist_city .amp-archive-price {
  color: #a8c4f0 !important;
  font-size: 13px;
}

.post-type-archive-artist_profile .amp-archive-price strong,
.tax-artist_category .amp-archive-price strong,
.tax-artist_city .amp-archive-price strong {
  color: #ffffff !important;
  font-size: 16px;
}

.post-type-archive-artist_profile .amp-artist-meta,
.tax-artist_category .amp-artist-meta,
.tax-artist_city .amp-artist-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #b8d0f8 !important;
  font-size: 12px;
}

/* CTA buttons side by side */
.post-type-archive-artist_profile .amp-card-cta-row,
.tax-artist_category .amp-card-cta-row,
.tax-artist_city .amp-card-cta-row {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px !important;
  margin-top: 8px;
}

.post-type-archive-artist_profile .amp-card-cta-row .amp-archive-btn,
.tax-artist_category .amp-card-cta-row .amp-archive-btn,
.tax-artist_city .amp-card-cta-row .amp-archive-btn {
  flex: 1 1 0;
  text-align: center;
  margin: 0 !important;
  padding: 9px 10px;
  font-size: 13px;
  white-space: nowrap;
}

/* Tablet: 1 col grid, keep horizontal card */
@media (max-width: 1100px) {
  .post-type-archive-artist_profile .amp-archive-filters,
  .tax-artist_category .amp-archive-filters,
  .tax-artist_city .amp-archive-filters {
    grid-template-columns: 1fr 1fr 1fr auto !important;
  }

  .post-type-archive-artist_profile .amp-archive-grid,
  .tax-artist_category .amp-archive-grid,
  .tax-artist_city .amp-archive-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .post-type-archive-artist_profile .amp-archive-filters,
  .tax-artist_category .amp-archive-filters,
  .tax-artist_city .amp-archive-filters {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* Mobile: stacked card */
@media (max-width: 640px) {
  .post-type-archive-artist_profile .amp-archive-filters,
  .tax-artist_category .amp-archive-filters,
  .tax-artist_city .amp-archive-filters {
    grid-template-columns: 1fr !important;
  }

  .post-type-archive-artist_profile .amp-archive-filters .amp-archive-btn,
  .tax-artist_category .amp-archive-filters .amp-archive-btn,
  .tax-artist_city .amp-archive-filters .amp-archive-btn {
    width: 100%;
    text-align: center;
  }

  .post-type-archive-artist_profile .amp-archive-card,
  .tax-artist_category .amp-archive-card,
  .tax-artist_city .amp-archive-card {
    grid-template-columns: 1fr !important;
  }

  .post-type-archive-artist_profile .amp-archive-thumb,
  .tax-artist_category .amp-archive-thumb,
  .tax-artist_city .amp-archive-thumb {
    min-height: 200px;
    aspect-ratio: 16/9 !important;
    height: auto !important;
  }

  .post-type-archive-artist_profile .amp-archive-content,
  .tax-artist_category .amp-archive-content,
  .tax-artist_city .amp-archive-content {
    padding: 14px 16px !important;
  }

  .post-type-archive-artist_profile .amp-card-cta-row,
  .tax-artist_category .amp-card-cta-row,
  .tax-artist_city .amp-card-cta-row {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .post-type-archive-artist_profile .amp-card-cta-row .amp-archive-btn,
  .tax-artist_category .amp-card-cta-row .amp-archive-btn,
  .tax-artist_city .amp-card-cta-row .amp-archive-btn {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
  }
}
