/* =======================================================================
   CREATORS.CSS - COMPLETE REDESIGN
   Fully responsive, enhanced visuals, maintains theme
   ======================================================================= */

/* ===================== TABLE OF CONTENTS ===================== */
/* 01. Hero Section - Enhanced */
/* 02. Search Bar - Improved */
/* 03. Category Circles - Redesigned */
/* 04. Filters Bar - Streamlined */
/* 05. Mobile Filter Modal - Optimized */
/* 06. Featured Creators - Editorial Layout */
/* 07. Main Creators Grid - Responsive */
/* 08. Creator Card - Premium Design */
/* 09. Trust Mini Section - Modern */
/* 10. Creator Profile Modal - Enhanced */
/* 11. Empty State - Polished */
/* 12. Load More & Pagination */
/* 13. Loading States & Skeletons */
/* 14. Toast Notifications */
/* 15. Responsive Breakpoints */
/* ============================================================= */

/* ========== 01. Hero Section - Enhanced ========== */
.creators-hero {
  padding: clamp(2rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3rem);
  background: linear-gradient(180deg, var(--bg) 0%, white 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.creators-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(183, 140, 90, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.creators-hero .hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: clamp(0.65rem, 2vw, 0.75rem);
  color: var(--accent);
  display: block;
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
  font-weight: 500;
  animation: fadeInUp 0.6s ease;
}

.creators-hero .hero-eyebrow::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.creators-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  font-weight: 400;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  color: var(--text-dark);
  line-height: 1;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.creators-hero-title .title-accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.creators-hero-title .title-accent::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(183, 140, 90, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.creators-hero-subtitle {
  font-size: clamp(0.85rem, 3vw, 1.1rem);
  color: var(--text-soft);
  max-width: min(600px, 90%);
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  line-height: 1.6;
  animation: fadeInUp 0.6s ease 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== 02. Search Bar - Improved ========== */
.creators-search {
  max-width: min(600px, 90%);
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.search-wrapper {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 60px;
  padding: 0.375rem 0.375rem 0.375rem clamp(1rem, 3vw, 2rem);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(183, 140, 90, 0.1);
  transition: all 0.3s ease;
}

.search-wrapper:focus-within {
  box-shadow: 0 20px 40px -12px rgba(183, 140, 90, 0.2);
  border-color: var(--accent);
  transform: scale(1.01);
}

.search-wrapper i {
  color: var(--accent);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  margin-right: clamp(0.5rem, 2vw, 1rem);
  transition: color 0.3s ease;
}

.search-wrapper:focus-within i {
  color: var(--accent);
}

.search-wrapper input {
  flex: 1;
  border: none;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(0.5rem, 2vw, 1rem);
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  outline: none;
  background: transparent;
  width: 100%;
}

.search-wrapper input::placeholder {
  color: var(--text-soft);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.search-wrapper input:focus::placeholder {
  opacity: 0.3;
}

/* ========== 03. Category Circles - Redesigned ========== */
.creator-categories {
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: white;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.category-circles {
  display: flex;
  gap: clamp(0.75rem, 2vw, 2rem);
  overflow-x: auto;
  padding: clamp(1rem, 3vw, 2rem) 0;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--border-light);
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  .category-circles {
    justify-content: center;
    overflow-x: visible;
    flex-wrap: wrap;
  }
}

.category-circles::-webkit-scrollbar {
  height: 4px;
}

.category-circles::-webkit-scrollbar-track {
  background: var(--border-light);
  border-radius: 4px;
}

.category-circles::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

.category-circles-item {
  flex: 0 0 clamp(80px, 20vw, 100px);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  padding: 0.5rem 0;
}

.category-circles-item:hover {
  transform: translateY(-5px);
}

.category-circles-item.active .circle-image {
  border-color: var(--accent);
  box-shadow:
    0 0 0 4px rgba(183, 140, 90, 0.15),
    var(--shadow);
  background: var(--accent);
}

.category-circles-item.active .circle-image i {
  color: white;
}

.category-circles-item.active span {
  color: var(--accent);
  font-weight: 600;
}

.circle-image {
  width: clamp(70px, 18vw, 90px);
  height: clamp(70px, 18vw, 90px);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: var(--shadow);
  margin: 0 auto clamp(0.5rem, 1.5vw, 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg) 0%, white 100%);
  transition: all 0.3s ease;
}

.circle-image i {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  color: var(--accent);
  transition: all 0.3s ease;
}

.category-circles-item span {
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  color: var(--text-dark);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  transition: color 0.3s ease;
}

.circle-count {
  position: absolute;
  top: -5px;
  right: 50%;
  transform: translateX(50%);
  background: var(--accent);
  color: white;
  font-size: clamp(0.6rem, 1.5vw, 0.7rem);
  font-weight: 600;
  min-width: clamp(20px, 5vw, 24px);
  height: clamp(20px, 5vw, 24px);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  box-shadow: 0 4px 8px rgba(183, 140, 90, 0.3);
  border: 2px solid white;
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  0% {
    transform: translateX(50%) scale(0);
  }
  80% {
    transform: translateX(50%) scale(1.1);
  }
  100% {
    transform: translateX(50%) scale(1);
  }
}

/* ========== 04. Filters Bar - Streamlined ========== */
.filters-bar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  padding: clamp(0.75rem, 2vw, 1.25rem) 0;
  position: static;
  top: 70px;
  z-index: 90;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .filters-bar {
    top: 60px;
  }
}

.filters-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 2rem);
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .filters-desktop {
    flex-direction: column;
    align-items: stretch;
  }
}

.filter-group {
  display: flex;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  flex-wrap: wrap;
  flex: 1;
}

.filter-select {
  padding: clamp(0.6rem, 2vw, 0.9rem) clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--border-light);
  border-radius: 40px;
  background: white;
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  min-width: clamp(120px, 30vw, 160px);
  cursor: pointer;
  min-height: 44px;
  transition: all 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b78c5a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.filter-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(183, 140, 90, 0.1);
}

#clearFiltersBtn {
  min-height: 44px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

#clearFiltersBtn:hover {
  background: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
}

/* ========== 05. Mobile Filter Modal - Optimized ========== */
.filter-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  align-items: flex-end;
  backdrop-filter: blur(4px);
}

.filter-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.filter-modal-content {
  background: white;
  border-radius: 28px 28px 0 0;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.filter-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(1.25rem, 4vw, 2rem);
  border-bottom: 1px solid var(--border-light);
}

.filter-modal-header h3 {
  font-size: clamp(1.1rem, 4vw, 1.3rem);
  color: var(--text-dark);
  font-weight: 500;
  font-family: var(--font-serif);
}

.close-modal {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-soft);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.close-modal:hover,
.close-modal:active {
  background: var(--bg);
  color: var(--accent);
}

.filter-modal-body {
  padding: clamp(1.25rem, 4vw, 2rem);
}

.filter-section {
  margin-bottom: clamp(1.5rem, 5vw, 2.5rem);
}

.filter-section label {
  display: block;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  font-weight: 500;
  color: var(--text-dark);
  font-size: clamp(0.85rem, 3vw, 0.95rem);
}

.filter-section select {
  width: 100%;
  min-height: 48px;
  font-size: clamp(0.9rem, 3vw, 1rem);
}

.filter-modal-footer {
  display: flex;
  gap: clamp(0.75rem, 3vw, 1.5rem);
  padding: clamp(1.25rem, 4vw, 2rem);
  border-top: 1px solid var(--border-light);
  background: var(--bg);
}

.filter-modal-footer button {
  flex: 1;
  min-height: 48px;
  font-size: clamp(0.9rem, 3vw, 1rem);
}

/* ========== 07. Main Creators Grid ========== */
.creators-grid-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: white;
}

.creators-header-compact {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.creators-header-compact .section-title-serif {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  position: relative;
  display: inline-block;
}

.creators-header-compact .section-title-serif::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.result-count {
  color: var(--text-soft);
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  background: var(--bg);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(3rem, 8vw, 5rem);
}

/* ========== 08. Creator Card - Premium Design ========== */
.creator-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(183, 140, 90, 0.1);
  position: relative;
  height: 100%;
}

.creator-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px -15px rgba(183, 140, 90, 0.2);
  border-color: var(--accent-light);
}

.creator-cover {
  height: clamp(80px, 15vw, 100px);
  background: linear-gradient(
    135deg,
    var(--accent-light) 0%,
    var(--accent) 100%
  );
  position: relative;
  overflow: hidden;
}

.creator-cover::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.creator-card:hover .creator-cover::before {
  opacity: 1;
}

.creator-avatar-wrapper {
  position: relative;
  margin-top: -40px;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}

.creator-avatar-lg {
  width: clamp(70px, 15vw, 80px);
  height: clamp(70px, 15vw, 80px);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  background: white;
  transition: transform 0.3s ease;
}

.creator-card:hover .creator-avatar-lg {
  transform: scale(1.05);
}

.creator-level-badge {
  background: var(--accent);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 30px;
  font-size: clamp(0.6rem, 2vw, 0.7rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  box-shadow: 0 5px 10px rgba(183, 140, 90, 0.2);
  border: 2px solid white;
}

.creator-level-badge.bronze {
  background: linear-gradient(135deg, #cd7f32 0%, #b06e2a 100%);
}

.creator-level-badge.silver {
  background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
}

.creator-level-badge.gold {
  background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%);
  color: #4a3f3a;
}

.creator-level-badge.platinum {
  background: linear-gradient(135deg, #e5e4e2 0%, #d4d4d4 100%);
  color: #2e2a28;
}

.creator-info {
  padding: 0 clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.75rem);
  flex: 1;
}

.creator-info h3 {
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.creator-role {
  font-size: clamp(0.65rem, 2.5vw, 0.75rem);
  color: var(--accent);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.creator-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-soft);
  font-size: clamp(0.65rem, 2.5vw, 0.75rem);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.creator-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(0.75rem, 2.5vw, 1.25rem);
}

.category-tag {
  background: var(--bg);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: clamp(0.6rem, 2vw, 0.7rem);
  color: var(--text-soft);
  border: 1px solid var(--border-light);
  transition: all 0.2s ease;
}

.creator-card:hover .category-tag {
  background: white;
  border-color: var(--accent-light);
  color: var(--text-dark);
}

.creator-stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: clamp(0.75rem, 2.5vw, 1.25rem) 0;
  font-size: clamp(0.65rem, 2.5vw, 0.75rem);
  color: var(--text-soft);
  padding-top: clamp(0.5rem, 2vw, 1rem);
  border-top: 1px solid var(--border-light);
}

.creator-stats-row i {
  color: var(--accent);
  margin-right: 0.2rem;
}

.creator-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: clamp(0.75rem, 2.5vw, 1.25rem);
}

.creator-actions .btn-primary,
.creator-actions .btn-outline {
  flex: 1;
  min-height: 40px;
  font-size: clamp(0.7rem, 2.5vw, 0.8rem);
  padding: 0.6rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.creator-actions .btn-primary {
  background: var(--accent);
  color: white;
  border: none;
}

.creator-actions .btn-primary:hover {
  background: #9a7a4e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(183, 140, 90, 0.3);
}

.creator-actions .btn-outline:hover {
  background: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
  transform: translateY(-2px);
}

/* ========== 09. Trust Mini Section - Modern ========== */
.trust-mini {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, var(--bg) 0%, white 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.trust-mini::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(183, 140, 90, 0.03) 0%,
    transparent 70%
  );
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.trust-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  z-index: 2;
}

.trust-mini-card {
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem);
  background: white;
  border-radius: 24px;
  box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(183, 140, 90, 0.1);
  backdrop-filter: blur(10px);
}

.trust-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px rgba(183, 140, 90, 0.15);
  border-color: var(--accent-light);
}

.trust-mini-card i {
  font-size: clamp(2rem, 6vw, 2.5rem);
  color: var(--accent);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  background: linear-gradient(
    135deg,
    var(--accent-light) 0%,
    var(--accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-mini-card h4 {
  font-size: clamp(0.9rem, 3vw, 1rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.trust-mini-card p {
  font-size: clamp(0.7rem, 2.5vw, 0.8rem);
  color: var(--text-soft);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

/* ========== 10. Creator Profile Modal - Enhanced ========== */
.creator-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
}

.creator-modal.active {
  display: block;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  background: white;
  border-radius: 32px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.3);
  animation: modalZoom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalZoom {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 768px) {
  .modal-container {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-height: 90vh;
    border-radius: 32px 32px 0 0;
    animation: slideUpModal 0.4s ease;
  }

  @keyframes slideUpModal {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
}

.modal-close {
  position: absolute;
  top: clamp(1rem, 3vw, 1.5rem);
  right: clamp(1rem, 3vw, 1.5rem);
  background: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 8px 15px -5px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.modal-close:hover {
  background: var(--accent);
  color: white;
  transform: rotate(90deg);
}

.modal-content {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.creator-profile {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

@media (min-width: 768px) {
  .creator-profile {
    flex-direction: row;
  }
}

.profile-left {
  flex: 1;
  text-align: center;
  position: relative;
}

.profile-avatar {
  width: clamp(100px, 25vw, 150px);
  height: clamp(100px, 25vw, 150px);
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  transition: transform 0.3s ease;
}

.profile-avatar:hover {
  transform: scale(1.02);
}

.profile-name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.profile-role {
  color: var(--accent);
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.profile-level {
  display: inline-block;
  padding: 0.4rem 1.5rem;
  border-radius: 30px;
  font-size: clamp(0.65rem, 2vw, 0.75rem);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  border: 2px solid white;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.profile-stats {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  background: var(--bg);
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: 24px;
  border: 1px solid var(--border-light);
}

.profile-stat {
  text-align: center;
}

.profile-stat-value {
  display: block;
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.profile-stat-label {
  font-size: clamp(0.6rem, 2vw, 0.7rem);
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-right {
  flex: 2;
}

.profile-bio {
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--bg);
  border-radius: 20px;
  border: 1px solid var(--border-light);
  position: relative;
}

.profile-bio::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  font-family: var(--font-serif);
}

.profile-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  color: var(--text-dark);
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 0.75rem;
  position: relative;
}

.profile-section-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent);
}

.profile-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.profile-listings {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.listing-item {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding: clamp(0.75rem, 2vw, 1.25rem);
  background: var(--bg);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.listing-item:hover {
  background: white;
  border-color: var(--accent);
  transform: translateX(8px);
  box-shadow: 0 8px 15px -8px rgba(183, 140, 90, 0.2);
}

.listing-image {
  width: clamp(44px, 10vw, 56px);
  height: clamp(44px, 10vw, 56px);
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 5px 10px -3px rgba(0, 0, 0, 0.1);
}

.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.listing-item:hover .listing-image img {
  transform: scale(1.1);
}

.listing-details {
  flex: 1;
}

.listing-details h4 {
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.listing-price {
  font-size: clamp(0.75rem, 2.5vw, 0.85rem);
  color: var(--accent);
  font-weight: 600;
}

.listing-item i {
  color: var(--text-soft);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.listing-item:hover i {
  transform: translateX(4px);
  color: var(--accent);
}

.listing-icon {
  width: clamp(44px, 10vw, 56px);
  height: clamp(44px, 10vw, 56px);
  background: linear-gradient(
    135deg,
    var(--accent-light) 0%,
    var(--accent) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
}

.no-listings {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem);
  background: var(--bg);
  border-radius: 20px;
  border: 2px dashed var(--border-light);
}

.no-listings i {
  font-size: clamp(2.5rem, 8vw, 3rem);
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.no-listings p {
  color: var(--text-soft);
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

.profile-avatar-fallback {
  width: clamp(100px, 25vw, 150px);
  height: clamp(100px, 25vw, 150px);
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent-light) 0%,
    var(--accent) 100%
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 600;
  margin: 0 auto clamp(1rem, 3vw, 1.5rem);
  box-shadow: 0 15px 30px -10px rgba(183, 140, 90, 0.3);
}

/* ========== 11. Empty State ========== */
.empty-state {
  text-align: center;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: var(--bg);
  border-radius: 32px;
  margin: clamp(1rem, 3vw, 2rem) 0;
}

.empty-state i {
  font-size: clamp(3rem, 10vw, 4rem);
  color: var(--accent);
  opacity: 0.2;
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.empty-state h3 {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.empty-state p {
  color: var(--text-soft);
  margin-bottom: clamp(2rem, 5vw, 2.5rem);
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

.empty-state .btn-primary {
  min-width: 180px;
  min-height: 48px;
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

/* ========== 12. Load More & Pagination ========== */
.load-more-container {
  text-align: center;
  margin-top: clamp(2rem, 5vw, 3rem);
}

#loadMoreBtn {
  min-width: clamp(160px, 30vw, 200px);
  min-height: 48px;
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  border-radius: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#loadMoreBtn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

#loadMoreBtn:hover::before {
  width: 300px;
  height: 300px;
}

#loadMoreBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ========== 13. Loading States & Skeletons ========== */
.loading-spinner-container {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem);
}

.loading-spinner {
  display: inline-block;
  width: clamp(36px, 8vw, 48px);
  height: clamp(36px, 8vw, 48px);
  border: 3px solid var(--border-light);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.skeleton-card {
  background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 24px;
  height: 320px;
  border: 1px solid var(--border-light);
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ========== 14. Toast Notifications ========== */
.toast-container {
  position: fixed;
  bottom: clamp(1rem, 4vw, 2rem);
  right: clamp(1rem, 4vw, 2rem);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .toast-container {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

.toast-notification {
  background: white;
  border-radius: 16px;
  padding: clamp(0.75rem, 2.5vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 280px;
  max-width: 350px;
  animation: slideInRight 0.3s ease;
  border-left: 4px solid var(--accent);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 480px) {
  .toast-notification {
    min-width: auto;
    max-width: 100%;
    width: 100%;
  }
}

.toast-notification.success {
  border-left-color: #10b981;
}
.toast-notification.error {
  border-left-color: #ef4444;
}
.toast-notification.info {
  border-left-color: var(--accent);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.toast-notification i {
  font-size: 1.1rem;
}

.toast-notification.success i {
  color: #10b981;
}
.toast-notification.error i {
  color: #ef4444;
}
.toast-notification.info i {
  color: var(--accent);
}

.toast-notification span {
  font-size: 0.85rem;
  color: var(--text-dark);
  flex: 1;
}

/* ========== 15. Responsive Breakpoints ========== */

/* Extra small devices (phones, 360px and down) */
@media (max-width: 360px) {
  .creators-grid {
    grid-template-columns: 1fr;
  }

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

  .creator-actions {
    flex-direction: column;
  }

  .profile-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .category-circles-item {
    flex: 0 0 70px;
  }

  .circle-image {
    width: 60px;
    height: 60px;
  }

  .circle-image i {
    font-size: 1.3rem;
  }
}

/* Small devices (phones, 480px and down) */
@media (max-width: 480px) {
  .creators-hero-title {
    font-size: 2.2rem;
  }

  .creators-hero-subtitle {
    font-size: 0.85rem;
    padding: 0 1rem;
  }

  .search-wrapper {
    padding-left: 1rem;
  }

  .search-wrapper input {
    font-size: 0.85rem;
  }

  .creator-info h3 {
    font-size: 0.9rem;
  }

  .creator-role {
    font-size: 0.6rem;
  }

  .creator-avatar-wrapper {
    padding: 0 1rem;
  }

  .creator-avatar-lg {
    width: 60px;
    height: 60px;
  }

  .profile-left {
    padding: 0;
  }

  .profile-avatar {
    width: 90px;
    height: 90px;
  }

  .profile-name {
    font-size: 1.4rem;
  }

  .modal-content {
    padding: 1.25rem;
  }
}

/* Tablets (768px and down) */
@media (max-width: 768px) {
  .filters-bar {
    top: 60px;
  }

  .filters-desktop {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    width: 100%;
  }

  .filter-select {
    width: 100%;
  }

  #clearFiltersBtn {
    width: 100%;
  }

  .creators-header-compact {
    flex-direction: column;
    align-items: flex-start;
  }

  .result-count {
    align-self: flex-start;
  }

  .featured-grid {
    gap: 1.25rem;
  }

  .trust-mini-card {
    padding: 1.5rem 1rem;
  }

  .modal-container {
    width: 100%;
    border-radius: 24px 24px 0 0;
  }
}

/* Landscape mode for small devices */
@media (max-height: 500px) and (orientation: landscape) {
  .modal-container {
    top: 50%;
    transform: translateY(-50%);
    max-height: 95vh;
  }

  .creator-profile {
    flex-direction: row;
  }

  .profile-left {
    flex: 0 0 250px;
  }
}

/* High-resolution displays */
@media (min-width: 1920px) {
  .creators-hero-title {
    font-size: 5rem;
  }

  .creators-hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
  }

  .container {
    max-width: 1400px;
  }

  .creators-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Dark mode support (if user prefers) */
@media (prefers-color-scheme: dark) {
  /* Optional dark mode adjustments */
  .featured-creators,
  .creators-grid-section,
  .trust-mini {
    background: var(--bg);
  }
}

/* Print styles */
@media print {
  .filters-bar,
  .creator-actions,
  .load-more-container,
  .toast-container,
  .modal-close,
  .trust-mini {
    display: none !important;
  }

  .creator-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .modal-container {
    position: static;
    transform: none;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* Creator Card - Make it position relative for absolute positioning of heart */
.creator-card {
  position: relative;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(183, 140, 90, 0.1);
  height: 100%;
}

/* Creator Save Button - Fixed positioning and visibility */
.creator-save-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  color: #94a3b8;
  opacity: 1 !important;
  visibility: visible !important;
}

.creator-save-btn i {
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.creator-save-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(183, 140, 90, 0.3);
  color: var(--accent);
}

.creator-save-btn.saved {
  background: var(--accent);
  color: white;
  animation: heartPop 0.3s ease;
}

.creator-save-btn.saved i {
  font-weight: 900;
}

.creator-save-btn.saved:hover {
  background: #9a7a4e;
}

@keyframes heartPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Tooltip */
.creator-save-btn .save-tooltip {
  position: absolute;
  bottom: -30px;
  right: 0;
  background: var(--text-dark);
  color: white;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 30;
}

.creator-save-btn:hover .save-tooltip {
  opacity: 1;
}
/* ========== 10. Creator Profile Modal - Enhanced with Frozen Background ========== */

/* When modal is open, prevent body scrolling */
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.creator-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
}

.creator-modal.active {
  display: block;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  background: white;
  border-radius: 32px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.3);
  animation: modalZoom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

@keyframes modalZoom {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .modal-container {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-height: 90vh;
    border-radius: 32px 32px 0 0;
    animation: slideUpModal 0.4s ease;
  }

  @keyframes slideUpModal {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
}

.modal-close {
  position: absolute;
  top: clamp(1rem, 3vw, 1.5rem);
  right: clamp(1rem, 3vw, 1.5rem);
  background: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 8px 15px -5px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.modal-close:hover {
  background: var(--accent);
  color: white;
  transform: rotate(90deg);
}

.modal-content {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  overflow-y: visible;
}
/* ========== 10. Creator Profile Modal - Enhanced with Frozen Background ========== */

/* When modal is open, prevent body scrolling */
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.creator-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
}

.creator-modal.active {
  display: block;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  background: white;
  border-radius: 32px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.3);
  animation: modalZoom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-overflow-scrolling: touch;
}

@keyframes modalZoom {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .modal-container {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-height: 90vh;
    border-radius: 32px 32px 0 0;
    animation: slideUpModal 0.4s ease;
  }

  @keyframes slideUpModal {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
}

/* Modal Close Button - FIXED */
.modal-close {
  position: absolute !important;
  top: 1.5rem !important;
  right: 1.5rem !important;
  background: white !important;
  border: none !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  font-size: 1.8rem !important;
  cursor: pointer !important;
  z-index: 1000 !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  color: var(--text-dark) !important;
  line-height: 1 !important;
  padding: 0 !important;
}

.modal-close:hover {
  background: var(--accent) !important;
  color: white !important;
  transform: rotate(90deg) scale(1.1) !important;
  box-shadow: 0 12px 25px rgba(183, 140, 90, 0.3) !important;
}

.modal-close:active {
  transform: rotate(90deg) scale(0.95) !important;
}

/* Mobile adjustments for close button */
@media (max-width: 768px) {
  .modal-close {
    top: 1rem !important;
    right: 1rem !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 1.5rem !important;
  }
}

.modal-content {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  overflow-y: visible;
  position: relative;
  min-height: 200px;
}
/* ========================================================================
   CART DROPDOWN STYLES
   ======================================================================== */

.cart-toggle-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  margin: 0 8px;
}

.cart-toggle-container:hover {
  background: var(--bg);
}

.cart-toggle-container i {
  font-size: 1.2rem;
  color: var(--text-dark);
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--accent);
  color: white;
  font-size: 0.55rem;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(183, 140, 90, 0.3);
}

.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 20px;
  width: 380px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-light);
  z-index: 1000;
  display: none;
  overflow: hidden;
  margin-top: 10px;
}

.cart-dropdown.active {
  display: block;
  animation: slideDown 0.3s ease;
}

.cart-dropdown-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc 0%, white 100%);
}

.cart-dropdown-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.cart-item-count {
  font-size: 0.75rem;
  color: var(--text-soft);
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 30px;
}

.cart-dropdown-items {
  max-height: 300px;
  overflow-y: auto;
  padding: 10px;
}

.cart-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
}

.cart-dropdown-item:hover {
  background: var(--bg);
}

.cart-item-image {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8fafc;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.cart-item-quantity {
  color: var(--text-soft);
}

.cart-item-price {
  font-weight: 600;
  color: var(--accent);
}

.cart-item-remove {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  opacity: 0;
}

.cart-dropdown-item:hover .cart-item-remove {
  opacity: 1;
}

.cart-item-remove:hover {
  background: #fee2e2;
  color: #ef4444;
}

.cart-dropdown-more {
  text-align: center;
  padding: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  border-top: 1px dashed var(--border-light);
}

.cart-dropdown-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-light);
  background: #f8fafc;
}

.cart-dropdown-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

.cart-total-amount {
  font-size: 1.1rem;
  color: var(--accent);
}

.cart-dropdown-actions {
  display: flex;
  gap: 10px;
}

.cart-dropdown-actions .btn-outline,
.cart-dropdown-actions .btn-primary {
  flex: 1;
  padding: 10px;
  font-size: 0.85rem;
  text-align: center;
}

.cart-dropdown-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-soft);
}

.cart-dropdown-empty i {
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 15px;
}

.cart-dropdown-empty p {
  margin-bottom: 20px;
}

/* Mobile cart */
@media (max-width: 768px) {
  .cart-dropdown {
    width: 320px;
    right: 10px;
  }

  .cart-dropdown-items {
    max-height: 250px;
  }

  .cart-item-remove {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .cart-dropdown {
    width: 90%;
    right: 5%;
  }

  .cart-dropdown-actions {
    flex-direction: column;
  }
}
/* Add to your existing header styles */
.main-header {
  position: relative;
  z-index: 100;
}

.header-flex {
  position: relative;
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
} /* Force proper positioning */
.cart-toggle-container {
  position: relative !important;
}

.cart-dropdown {
  position: absolute !important;
  top: 120px !important; /* Adjust based on your cart icon height */
  right: 0 !important;
  left: auto !important;
  transform: none !important;
}

/* For the cart page specifically, you might need this in cart.css */
.cart-page .cart-dropdown {
  top: 60px !important;
}
/* ========== 07. Main Creators Grid ========== */
.creators-grid-section {
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: white;
}

.creators-header-compact {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0 0.5rem;
}

.creators-header-compact .section-title-serif {
  margin-bottom: 0;
  font-size: clamp(1.4rem, 5vw, 2rem);
  position: relative;
  display: inline-block;
}

.creators-header-compact .section-title-serif::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.result-count {
  color: var(--text-soft);
  font-size: clamp(0.75rem, 2.5vw, 0.85rem);
  background: var(--bg);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

/* Mobile - 2 cards per row with full width and minimal gaps */
@media (max-width: 767px) {
  .creators-grid-section .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    width: 100%;
    max-width: 100%;
  }

  .creators-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 0.5rem; /* Small gap between cards */
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .creator-card {
    width: 100%;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
  }

  .creator-cover {
    height: 60px; /* Smaller cover on mobile */
  }

  .creator-avatar-wrapper {
    margin-top: -30px;
    padding: 0 0.5rem;
    margin-bottom: 0.25rem;
  }

  .creator-avatar-lg {
    width: 50px;
    height: 50px;
    border-width: 3px;
  }

  .creator-level-badge {
    font-size: 0.55rem;
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.25rem;
  }

  .creator-info {
    padding: 0 0.5rem 0.75rem 0.5rem;
  }

  .creator-info h3 {
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .creator-role {
    font-size: 0.6rem;
    margin-bottom: 0.35rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .creator-location {
    font-size: 0.6rem;
    margin-bottom: 0.35rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .creator-location i {
    font-size: 0.5rem;
  }

  .creator-categories {
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
  }

  .category-tag {
    font-size: 0.55rem;
    padding: 0.15rem 0.4rem;
    border-radius: 12px;
  }

  .creator-stats-row {
    font-size: 0.55rem;
    margin: 0.35rem 0;
    padding-top: 0.35rem;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .creator-stats-row i {
    font-size: 0.5rem;
    margin-right: 0.15rem;
  }

  .creator-actions {
    gap: 0.35rem;
    margin-top: 0.5rem;
  }

  .creator-actions .btn-primary,
  .creator-actions .btn-outline {
    min-height: 32px;
    font-size: 0.6rem;
    padding: 0.3rem 0.2rem;
    border-radius: 20px;
  }

  /* Save button adjustments */
  .creator-save-btn {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
  }

  .creator-save-btn i {
    font-size: 0.9rem;
  }

  .creator-save-btn .save-tooltip {
    font-size: 0.55rem;
    bottom: -25px;
  }
}

/* Small mobile devices - even smaller gaps */
@media (max-width: 480px) {
  .creators-grid {
    gap: 0.35rem;
  }

  .creators-grid-section .container {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }

  .creator-avatar-lg {
    width: 45px;
    height: 45px;
  }

  .creator-info h3 {
    font-size: 0.8rem;
  }

  .creator-role,
  .creator-location {
    font-size: 0.55rem;
  }

  .category-tag {
    font-size: 0.5rem;
    padding: 0.1rem 0.3rem;
  }

  .creator-stats-row {
    font-size: 0.5rem;
    gap: 0.35rem;
  }

  .creator-actions .btn-primary,
  .creator-actions .btn-outline {
    font-size: 0.55rem;
    min-height: 28px;
  }

  .creator-save-btn {
    width: 28px;
    height: 28px;
  }

  .creator-save-btn i {
    font-size: 0.8rem;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .creators-grid {
    gap: 0.25rem;
  }

  .creators-grid-section .container {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .creator-avatar-lg {
    width: 40px;
    height: 40px;
  }

  .creator-info h3 {
    font-size: 0.75rem;
  }

  .creator-role,
  .creator-location {
    font-size: 0.5rem;
  }

  .category-tag {
    font-size: 0.45rem;
  }

  .creator-stats-row {
    font-size: 0.45rem;
    gap: 0.25rem;
  }

  .creator-actions .btn-primary,
  .creator-actions .btn-outline {
    font-size: 0.5rem;
    min-height: 26px;
    padding: 0.2rem 0.1rem;
  }

  .creator-save-btn {
    width: 24px;
    height: 24px;
  }

  .creator-save-btn i {
    font-size: 0.7rem;
  }
}
/* ========== 09. Trust Mini Section - Modern Slider on Mobile ========== */
.trust-mini {
  padding: clamp(2rem, 5vw, 3rem) 0;
  background: linear-gradient(135deg, var(--bg) 0%, white 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.trust-mini::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(183, 140, 90, 0.03) 0%,
    transparent 70%
  );
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Desktop grid */
.trust-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
}

/* Mobile slider */
@media (max-width: 767px) {
  .trust-mini-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 0.5rem 0 1.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 var(--container-padding);
    scroll-behavior: smooth;
    grid-template-columns: none;
  }

  .trust-mini-grid::-webkit-scrollbar {
    height: 3px;
  }

  .trust-mini-grid::-webkit-scrollbar-track {
    background: transparent;
  }

  .trust-mini-grid::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
  }

  .trust-mini-grid::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
  }

  .trust-mini-card {
    flex: 0 0 240px; /* Fixed width for slider */
    min-width: 220px;
    max-width: 260px;
    scroll-snap-align: start;
    margin-right: 0.5rem;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
  }

  .trust-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px -12px rgba(183, 140, 90, 0.15);
    border-color: var(--accent-light);
  }

  .trust-mini-card i {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }

  .trust-mini-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
  }

  .trust-mini-card p {
    font-size: 0.7rem;
    line-height: 1.4;
    max-width: 100%;
  }

  /* Add navigation hint */
  .trust-mini-grid::after {
    content: "";
    flex: 0 0 0.5rem;
    height: 1px;
  }

  /* Add fade effect on edges */
  .trust-mini {
    position: relative;
  }

  .trust-mini::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 3;
    opacity: 0.8;
    background: linear-gradient(90deg, var(--bg), transparent);
  }

  .trust-mini::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 40px;
    pointer-events: none;
    z-index: 3;
    opacity: 0.8;
    background: linear-gradient(-90deg, var(--bg), transparent);
  }
}

/* Small mobile devices - smaller cards */
@media (max-width: 480px) {
  .trust-mini-card {
    flex: 0 0 200px;
    min-width: 180px;
    padding: 1.25rem 0.75rem;
  }

  .trust-mini-card i {
    font-size: 1.6rem;
  }

  .trust-mini-card h4 {
    font-size: 0.85rem;
  }

  .trust-mini-card p {
    font-size: 0.65rem;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .trust-mini-card {
    flex: 0 0 170px;
    min-width: 150px;
    padding: 1rem 0.6rem;
  }

  .trust-mini-card i {
    font-size: 1.4rem;
  }

  .trust-mini-card h4 {
    font-size: 0.8rem;
  }

  .trust-mini-card p {
    font-size: 0.6rem;
  }
}

/* Desktop styles remain */
@media (min-width: 768px) {
  .trust-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .trust-mini-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(183, 140, 90, 0.1);
    backdrop-filter: blur(10px);
  }

  .trust-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(183, 140, 90, 0.15);
    border-color: var(--accent-light);
  }

  .trust-mini-card i {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    background: linear-gradient(
      135deg,
      var(--accent-light) 0%,
      var(--accent) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .trust-mini-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
  }

  .trust-mini-card p {
    font-size: 0.8rem;
    color: var(--text-soft);
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
  }
}
/* ========================================================================
   FILTER TOGGLE - Centered, Disappears When Clicked
   ======================================================================== */
.filters-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  position: relative;
}

/* Centered filter toggle */
.filter-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 40px;
  background: transparent;
  white-space: nowrap;
  margin: 0 auto;
  border: 1px solid var(--border-light);
}

.filter-toggle:hover {
  background: var(--bg);
  border-color: var(--accent-light);
}

.filter-toggle-text {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.filter-toggle-icon {
  color: var(--accent);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

/* Hidden state - when filters are visible */
.filter-toggle.hidden {
  display: none;
}

/* Filters desktop - appears in same centered position */
.filters-desktop {
  display: none;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.filters-desktop.visible {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.filters-desktop .filter-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .filters-bar .container {
    min-height: 50px;
  }

  .filter-toggle {
    padding: 0.6rem 1.5rem;
    width: auto;
    min-width: 150px;
  }

  .filter-toggle-text {
    font-size: 0.9rem;
  }

  .filters-desktop.visible {
    width: 100%;
  }

  .filters-desktop .filter-group {
    flex-wrap: wrap;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
  }

  .filter-select {
    flex: 0 1 auto;
    min-width: 140px;
  }

  #clearFiltersBtn {
    flex: 0 1 auto;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .filter-toggle {
    padding: 0.5rem 1.25rem;
    min-width: 130px;
  }

  .filter-toggle-text {
    font-size: 0.8rem;
  }

  .filter-select {
    min-width: 120px;
    padding: 0.5rem 1.5rem 0.5rem 0.75rem;
    font-size: 0.8rem;
    min-height: 40px;
  }

  #clearFiltersBtn {
    min-height: 40px;
    padding: 0 1rem;
    font-size: 0.8rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* ========================================================================
   REDUCE GAP BETWEEN CREATORS GRID AND TRUST MINI
   ======================================================================== */
.creators-grid-section {
  padding-bottom: clamp(
    1rem,
    3vw,
    2rem
  ); /* Reduced from clamp(2rem, 5vw, 4rem) */
  margin-bottom: 0;
}

.trust-mini {
  padding-top: clamp(
    1.5rem,
    4vw,
    2.5rem
  ); /* Reduced from clamp(2rem, 5vw, 3rem) */
  margin-top: -0.5rem; /* Pull up slightly to reduce gap */
}

/* Even smaller gap on mobile */
@media (max-width: 768px) {
  .creators-grid-section {
    padding-bottom: 0.5rem;
  }

  .trust-mini {
    padding-top: 1rem;
    margin-top: 0;
  }
}

/* For very small screens, make them almost touch */
@media (max-width: 480px) {
  .creators-grid-section {
    padding-bottom: 0.25rem;
  }

  .trust-mini {
    padding-top: 0.75rem;
  }
}
/* ========================================================================
   FILTER TOGGLE - Centered, Disappears When Clicked
   ======================================================================== */
.filters-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  position: relative;
}

/* Centered filter toggle */
.filter-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 40px;
  background: transparent;
  white-space: nowrap;
  margin: 0 auto;
  border: 1px solid var(--border-light);
}

.filter-toggle:hover {
  background: var(--bg);
  border-color: var(--accent-light);
}

.filter-toggle-text {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.filter-toggle-icon {
  color: var(--accent);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

/* Hidden state - when filters are visible */
.filter-toggle.hidden {
  display: none;
}

/* Filters desktop - appears in same centered position */
.filters-desktop {
  display: none;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.filters-desktop.visible {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.filters-desktop .filter-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* Mobile Slider Styles */
@media (max-width: 767px) {
  .filters-bar .container {
    min-height: 50px;
    width: 100%;
    padding: 0 0.5rem;
  }

  .filter-toggle {
    padding: 0.6rem 1.5rem;
    width: auto;
    min-width: 150px;
  }

  .filter-toggle-text {
    font-size: 0.9rem;
  }

  /* Mobile - filters as horizontal slider */
  .filters-desktop.visible {
    display: flex;
    width: 100%;
    overflow-x: auto;
    padding: 0.25rem 0 0.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 0.5rem;
    white-space: nowrap;
  }

  .filters-desktop.visible::-webkit-scrollbar {
    height: 3px;
  }

  .filters-desktop.visible::-webkit-scrollbar-track {
    background: transparent;
  }

  .filters-desktop.visible::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
  }

  .filters-desktop.visible .filter-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    padding: 0 0.5rem;
  }

  /* Make both elements the same size */
  .filter-select {
    flex: 0 0 auto;
    min-width: 130px;
    width: auto;
    padding: 0.5rem 1.8rem 0.5rem 0.75rem;
    font-size: 0.8rem;
    min-height: 40px;
    background-position: right 0.6rem center;
    background-size: 14px;
    border-radius: 30px;
    border: 1px solid var(--border-light);
    background-color: white;
  }

  #clearFiltersBtn {
    flex: 0 0 auto;
    min-width: 110px;
    min-height: 40px;
    padding: 0 1rem;
    font-size: 0.8rem;
    white-space: nowrap;
    border-radius: 30px;
    background: white;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    margin-left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  #clearFiltersBtn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
  }

  /* Add fade effect on edges */
  .filters-bar {
    position: relative;
  }

  .filters-bar::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 40px;
    background: linear-gradient(90deg, transparent, var(--bg));
    pointer-events: none;
    z-index: 2;
    opacity: 0.8;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .filter-toggle {
    padding: 0.5rem 1.25rem;
    min-width: 130px;
  }

  .filter-toggle-text {
    font-size: 0.8rem;
  }

  .filter-select {
    min-width: 120px;
    padding: 0.45rem 1.5rem 0.45rem 0.6rem;
    font-size: 0.75rem;
    min-height: 36px;
    background-size: 12px;
  }

  #clearFiltersBtn {
    min-width: 100px;
    min-height: 36px;
    padding: 0 0.75rem;
    font-size: 0.75rem;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .filter-select {
    min-width: 110px;
    padding: 0.4rem 1.3rem 0.4rem 0.5rem;
    font-size: 0.7rem;
  }

  #clearFiltersBtn {
    min-width: 90px;
    padding: 0 0.6rem;
    font-size: 0.7rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Current code around line 300-315 - REPLACE THIS: */
.category-circles-item.active .circle-image {
  border-color: var(--accent);
  box-shadow:
    0 0 0 4px rgba(183, 140, 90, 0.15),
    var(--shadow);
  background: var(--accent);
}

.category-circles-item.active .circle-image i {
  color: white;
}

.category-circles-item.active span {
  color: var(--accent);
  font-weight: 600;
}

/* REPLACE WITH THIS: */
.category-circles-item.active .circle-image {
  border-color: var(--accent);
  border-width: 3px;
  box-shadow:
    0 0 0 4px rgba(183, 140, 90, 0.15),
    var(--shadow);
  background: white; /* Keep white background instead of accent color */
  transform: scale(1.05); /* Optional: slightly enlarge active item */
}

.category-circles-item.active .circle-image i {
  color: var(--accent); /* Keep icon accent colored, not white */
}

.category-circles-item.active span {
  color: var(--accent);
  font-weight: 600;
}
/* ========================================================================
   REDUCE GAPS - Creator Categories and Sections (CENTERED)
   ======================================================================== */

/* Reduce top and bottom padding of creator-categories - KEEP CENTERED */
.creator-categories {
  padding: 1.5rem 0 1.5rem 0; /* Reduced from clamp(2rem, 5vw, 4rem) 0 */
  background: white;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  text-align: center; /* Ensure content is centered */
}

/* Center the category circles container */
.creator-categories .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Even smaller on mobile - KEEP CENTERED */
@media (max-width: 768px) {
  .creator-categories {
    padding: 1rem 0 1rem 0;
  }
}

@media (max-width: 480px) {
  .creator-categories {
    padding: 0.75rem 0 0.75rem 0;
  }
}

/* Reduce gap between creators-hero and creator-categories - KEEP CENTERED */
.creators-hero {
  padding: 1.5rem 0 clamp(1.5rem, 4vw, 2.5rem) 0;
  background: linear-gradient(180deg, var(--bg) 0%, white 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Mobile adjustments for hero - KEEP CENTERED */
@media (max-width: 768px) {
  .creators-hero {
    padding: 0.5rem 0 1rem 0;
  }
}

@media (max-width: 480px) {
  .creators-hero {
    padding: 0.5rem 0 0.75rem 0;
  }
}

/* Reduce gap between creator-categories and creators-grid-section - KEEP CENTERED */
.creator-categories {
  margin-bottom: 0; /* Ensure no margin at bottom */
}

.creators-grid-section {
  padding-top: clamp(
    1.5rem,
    4vw,
    2.5rem
  ); /* Reduced from clamp(2rem, 5vw, 4rem) */
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: 0; /* Remove any top margin */
  background: white;
  text-align: center; /* Ensure content is centered */
}

/* Center the grid section content */
.creators-grid-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Center the header */
.creators-header-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0 0.5rem;
  width: 100%;
  max-width: var(--container-max);
}

/* Center the grid itself */
.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

/* Mobile adjustments for grid section - KEEP CENTERED */
@media (max-width: 768px) {
  .creators-grid-section {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .creators-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on mobile */
    gap: 0.75rem;
    padding: 0 0.25rem;
  }
}

@media (max-width: 480px) {
  .creators-grid-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .creators-grid {
    gap: 0.5rem;
  }
}

/* Adjust category circles padding - KEEP CENTERED */
.category-circles {
  display: flex;
  gap: clamp(0.75rem, 2vw, 2rem);
  overflow-x: auto;
  padding: 0.75rem 0; /* Reduced from clamp(1rem, 3vw, 2rem) 0 */
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--border-light);
  -webkit-overflow-scrolling: touch;
  justify-content: center; /* CENTER on desktop */
  scroll-behavior: smooth;
  width: 100%;
  margin: 0 auto;
}

/* On mobile, keep scrollable but center the items as much as possible */
@media (max-width: 767px) {
  .category-circles {
    justify-content: flex-start; /* Allow scrolling */
    padding: 0.5rem 0;
    gap: 0.6rem;
    scroll-padding: 0 50%; /* Center the active item when scrolling */
  }

  /* Add some left/right padding to indicate scrolling */
  .category-circles::before,
  .category-circles::after {
    content: "";
    flex: 0 0 1rem;
    height: 1px;
  }
}

@media (max-width: 480px) {
  .category-circles {
    padding: 0.4rem 0;
    gap: 0.5rem;
  }
}

/* Ensure category items are properly aligned */
.category-circles-item {
  flex: 0 0 clamp(80px, 20vw, 100px);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Keep the circle image centered */
.circle-image {
  width: clamp(70px, 18vw, 90px);
  height: clamp(70px, 18vw, 90px);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: var(--shadow);
  margin: 0 auto clamp(0.5rem, 1.5vw, 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg) 0%, white 100%);
  transition: all 0.3s ease;
}

/* Center the text */
.category-circles-item span {
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  color: var(--text-dark);
  display: block;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  transition: color 0.3s ease;
  width: 100%;
}

/* Center the count badge */
.circle-count {
  position: absolute;
  top: -5px;
  right: 50%;
  transform: translateX(50%);
  background: var(--accent);
  color: white;
  font-size: clamp(0.6rem, 1.5vw, 0.7rem);
  font-weight: 600;
  min-width: clamp(20px, 5vw, 24px);
  height: clamp(20px, 5vw, 24px);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  box-shadow: 0 4px 8px rgba(183, 140, 90, 0.3);
  border: 2px solid white;
}

/* Ensure container is centered */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

/* Remove any negative margins that might break centering */
.creators-hero + .creator-categories,
.creator-categories + .creators-grid-section {
  margin-top: 0;
}
/* ========== TIER SECTIONS ========== */
.tier-section {
  margin-bottom: 4rem;
  position: relative;
}

.tier-section:last-child {
  margin-bottom: 0;
}

.tier-header {
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  position: relative;
}

.tier-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-dark);
  display: inline-block;
  margin-right: 1rem;
  letter-spacing: -0.02em;
}

.tier-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  vertical-align: middle;
}

.tier-badge.platinum {
  background: linear-gradient(135deg, #e5e4e2 0%, #d4d4d4 100%);
  color: #2e2a28;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tier-badge.gold {
  background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%);
  color: #4a3f3a;
}

.tier-badge.silver {
  background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
  color: #2c2b28;
}

.tier-badge.bronze {
  background: linear-gradient(135deg, #cd7f32 0%, #b06e2a 100%);
  color: white;
}

.tier-description {
  color: var(--text-soft);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-style: italic;
}

/* ========== BRONZE ICONS GRID (Non-clickable) ========== */
.creators-icons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-start;
  padding: 1rem 0;
}

.bronze-creator-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100px;
  cursor: default;
  transition: all 0.2s ease;
  padding: 0.5rem;
  border-radius: 16px;
}

.bronze-creator-icon:hover {
  transform: translateY(-3px);
}

.bronze-avatar-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 0.75rem;
}

.bronze-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.bronze-creator-icon:hover .bronze-avatar {
  transform: scale(1.05);
  border-color: var(--accent-light);
}

.bronze-creator-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90px;
}

.bronze-creator-role {
  font-size: 0.65rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Bronze creator level badge positioning */
.bronze-creator-icon .creator-level-badge {
  position: absolute;
  bottom: -8px;
  right: -8px;
  padding: 0.2rem 0.5rem;
  font-size: 0.55rem;
  background: linear-gradient(135deg, #cd7f32 0%, #b06e2a 100%);
  border: 2px solid white;
  border-radius: 20px;
}

/* Responsive adjustments for bronze icons */
@media (max-width: 768px) {
  .creators-icons-grid {
    gap: 1rem;
    justify-content: center;
  }

  .bronze-creator-icon {
    width: 85px;
  }

  .bronze-avatar-wrapper {
    width: 70px;
    height: 70px;
  }

  .bronze-creator-name {
    font-size: 0.7rem;
    max-width: 75px;
  }

  .bronze-creator-role {
    font-size: 0.55rem;
  }
}

@media (max-width: 480px) {
  .creators-icons-grid {
    gap: 0.75rem;
  }

  .bronze-creator-icon {
    width: 75px;
  }

  .bronze-avatar-wrapper {
    width: 60px;
    height: 60px;
  }

  .bronze-creator-name {
    font-size: 0.65rem;
    max-width: 65px;
  }
}

/* Ensure bronze icons don't interfere with modal */
.bronze-creator-icon {
  pointer-events: none;
}

.bronze-creator-icon .creator-level-badge {
  pointer-events: none;
}

/* Tier section separators */
.tier-platinum {
  border-bottom: 1px solid rgba(229, 228, 226, 0.3);
  padding-bottom: 2rem;
}

.tier-gold {
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding-bottom: 2rem;
}

.tier-silver {
  border-bottom: 1px solid rgba(192, 192, 192, 0.2);
  padding-bottom: 2rem;
}

.tier-bronze {
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
  padding-top: 1rem;
}

/* Remove default cursor from bronze creators */
.bronze-creator-icon {
  cursor: default;
}

/* ========================================================================
   CREATORS GRID - Tiered Layout with Bronze Icons (Theme Compliant)
   ======================================================================== */

/* ========== CREATORS GRID SECTION ========== */
.creators-grid-section {
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: white;
}

.creators-header-compact {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0 0.5rem;
}

.creators-header-compact .section-title-serif {
  margin-bottom: 0;
  font-size: clamp(1.4rem, 5vw, 2rem);
  position: relative;
  display: inline-block;
}

.creators-header-compact .section-title-serif::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.result-count {
  color: var(--text-soft);
  font-size: clamp(0.75rem, 2.5vw, 0.85rem);
  background: var(--bg);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

/* ========== TIER SECTIONS ========== */
.tier-section {
  margin-bottom: 3rem;
  position: relative;
}

.tier-section:last-child {
  margin-bottom: 0;
}

.tier-header {
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  position: relative;
  text-align: left;
}

.tier-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  display: inline-block;
  margin-right: 1rem;
  letter-spacing: -0.02em;
}

.tier-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  vertical-align: middle;
}

.tier-badge.platinum {
  background: linear-gradient(135deg, #e5e4e2 0%, #d4d4d4 100%);
  color: #2e2a28;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tier-badge.gold {
  background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%);
  color: #4a3f3a;
}

.tier-badge.silver {
  background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
  color: #2c2b28;
}

.tier-badge.bronze {
  background: linear-gradient(135deg, #cd7f32 0%, #b06e2a 100%);
  color: white;
}

.tier-description {
  color: var(--text-soft);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Tier section separators */
.tier-platinum {
  border-bottom: 1px solid rgba(229, 228, 226, 0.3);
  padding-bottom: 2rem;
}

.tier-gold {
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding-bottom: 2rem;
}

.tier-silver {
  border-bottom: 1px solid rgba(192, 192, 192, 0.2);
  padding-bottom: 2rem;
}

.tier-bronze {
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
  padding-top: 1rem;
  margin-bottom: 0;
  border: none;
}

/* ========== CREATORS GRID ========== */
.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0;
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

/* ========== CREATOR CARD - Premium Theme ========== */
.creator-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(183, 140, 90, 0.1);
  position: relative;
  height: 100%;
}

.creator-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px -15px rgba(183, 140, 90, 0.2);
  border-color: var(--accent-light);
}

.creator-cover {
  height: clamp(80px, 15vw, 100px);
  background: linear-gradient(
    135deg,
    var(--accent-light) 0%,
    var(--accent) 100%
  );
  position: relative;
  overflow: hidden;
}

.creator-cover::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.creator-card:hover .creator-cover::before {
  opacity: 1;
}

.creator-avatar-wrapper {
  position: relative;
  margin-top: -40px;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}

.creator-avatar-lg {
  width: clamp(70px, 15vw, 80px);
  height: clamp(70px, 15vw, 80px);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  background: white;
  transition: transform 0.3s ease;
}

.creator-card:hover .creator-avatar-lg {
  transform: scale(1.05);
}

.creator-level-badge {
  background: var(--accent);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 30px;
  font-size: clamp(0.6rem, 2vw, 0.7rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  box-shadow: 0 5px 10px rgba(183, 140, 90, 0.2);
  border: 2px solid white;
}

.creator-level-badge.bronze {
  background: linear-gradient(135deg, #cd7f32 0%, #b06e2a 100%);
}

.creator-level-badge.silver {
  background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
}

.creator-level-badge.gold {
  background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%);
  color: #4a3f3a;
}

.creator-level-badge.platinum {
  background: linear-gradient(135deg, #e5e4e2 0%, #d4d4d4 100%);
  color: #2e2a28;
}

.creator-info {
  padding: 0 clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.75rem);
  flex: 1;
}

.creator-info h3 {
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.creator-role {
  font-size: clamp(0.65rem, 2.5vw, 0.75rem);
  color: var(--accent);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.creator-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-soft);
  font-size: clamp(0.65rem, 2.5vw, 0.75rem);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.creator-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(0.75rem, 2.5vw, 1.25rem);
}

.category-tag {
  background: var(--bg);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: clamp(0.6rem, 2vw, 0.7rem);
  color: var(--text-soft);
  border: 1px solid var(--border-light);
  transition: all 0.2s ease;
}

.creator-card:hover .category-tag {
  background: white;
  border-color: var(--accent-light);
  color: var(--text-dark);
}

.creator-stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: clamp(0.75rem, 2.5vw, 1.25rem) 0;
  font-size: clamp(0.65rem, 2.5vw, 0.75rem);
  color: var(--text-soft);
  padding-top: clamp(0.5rem, 2vw, 1rem);
  border-top: 1px solid var(--border-light);
}

.creator-stats-row i {
  color: var(--accent);
  margin-right: 0.2rem;
}

.creator-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: clamp(0.75rem, 2.5vw, 1.25rem);
}

.creator-actions .btn-primary,
.creator-actions .btn-outline {
  flex: 1;
  min-height: 40px;
  font-size: clamp(0.7rem, 2.5vw, 0.8rem);
  padding: 0.6rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.creator-actions .btn-primary {
  background: var(--accent);
  color: white;
  border: none;
}

.creator-actions .btn-primary:hover {
  background: #9a7a4e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(183, 140, 90, 0.3);
}

.creator-actions .btn-outline:hover {
  background: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
  transform: translateY(-2px);
}

/* ========== CREATOR SAVE BUTTON ========== */
.creator-save-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  color: #94a3b8;
  opacity: 1 !important;
  visibility: visible !important;
}

.creator-save-btn i {
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.creator-save-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(183, 140, 90, 0.3);
  color: var(--accent);
}

.creator-save-btn.saved {
  background: var(--accent);
  color: white;
  animation: heartPop 0.3s ease;
}

.creator-save-btn.saved i {
  font-weight: 900;
}

@keyframes heartPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.creator-save-btn .save-tooltip {
  position: absolute;
  bottom: -30px;
  right: 0;
  background: var(--text-dark);
  color: white;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 30;
}

.creator-save-btn:hover .save-tooltip {
  opacity: 1;
}

/* ========== BRONZE ICONS SLIDER ========== */
.creators-icons-slider-container {
  position: relative;
  width: 100%;
  margin: 1rem 0;
}

.creators-icons-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 0.5rem 0.25rem 1.5rem 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--border-light);
  -webkit-overflow-scrolling: touch;
}

.creators-icons-slider::-webkit-scrollbar {
  height: 4px;
}

.creators-icons-slider::-webkit-scrollbar-track {
  background: var(--border-light);
  border-radius: 4px;
}

.creators-icons-slider::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--text-dark);
}

.slider-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.05);
}

.slider-btn-left {
  left: -20px;
}

.slider-btn-right {
  right: -20px;
}

@media (max-width: 768px) {
  .slider-btn {
    width: 32px;
    height: 32px;
  }
  .slider-btn-left {
    left: -12px;
  }
  .slider-btn-right {
    right: -12px;
  }
}

@media (max-width: 480px) {
  .slider-btn {
    display: none;
  }
}

/* Bronze Creator Icons */
.bronze-creator-icon {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100px;
  cursor: default;
  transition: all 0.2s ease;
  padding: 0.5rem;
  border-radius: 16px;
  background: transparent;
  position: relative;
  scroll-snap-align: start;
  margin: 0 0.5rem;
}

.bronze-creator-icon:hover {
  transform: translateY(-3px);
  background: rgba(183, 140, 90, 0.05);
}

.bronze-avatar-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 0.75rem;
}

.bronze-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  background: #f5f5f5;
}

.bronze-creator-icon:hover .bronze-avatar {
  transform: scale(1.05);
  border-color: var(--accent-light);
  box-shadow: 0 8px 20px rgba(183, 140, 90, 0.2);
}

.bronze-creator-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90px;
  cursor: default;
}

.bronze-creator-role {
  font-size: 0.65rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: default;
}

/* Bronze level badge positioning */
.bronze-creator-icon .creator-level-badge {
  position: absolute;
  bottom: -8px;
  right: -8px;
  padding: 0.2rem 0.5rem;
  font-size: 0.55rem;
  background: linear-gradient(135deg, #cd7f32 0%, #b06e2a 100%);
  border: 2px solid white;
  border-radius: 20px;
  margin: 0;
  pointer-events: none;
}

/* Prevent clicks on bronze icons */
.bronze-creator-icon,
.bronze-creator-icon * {
  pointer-events: none;
}

/* ========== RESPONSIVE ========== */

/* Mobile - 2 cards per row */
@media (max-width: 767px) {
  .creators-grid-section .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .creators-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .creator-card {
    border-radius: 16px;
  }

  .creator-cover {
    height: 60px;
  }
  .creator-avatar-wrapper {
    margin-top: -30px;
    padding: 0 0.5rem;
  }
  .creator-avatar-lg {
    width: 50px;
    height: 50px;
    border-width: 3px;
  }
  .creator-level-badge {
    font-size: 0.55rem;
    padding: 0.2rem 0.6rem;
  }
  .creator-info {
    padding: 0 0.5rem 0.75rem;
  }
  .creator-info h3 {
    font-size: 0.85rem;
  }
  .creator-role {
    font-size: 0.6rem;
  }
  .creator-location {
    font-size: 0.6rem;
  }
  .category-tag {
    font-size: 0.55rem;
    padding: 0.15rem 0.4rem;
  }
  .creator-stats-row {
    font-size: 0.55rem;
  }
  .creator-actions .btn-primary,
  .creator-actions .btn-outline {
    min-height: 32px;
    font-size: 0.6rem;
    padding: 0.3rem 0.2rem;
  }
  .creator-save-btn {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
  }
  .creator-save-btn i {
    font-size: 0.9rem;
  }

  /* Bronze icons responsive */
  .creators-icons-slider {
    gap: 1.5rem;
  }
  .bronze-creator-icon {
    width: 85px;
    margin: 0 0.35rem;
  }
  .bronze-avatar-wrapper {
    width: 70px;
    height: 70px;
  }
  .bronze-creator-name {
    font-size: 0.7rem;
    max-width: 75px;
  }
  .bronze-creator-role {
    font-size: 0.55rem;
  }

  .tier-title {
    font-size: 1.3rem;
  }
  .tier-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.75rem;
  }
  .tier-description {
    font-size: 0.75rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .creators-grid {
    gap: 0.35rem;
  }
  .creator-avatar-lg {
    width: 45px;
    height: 45px;
  }
  .creator-info h3 {
    font-size: 0.8rem;
  }
  .creator-role,
  .creator-location {
    font-size: 0.55rem;
  }
  .category-tag {
    font-size: 0.5rem;
    padding: 0.1rem 0.3rem;
  }
  .creator-stats-row {
    font-size: 0.5rem;
  }
  .creator-actions .btn-primary,
  .creator-actions .btn-outline {
    font-size: 0.55rem;
    min-height: 28px;
  }
  .creator-save-btn {
    width: 28px;
    height: 28px;
  }
  .creator-save-btn i {
    font-size: 0.8rem;
  }

  .creators-icons-slider {
    gap: 1.25rem;
  }
  .bronze-creator-icon {
    width: 75px;
    margin: 0 0.25rem;
  }
  .bronze-avatar-wrapper {
    width: 60px;
    height: 60px;
  }
  .bronze-creator-name {
    font-size: 0.65rem;
    max-width: 65px;
  }

  .tier-title {
    font-size: 1.1rem;
  }
  .tier-badge {
    font-size: 0.55rem;
    padding: 0.15rem 0.6rem;
  }
  .tier-description {
    font-size: 0.7rem;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .creators-grid {
    gap: 0.25rem;
  }
  .creator-avatar-lg {
    width: 40px;
    height: 40px;
  }
  .creator-info h3 {
    font-size: 0.75rem;
  }
  .creator-role,
  .creator-location {
    font-size: 0.5rem;
  }
  .category-tag {
    font-size: 0.45rem;
  }
  .creator-stats-row {
    font-size: 0.45rem;
  }
  .creator-actions .btn-primary,
  .creator-actions .btn-outline {
    font-size: 0.5rem;
    min-height: 26px;
  }
  .creator-save-btn {
    width: 24px;
    height: 24px;
  }
  .creator-save-btn i {
    font-size: 0.7rem;
  }
}

/* High-resolution displays */
@media (min-width: 1920px) {
  .creators-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Print styles */
@media print {
  .creator-actions,
  .creator-save-btn,
  .load-more-container {
    display: none !important;
  }
  .creator-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}
/* ========== BRONZE ICONS SLIDER ========== */
.creators-icons-slider-container {
  position: relative;
  width: 100%;
  margin: 1rem 0;
}

.creators-icons-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 2rem; /* Increased gap for more spacing between icons */
  padding: 0.5rem 0.25rem 1.5rem 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--border-light);
  -webkit-overflow-scrolling: touch;
}

.creators-icons-slider::-webkit-scrollbar {
  height: 4px;
}

.creators-icons-slider::-webkit-scrollbar-track {
  background: var(--border-light);
  border-radius: 4px;
}

.creators-icons-slider::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--text-dark);
}

.slider-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.05);
}

.slider-btn-left {
  left: -20px;
}

.slider-btn-right {
  right: -20px;
}

@media (max-width: 768px) {
  .slider-btn {
    width: 32px;
    height: 32px;
  }
  .slider-btn-left {
    left: -12px;
  }
  .slider-btn-right {
    right: -12px;
  }
}

@media (max-width: 480px) {
  .slider-btn {
    display: none;
  }
}

/* Bronze Creator Icons - FULL TEXT VISIBILITY */
.bronze-creator-icon {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 120px; /* Increased width for more text space */
  min-width: 110px;
  max-width: 140px;
  cursor: default;
  transition: all 0.2s ease;
  padding: 0.75rem 0.5rem;
  border-radius: 20px;
  background: transparent;
  position: relative;
  scroll-snap-align: start;
  margin: 0 0.75rem; /* Increased horizontal margin */
}

.bronze-creator-icon:hover {
  transform: translateY(-3px);
  background: rgba(183, 140, 90, 0.05);
}

.bronze-avatar-wrapper {
  position: relative;
  width: 85px; /* Slightly larger avatar */
  height: 85px;
  margin-bottom: 1rem;
}

.bronze-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  background: #f5f5f5;
}

.bronze-creator-icon:hover .bronze-avatar {
  transform: scale(1.05);
  border-color: var(--accent-light);
  box-shadow: 0 8px 20px rgba(183, 140, 90, 0.2);
}

/* Bronze Creator Name - FULL TEXT VISIBLE */
.bronze-creator-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  white-space: normal; /* Allow text to wrap */
  overflow: visible;
  text-overflow: clip;
  max-width: 110px;
  cursor: default;
  word-break: break-word;
  line-height: 1.3;
  text-align: center;
}

/* Bronze Creator Role - FULL TEXT VISIBLE */
.bronze-creator-role {
  font-size: 0.7rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: default;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-break: break-word;
  max-width: 110px;
  text-align: center;
}

/* Bronze level badge positioning */
.bronze-creator-icon .creator-level-badge {
  position: absolute;
  bottom: -8px;
  right: -8px;
  padding: 0.25rem 0.6rem;
  font-size: 0.6rem;
  background: linear-gradient(135deg, #cd7f32 0%, #b06e2a 100%);
  border: 2px solid white;
  border-radius: 20px;
  margin: 0;
  pointer-events: none;
  white-space: nowrap;
}

/* Prevent clicks on bronze icons */
.bronze-creator-icon,
.bronze-creator-icon * {
  pointer-events: none;
}

/* Responsive adjustments for bronze slider */
@media (max-width: 768px) {
  .creators-icons-slider {
    gap: 1.5rem;
    padding: 0.5rem 0.25rem 1.5rem 0.25rem;
  }

  .bronze-creator-icon {
    width: 100px;
    min-width: 95px;
    max-width: 120px;
    margin: 0 0.5rem;
    padding: 0.5rem 0.35rem;
  }

  .bronze-avatar-wrapper {
    width: 75px;
    height: 75px;
    margin-bottom: 0.8rem;
  }

  .bronze-creator-name {
    font-size: 0.75rem;
    max-width: 95px;
    line-height: 1.2;
  }

  .bronze-creator-role {
    font-size: 0.6rem;
    max-width: 95px;
  }

  .bronze-creator-icon .creator-level-badge {
    padding: 0.2rem 0.5rem;
    font-size: 0.55rem;
  }
}

@media (max-width: 480px) {
  .creators-icons-slider {
    gap: 1rem;
    padding: 0.5rem 0 1.5rem 0;
  }

  .bronze-creator-icon {
    width: 90px;
    min-width: 85px;
    max-width: 105px;
    margin: 0 0.35rem;
    padding: 0.4rem 0.25rem;
  }

  .bronze-avatar-wrapper {
    width: 65px;
    height: 65px;
    margin-bottom: 0.6rem;
  }

  .bronze-creator-name {
    font-size: 0.7rem;
    max-width: 85px;
    line-height: 1.2;
  }

  .bronze-creator-role {
    font-size: 0.55rem;
    max-width: 85px;
  }

  .bronze-creator-icon .creator-level-badge {
    padding: 0.15rem 0.45rem;
    font-size: 0.5rem;
    bottom: -6px;
    right: -6px;
  }
}

@media (max-width: 360px) {
  .creators-icons-slider {
    gap: 0.75rem;
  }

  .bronze-creator-icon {
    width: 80px;
    min-width: 75px;
    max-width: 95px;
    margin: 0 0.25rem;
    padding: 0.35rem 0.2rem;
  }

  .bronze-avatar-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
  }

  .bronze-creator-name {
    font-size: 0.65rem;
    max-width: 75px;
  }

  .bronze-creator-role {
    font-size: 0.5rem;
    max-width: 75px;
  }

  .bronze-creator-icon .creator-level-badge {
    padding: 0.12rem 0.4rem;
    font-size: 0.45rem;
  }
}
/* ========== BRONZE ICONS SLIDER ========== */
.creators-icons-slider-container {
  position: relative;
  width: 100%;
  margin: 1rem 0;
}

.creators-icons-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 0.5rem 0.25rem 1.5rem 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--border-light);
  -webkit-overflow-scrolling: touch;
}

.creators-icons-slider::-webkit-scrollbar {
  height: 4px;
}

.creators-icons-slider::-webkit-scrollbar-track {
  background: var(--border-light);
  border-radius: 4px;
}

.creators-icons-slider::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--text-dark);
}

.slider-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.05);
}

.slider-btn-left {
  left: -20px;
}

.slider-btn-right {
  right: -20px;
}

@media (max-width: 768px) {
  .slider-btn {
    width: 32px;
    height: 32px;
  }
  .slider-btn-left {
    left: -12px;
  }
  .slider-btn-right {
    right: -12px;
  }
}

@media (max-width: 480px) {
  .slider-btn {
    display: none;
  }
}

/* Bronze Creator Icons - Matching Gold Card Style */
.bronze-creator-icon {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 120px;
  min-width: 110px;
  max-width: 140px;
  cursor: default;
  transition: all 0.2s ease;
  padding: 0.75rem 0.5rem;
  border-radius: 20px;
  background: transparent;
  position: relative;
  scroll-snap-align: start;
  margin: 0 0.75rem;
}

.bronze-creator-icon:hover {
  transform: translateY(-3px);
  background: rgba(183, 140, 90, 0.05);
}

/* Bronze Avatar Wrapper - Matching Gold Card Style */
.bronze-avatar-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Bronze Avatar - Matching Gold Card Avatar Style */
.bronze-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: var(--accent-light);
}

.bronze-creator-icon:hover .bronze-avatar {
  transform: scale(1.05);
  border-color: var(--accent);
  box-shadow: 0 15px 25px -8px rgba(183, 140, 90, 0.2);
}

/* Bronze Level Badge - Matching Gold Card Badge Style */
.bronze-creator-icon .creator-level-badge {
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%) translateY(30%);
  background: white;
  padding: 0.25rem 0.75rem;
  border-radius: 30px;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 10px -3px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  border: 1px solid var(--border-light);
  pointer-events: none;
}

.bronze-creator-icon .creator-level-badge.bronze {
  background: linear-gradient(135deg, #cd7f32 0%, #b06e2a 100%);
  color: white;
  border-color: #d4b594;
}

/* Bronze Creator Name - FULL TEXT VISIBLE */
.bronze-creator-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0.5rem 0 0.25rem;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  max-width: 110px;
  cursor: default;
  word-break: break-word;
  line-height: 1.3;
  text-align: center;
  font-family: var(--font-serif);
}

/* Bronze Creator Role - FULL TEXT VISIBLE */
.bronze-creator-role {
  font-size: 0.7rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: default;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-break: break-word;
  max-width: 110px;
  text-align: center;
  font-weight: 500;
}

/* Prevent clicks on bronze icons */
.bronze-creator-icon,
.bronze-creator-icon * {
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .creators-icons-slider {
    gap: 1.5rem;
  }

  .bronze-creator-icon {
    width: 100px;
    min-width: 95px;
    max-width: 120px;
    margin: 0 0.5rem;
    padding: 0.5rem 0.35rem;
  }

  .bronze-avatar-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 0.8rem;
  }

  .bronze-creator-name {
    font-size: 0.75rem;
    max-width: 95px;
  }

  .bronze-creator-role {
    font-size: 0.6rem;
    max-width: 95px;
  }

  .bronze-creator-icon .creator-level-badge {
    padding: 0.2rem 0.6rem;
    font-size: 0.55rem;
  }
}

@media (max-width: 480px) {
  .creators-icons-slider {
    gap: 1rem;
  }

  .bronze-creator-icon {
    width: 90px;
    min-width: 85px;
    max-width: 105px;
    margin: 0 0.35rem;
    padding: 0.4rem 0.25rem;
  }

  .bronze-avatar-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 0.6rem;
  }

  .bronze-creator-name {
    font-size: 0.7rem;
    max-width: 85px;
  }

  .bronze-creator-role {
    font-size: 0.55rem;
    max-width: 85px;
  }

  .bronze-creator-icon .creator-level-badge {
    padding: 0.15rem 0.5rem;
    font-size: 0.5rem;
  }
}

@media (max-width: 360px) {
  .creators-icons-slider {
    gap: 0.75rem;
  }

  .bronze-creator-icon {
    width: 80px;
    min-width: 75px;
    max-width: 95px;
    margin: 0 0.25rem;
    padding: 0.35rem 0.2rem;
  }

  .bronze-avatar-wrapper {
    width: 55px;
    height: 55px;
    margin-bottom: 0.5rem;
  }

  .bronze-creator-name {
    font-size: 0.65rem;
    max-width: 75px;
  }

  .bronze-creator-role {
    font-size: 0.5rem;
    max-width: 75px;
  }

  .bronze-creator-icon .creator-level-badge {
    padding: 0.12rem 0.4rem;
    font-size: 0.45rem;
  }
}
/* ========== BRONZE ICONS SLIDER - AUTO-PLAY ========== */
.creators-icons-slider-container {
  position: relative;
  width: 100%;
  margin: 1rem 0;
  overflow: hidden;
}

.creators-icons-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 0.5rem 0.25rem 1.5rem 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--border-light);
  -webkit-overflow-scrolling: touch;
  /* Remove animation from here - we'll handle with JS */
}

/* Pause animation on hover */
.creators-icons-slider-container:hover .creators-icons-slider {
  animation-play-state: paused;
}

/* Optional: Add a subtle gradient overlay to indicate scrolling */
.creators-icons-slider-container::before,
.creators-icons-slider-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.creators-icons-slider-container::before {
  left: 0;
  background: linear-gradient(90deg, white, transparent);
}

.creators-icons-slider-container::after {
  right: 0;
  background: linear-gradient(-90deg, white, transparent);
}

.creators-icons-slider-container:hover::before,
.creators-icons-slider-container:hover::after {
  opacity: 0.6;
}
.creators-icons-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth; /* Smooth scrolling */
  gap: 2rem;
  padding: 0.5rem 0.25rem 1.5rem 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--border-light);
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

/* Ensure slider has enough width for auto-scrolling */
.creators-icons-slider {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Make sure slider container has proper dimensions */
.creators-icons-slider-container {
  position: relative;
  width: 100%;
  margin: 1rem 0;
  overflow: hidden;
}
/* ========== BRONZE ICONS SLIDER - AUTO-PLAY NO ARROWS ========== */
.creators-icons-slider-container {
  position: relative;
  width: 100%;
  margin: 1rem 0;
  overflow: hidden;
  background-color: var(--bg);
}

.creators-icons-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 0.5rem 0.25rem 1.5rem 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--border-light);
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  background-color: var(--bg);
}

.creators-icons-slider::-webkit-scrollbar {
  height: 4px;
}

.creators-icons-slider::-webkit-scrollbar-track {
  background: var(--border-light);
  border-radius: 4px;
}

.creators-icons-slider::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

/* Hide scrollbar on mobile for cleaner look */
@media (max-width: 768px) {
  .creators-icons-slider::-webkit-scrollbar {
    display: none;
  }
  .creators-icons-slider {
    scrollbar-width: none;
  }
}

/* Optional: Add a subtle gradient fade on edges for mobile */
@media (max-width: 768px) {
  .creators-icons-slider-container::before,
  .creators-icons-slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .creators-icons-slider-container::before {
    left: 0;
    background: linear-gradient(90deg, white, transparent);
  }

  .creators-icons-slider-container::after {
    right: 0;
    background: linear-gradient(-90deg, white, transparent);
  }

  .creators-icons-slider-container:hover::before,
  .creators-icons-slider-container:hover::after {
    opacity: 0.5;
  }
}
/* ========== BRONZE ICONS SLIDER - AUTO-PLAY NO ARROWS ========== */
.creators-icons-slider-container {
  position: relative;
  width: 100%;
  margin: 1rem 0;
  overflow: hidden;
  background-color: var(--bg);
  border-radius: 20px;
  padding: 1rem 0;
}

.creators-icons-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 0.5rem 0.25rem 1.5rem 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--border-light);
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  background-color: transparent;
}

.creators-icons-slider::-webkit-scrollbar {
  height: 4px;
}

.creators-icons-slider::-webkit-scrollbar-track {
  background: var(--border-light);
  border-radius: 4px;
}

.creators-icons-slider::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

/* Hide scrollbar on mobile for cleaner look */
@media (max-width: 768px) {
  .creators-icons-slider::-webkit-scrollbar {
    display: none;
  }
  .creators-icons-slider {
    scrollbar-width: none;
  }
}

/* Optional: Add a subtle gradient fade on edges for mobile */
@media (max-width: 768px) {
  .creators-icons-slider-container::before,
  .creators-icons-slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .creators-icons-slider-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent);
  }

  .creators-icons-slider-container::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg), transparent);
  }

  .creators-icons-slider-container:hover::before,
  .creators-icons-slider-container:hover::after {
    opacity: 0.5;
  }
}
/* ========== BRONZE ICONS SLIDER - FIXED BACKGROUND ISSUE ========== */

/* Container for the entire bronze section */
.tier-bronze {
  background: white !important;
  margin-bottom: 0 !important;
  padding: 1rem 0 2rem 0 !important;
  border: none !important;
  position: relative;
  z-index: 1;
}

/* Ensure the tier section has white background */
.tier-section.tier-bronze {
  background-color: white !important;
  background: white !important;
}

/* Slider container */
.creators-icons-slider-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-color: white !important;
  padding: 0.5rem 0 1rem 0 !important;
}

/* Main slider - WHITE BACKGROUND */
.creators-icons-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 1rem 1rem 2rem 1rem !important;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--border-light);
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  background-color: white !important;
  border-radius: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

.creators-icons-slider::-webkit-scrollbar {
  height: 4px;
}

.creators-icons-slider::-webkit-scrollbar-track {
  background: var(--border-light);
  border-radius: 4px;
}

.creators-icons-slider::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

/* Hide scrollbar on mobile for cleaner look */
@media (max-width: 768px) {
  .creators-icons-slider::-webkit-scrollbar {
    display: none;
  }
  .creators-icons-slider {
    scrollbar-width: none;
  }
}

/* Bronze Creator Icons */
.bronze-creator-icon {
  flex: 0 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: 120px !important;
  min-width: 110px !important;
  max-width: 140px !important;
  cursor: default !important;
  transition: all 0.2s ease !important;
  padding: 0.75rem 0.5rem !important;
  border-radius: 20px !important;
  background: transparent !important;
  position: relative !important;
  scroll-snap-align: start !important;
  margin: 0 0.75rem !important;
  border: none !important;
  box-shadow: none !important;
}

.bronze-creator-icon:hover {
  transform: translateY(-3px) !important;
  background: rgba(183, 140, 90, 0.05) !important;
  border-radius: 20px !important;
  border: none !important;
  box-shadow: none !important;
}

.bronze-avatar-wrapper {
  position: relative !important;
  width: 80px !important;
  height: 80px !important;
  margin-bottom: 1rem !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background: transparent !important;
}

.bronze-avatar {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 3px solid white !important;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  background: var(--accent-light) !important;
}

.bronze-creator-icon:hover .bronze-avatar {
  transform: scale(1.05) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 15px 25px -8px rgba(183, 140, 90, 0.2) !important;
}

/* Bronze Level Badge */
.bronze-creator-icon .creator-level-badge {
  position: absolute !important;
  bottom: 0 !important;
  right: 50% !important;
  transform: translateX(50%) translateY(30%) !important;
  background: white !important;
  padding: 0.25rem 0.75rem !important;
  border-radius: 30px !important;
  font-size: 0.6rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 5px 10px -3px rgba(0, 0, 0, 0.1) !important;
  white-space: nowrap !important;
  border: 1px solid var(--border-light) !important;
  pointer-events: none !important;
  line-height: 1.2 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.bronze-creator-icon .creator-level-badge.bronze {
  background: linear-gradient(135deg, #cd7f32 0%, #b06e2a 100%) !important;
  color: white !important;
  border-color: #d4b594 !important;
}

/* Bronze Creator Name */
.bronze-creator-name {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--text-dark) !important;
  margin: 0.5rem 0 0.25rem !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  max-width: 110px !important;
  cursor: default !important;
  word-break: break-word !important;
  line-height: 1.3 !important;
  text-align: center !important;
  font-family: var(--font-serif) !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

/* Bronze Creator Role */
.bronze-creator-role {
  font-size: 0.7rem !important;
  color: var(--text-soft) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  cursor: default !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  word-break: break-word !important;
  max-width: 110px !important;
  text-align: center !important;
  font-weight: 500 !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

/* Prevent clicks on bronze icons */
.bronze-creator-icon,
.bronze-creator-icon * {
  pointer-events: none !important;
}

/* Ensure the grid section itself has white background */
.creators-grid-section {
  background-color: white !important;
}

/* Ensure the container inside grid section is white */
.creators-grid-section .container {
  background-color: transparent !important;
}

/* Fix any potential background from parent elements */
.tier-section,
.tier-bronze,
.creators-icons-slider-container,
.creators-icons-slider {
  background-color: white !important;
  background: white !important;
}

/* Remove any pseudo-elements that might add color */
.tier-bronze::before,
.tier-bronze::after,
.creators-icons-slider-container::before,
.creators-icons-slider-container::after {
  display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .creators-icons-slider {
    gap: 1.5rem;
    padding: 1rem 0.75rem 1.5rem 0.75rem !important;
  }

  .bronze-creator-icon {
    width: 100px !important;
    min-width: 95px !important;
    max-width: 120px !important;
    margin: 0 0.5rem !important;
    padding: 0.5rem 0.35rem !important;
  }

  .bronze-avatar-wrapper {
    width: 70px !important;
    height: 70px !important;
    margin-bottom: 0.8rem !important;
  }

  .bronze-creator-name {
    font-size: 0.75rem !important;
    max-width: 95px !important;
  }

  .bronze-creator-role {
    font-size: 0.6rem !important;
    max-width: 95px !important;
  }

  .bronze-creator-icon .creator-level-badge {
    padding: 0.2rem 0.6rem !important;
    font-size: 0.55rem !important;
  }
}

@media (max-width: 480px) {
  .creators-icons-slider {
    gap: 1rem;
    padding: 0.75rem 0.5rem 1.25rem 0.5rem !important;
  }

  .bronze-creator-icon {
    width: 90px !important;
    min-width: 85px !important;
    max-width: 105px !important;
    margin: 0 0.35rem !important;
    padding: 0.4rem 0.25rem !important;
  }

  .bronze-avatar-wrapper {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 0.6rem !important;
  }

  .bronze-creator-name {
    font-size: 0.7rem !important;
    max-width: 85px !important;
  }

  .bronze-creator-role {
    font-size: 0.55rem !important;
    max-width: 85px !important;
  }

  .bronze-creator-icon .creator-level-badge {
    padding: 0.15rem 0.5rem !important;
    font-size: 0.5rem !important;
  }
}

@media (max-width: 360px) {
  .creators-icons-slider {
    gap: 0.75rem;
    padding: 0.5rem 0.35rem 1rem 0.35rem !important;
  }

  .bronze-creator-icon {
    width: 80px !important;
    min-width: 75px !important;
    max-width: 95px !important;
    margin: 0 0.25rem !important;
    padding: 0.35rem 0.2rem !important;
  }

  .bronze-avatar-wrapper {
    width: 55px !important;
    height: 55px !important;
    margin-bottom: 0.5rem !important;
  }

  .bronze-creator-name {
    font-size: 0.65rem !important;
    max-width: 75px !important;
  }

  .bronze-creator-role {
    font-size: 0.5rem !important;
    max-width: 75px !important;
  }

  .bronze-creator-icon .creator-level-badge {
    padding: 0.12rem 0.4rem !important;
    font-size: 0.45rem !important;
  }
}
/* AGGRESSIVE FIX - Force white background on all parent elements */
.creators-page,
.creators-grid-section,
.creator-categories,
.creator-categories .container,
.category-circles {
  background-color: white !important;
  background: white !important;
  background-image: none !important;
}

/* Remove any background from the body or main for these sections */
main .creator-categories,
main .creators-grid-section {
  background-color: white !important;
}

/* Force remove any gradient or radial background */
.creator-categories {
  background: white !important;
  background-image: none !important;
  background-color: white !important;
  background-attachment: scroll !important;
}

/* Reset any background on circle images */
.circle-image {
  background: white !important;
  background-image: none !important;
}

/* Ensure no backdrop-filter or blur */
.creator-categories,
.category-circles,
.circle-image {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
/* ========== TRUST MINI GRID - FIXED BACKGROUND ========== */
.trust-mini {
  padding: clamp(2rem, 5vw, 3rem) 0;
  background: white !important;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

/* Remove the gradient background that was causing color */
.trust-mini::before {
  display: none !important;
}

/* Trust grid container */
.trust-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
  background: white !important;
}

/* Trust cards */
.trust-mini-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white !important;
  border-radius: 24px;
  box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  backdrop-filter: none !important;
}

.trust-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px rgba(183, 140, 90, 0.15);
  border-color: var(--accent-light);
  background: white !important;
}

.trust-mini-card i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  background: linear-gradient(
    135deg,
    var(--accent-light) 0%,
    var(--accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-mini-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.trust-mini-card p {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

/* Remove any animation that might add color */
.trust-mini::after {
  display: none !important;
}

/* Remove the rotate animation */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Mobile slider adjustments for trust section */
@media (max-width: 767px) {
  .trust-mini-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 0.5rem 0 1.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 var(--container-padding);
    scroll-behavior: smooth;
    background: white !important;
  }

  .trust-mini-grid::-webkit-scrollbar {
    height: 3px;
  }

  .trust-mini-grid::-webkit-scrollbar-track {
    background: transparent;
  }

  .trust-mini-grid::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
  }

  .trust-mini-card {
    flex: 0 0 240px;
    min-width: 220px;
    max-width: 260px;
    scroll-snap-align: start;
    margin-right: 0.5rem;
    padding: 1.5rem 1rem;
    background: white !important;
    border-radius: 20px;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
  }

  .trust-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px -12px rgba(183, 140, 90, 0.15);
    border-color: var(--accent-light);
    background: white !important;
  }

  .trust-mini-card i {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }

  .trust-mini-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
  }

  .trust-mini-card p {
    font-size: 0.7rem;
    line-height: 1.4;
    max-width: 100%;
  }

  /* Remove the gradient fade effects on mobile */
  .trust-mini::before,
  .trust-mini::after {
    display: none !important;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .trust-mini-card {
    flex: 0 0 200px;
    min-width: 180px;
    padding: 1.25rem 0.75rem;
  }

  .trust-mini-card i {
    font-size: 1.6rem;
  }

  .trust-mini-card h4 {
    font-size: 0.85rem;
  }

  .trust-mini-card p {
    font-size: 0.65rem;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .trust-mini-card {
    flex: 0 0 170px;
    min-width: 150px;
    padding: 1rem 0.6rem;
  }

  .trust-mini-card i {
    font-size: 1.4rem;
  }

  .trust-mini-card h4 {
    font-size: 0.8rem;
  }

  .trust-mini-card p {
    font-size: 0.6rem;
  }
}

/* Desktop styles remain the same but with white background */
@media (min-width: 768px) {
  .trust-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: white !important;
  }

  .trust-mini-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white !important;
    border-radius: 24px;
    box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(183, 140, 90, 0.1);
    backdrop-filter: none !important;
  }

  .trust-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(183, 140, 90, 0.15);
    border-color: var(--accent-light);
    background: white !important;
  }
}
/* ========== BRONZE SECTION - INCREASE TOP SPACING ========== */

/* Add top margin to bronze section to push it down */
.tier-section.tier-bronze {
  margin-top: 2rem !important;
  margin-bottom: 0 !important;
  padding: 1rem 0 0.5rem 0 !important;
  background: white !important;
}

/* Alternative: Add padding to the previous section to create space */
.tier-section.tier-silver {
  margin-bottom: 2rem !important;
  padding-bottom: 2rem !important;
  border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}

/* Or add a spacer between silver and bronze sections */
.tier-section.tier-silver::after {
  content: "";
  display: block;
  height: 2rem;
  width: 100%;
  background: transparent;
  margin-top: 2rem;
}

/* Remove any negative margins that might be pulling it up */
.creators-grid-section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Ensure the bronze section has proper spacing */
.tier-bronze {
  margin-top: 2rem !important;
  margin-bottom: 0 !important;
}

/* Trust section spacing remains minimal */
.trust-mini {
  padding-top: 1rem !important;
  padding-bottom: 2rem !important;
  margin-top: 0 !important;
}

/* Bronze slider container adjustments */
.creators-icons-slider-container {
  margin-top: 0.5rem !important;
  margin-bottom: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tier-section.tier-bronze {
    margin-top: 1.5rem !important;
    padding: 0.75rem 0 0.25rem 0 !important;
  }

  .tier-section.tier-silver {
    margin-bottom: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .tier-section.tier-silver::after {
    height: 1.5rem;
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .tier-section.tier-bronze {
    margin-top: 1rem !important;
    padding: 0.5rem 0 0.15rem 0 !important;
  }

  .tier-section.tier-silver {
    margin-bottom: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .tier-section.tier-silver::after {
    height: 1rem;
    margin-top: 1rem;
  }
}

@media (max-width: 360px) {
  .tier-section.tier-bronze {
    margin-top: 0.75rem !important;
  }

  .tier-section.tier-silver {
    margin-bottom: 0.75rem !important;
  }
}
/* ========== TIER HEADERS - CENTERED ========== */

/* Center all tier headers */
.tier-header {
  text-align: center !important;
  margin-bottom: 2rem !important;
  padding-bottom: 0.5rem !important;
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100%;
}

/* Center the tier title */
.tier-title {
  display: inline-block;
  text-align: center !important;
  margin: 0 auto !important;
  position: relative;
}

/* Center the tier badge */
.tier-badge {
  display: inline-block;
  margin: 0 0 0 0.75rem !important;
  vertical-align: middle;
}

/* Center the tier description */
.tier-description {
  text-align: center !important;
  margin-top: 0.75rem !important;
  max-width: 500px;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Remove any left alignment from before */
.tier-header h2,
.tier-header .tier-title {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Ensure the title and badge are centered together */
.tier-header .tier-title,
.tier-header .tier-badge {
  display: inline-block;
  vertical-align: middle;
}

/* Optional: Add a centered underline effect */
.tier-header::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 1rem auto 0 auto;
  border-radius: 2px;
  opacity: 0.5;
}

/* Remove any pseudo-element that might be left-aligned */
.tier-header .tier-title::after,
.tier-header .tier-title::before {
  display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tier-header {
    margin-bottom: 1.5rem !important;
  }

  .tier-title {
    font-size: 1.3rem;
  }

  .tier-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.75rem;
    margin-left: 0.5rem !important;
  }

  .tier-description {
    font-size: 0.75rem;
    margin-top: 0.5rem !important;
    max-width: 400px;
  }

  .tier-header::after {
    width: 50px;
    margin: 0.75rem auto 0 auto;
  }
}

@media (max-width: 480px) {
  .tier-header {
    margin-bottom: 1rem !important;
  }

  .tier-title {
    font-size: 1.1rem;
  }

  .tier-badge {
    font-size: 0.55rem;
    padding: 0.15rem 0.6rem;
    margin-left: 0.35rem !important;
  }

  .tier-description {
    font-size: 0.7rem;
    margin-top: 0.4rem !important;
    max-width: 300px;
  }

  .tier-header::after {
    width: 40px;
    margin: 0.6rem auto 0 auto;
  }
}

@media (max-width: 360px) {
  .tier-title {
    font-size: 1rem;
  }

  .tier-badge {
    font-size: 0.5rem;
    padding: 0.12rem 0.5rem;
    margin-left: 0.25rem !important;
  }

  .tier-description {
    font-size: 0.65rem;
    margin-top: 0.3rem !important;
  }

  .tier-header::after {
    width: 35px;
    margin: 0.5rem auto 0 auto;
  }
}
/* ========== BRONZE TIER BADGE - ADD TOP SPACING ========== */

/* Add top margin to the bronze tier header */
.tier-section.tier-bronze .tier-header {
  padding-top: 1rem !important;
  margin-top: 0.5rem !important;
}

/* Alternative: Add space specifically to the badge container */
.tier-section.tier-bronze .tier-badge.bronze {
  margin-top: 0.5rem !important;
  display: inline-block;
}

/* Add spacing to the entire tier header in bronze section */
.tier-section.tier-bronze .tier-header {
  position: relative;
  padding-top: 1.5rem !important;
}

/* Add a subtle top border or spacing */
.tier-section.tier-bronze {
  position: relative;
  padding-top: 1rem !important;
}

/* If you want to add spacing before the title/badge */
.tier-section.tier-bronze .tier-header .tier-title,
.tier-section.tier-bronze .tier-header .tier-badge {
  margin-top: 0.5rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tier-section.tier-bronze .tier-header {
    padding-top: 1rem !important;
    margin-top: 0.25rem !important;
  }

  .tier-section.tier-bronze .tier-badge.bronze {
    margin-top: 0.35rem !important;
  }
}

@media (max-width: 480px) {
  .tier-section.tier-bronze .tier-header {
    padding-top: 0.75rem !important;
    margin-top: 0.15rem !important;
  }

  .tier-section.tier-bronze .tier-badge.bronze {
    margin-top: 0.25rem !important;
  }
}
/* ========== BRONZE CREATORS SLIDER - REDUCE TOP SPACING ========== */

/* Reduce top padding/margin of the bronze slider container */
.creators-icons-slider-container {
  margin-top: -0.5rem !important;
  padding-top: 0 !important;
}

/* Adjust the bronze slider itself */
.creators-icons-slider {
  margin-top: -0.5rem !important;
  padding-top: 0 !important;
}

/* Reduce the top padding of the bronze tier section */
.tier-section.tier-bronze {
  padding-top: 0 !important;
  margin-top: -0.5rem !important;
}

/* Adjust the bronze tier header spacing */
.tier-section.tier-bronze .tier-header {
  padding-top: 0 !important;
  margin-top: -0.5rem !important;
  margin-bottom: 0.5rem !important;
}

/* Bring the slider content up */
.bronze-creator-icon {
  margin-top: -0.25rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .creators-icons-slider-container {
    margin-top: -0.35rem !important;
  }

  .creators-icons-slider {
    margin-top: -0.35rem !important;
  }

  .tier-section.tier-bronze {
    padding-top: 0 !important;
    margin-top: -0.35rem !important;
  }

  .tier-section.tier-bronze .tier-header {
    margin-top: -0.35rem !important;
  }
}

@media (max-width: 480px) {
  .creators-icons-slider-container {
    margin-top: -0.25rem !important;
  }

  .creators-icons-slider {
    margin-top: -0.25rem !important;
  }

  .tier-section.tier-bronze {
    margin-top: -0.25rem !important;
  }

  .tier-section.tier-bronze .tier-header {
    margin-top: -0.25rem !important;
  }
}
/* ========== RESPONSIVE SPACING FOR FEATURED CREATORS HEADER ========== */

/* Default - Desktop spacing (tight) */
.creators-search {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.creators-grid-section {
  padding-top: 0.5rem !important;
  margin-top: -0.5rem !important;
}

.creators-header-compact {
  margin-top: 0 !important;
  margin-bottom: 0.5rem !important;
  padding-top: 0 !important;
}

/* Tablet (768px - 1023px) - Minimal spacing */
@media (min-width: 768px) and (max-width: 1023px) {
  .creators-search {
    margin-bottom: 0.25rem !important;
  }

  .creators-grid-section {
    padding-top: 0.75rem !important;
    margin-top: -0.25rem !important;
  }

  .creators-header-compact {
    margin-bottom: 0.75rem !important;
  }
}

/* Mobile Landscape (640px - 767px) - Slight spacing */
@media (min-width: 640px) and (max-width: 767px) {
  .creators-search {
    margin-bottom: 0.5rem !important;
    padding-bottom: 0.25rem !important;
  }

  .creators-grid-section {
    padding-top: 1rem !important;
    margin-top: 0 !important;
  }

  .creators-header-compact {
    margin-bottom: 0.85rem !important;
  }
}

/* Mobile Portrait (480px - 639px) - Light spacing */
@media (min-width: 480px) and (max-width: 639px) {
  .creators-search {
    margin-bottom: 0.75rem !important;
    padding-bottom: 0.35rem !important;
  }

  .creators-grid-section {
    padding-top: 1.25rem !important;
    margin-top: 0 !important;
  }

  .creators-header-compact {
    margin-bottom: 1rem !important;
  }
}

/* Small Mobile (360px - 479px) - Moderate spacing */
@media (min-width: 360px) and (max-width: 479px) {
  .creators-search {
    margin-bottom: 1rem !important;
    padding-bottom: 0.5rem !important;
  }

  .creators-grid-section {
    padding-top: 1.5rem !important;
    margin-top: 0 !important;
  }

  .creators-header-compact {
    margin-bottom: 1.25rem !important;
  }
}

/* Extra Small Mobile (up to 359px) - Comfortable spacing */
@media (max-width: 359px) {
  .creators-search {
    margin-bottom: 1.25rem !important;
    padding-bottom: 0.75rem !important;
  }

  .creators-grid-section {
    padding-top: 1.75rem !important;
    margin-top: 0 !important;
  }

  .creators-header-compact {
    margin-bottom: 1.5rem !important;
  }
}

/* Optional: Add minimal separation on mobile */
@media (max-width: 767px) {
  .result-count {
    margin-top: 0.25rem !important;
  }

  .creators-header-compact {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.35rem !important;
  }
}

/* Keep the header centered on desktop */
.creators-header-compact .section-title-serif {
  text-align: center !important;
}

@media (max-width: 767px) {
  .creators-header-compact .section-title-serif {
    text-align: left !important;
  }
}
