:root {
  --premium-theme-color: #f41010;
  --premium-theme-hover: #f41010;
}

.premium-owners-section * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.premium-owners-section {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #ffffff;
  padding: 60px 20px;
}

.premium-owners-container {
  max-width: 1200px;
  margin: 0 auto;
}

.premium-owners-header {
  text-align: center;
  margin-bottom: 40px;
}

.premium-owners-header h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.premium-owners-header p {
  color: #7f8c8d;
  font-size: 1rem;
  font-weight: 400;
}

.premium-carousel-wrapper {
  position: relative;
  padding: 10px 60px;
}

.premium-carousel {
  overflow: hidden;
  border-radius: 12px;
}

.premium-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
  padding: 10px 0px;
  

}

.premium-owner-card {
  min-width: calc(33.333% - 14px);
  background: white;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
      box-shadow: 0px 0px 18px #e5e5e5;
}

.premium-owner-card:hover {
  border-color: var(--premium-theme-color);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.premium-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.premium-owner-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #f5f5f5;
  object-fit: cover;
}

.premium-owner-info h3 {
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 6px;
  font-weight: 600;
}

.premium-plan-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.premium-plan-gold {
  background: #f5f5f5;
  color: #c9a135;
  border: 1px solid #e8d7a8;
}

.premium-plan-platinum {
  background: #f5f5f5;
  color: #6b7280;
  border: 1px solid #d1d5db;
}

.premium-plan-silver {
  background: #f5f5f5;
  color: #9ca3af;
  border: 1px solid #d1d5db;
}

.premium-card-details {
  margin: 15px 0;
}

.premium-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  color: #6b7280;
  font-size: 0.875rem;
}

.premium-detail-item svg {
  width: 16px;
  height: 16px;
  color: #9ca3af;
  flex-shrink: 0;
}

.premium-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #f59e0b;
  font-weight: 500;
}

.premium-rating svg {
  color: #f59e0b;
  fill: #f59e0b;
}

.premium-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f0fdf4;
  color: #16a34a;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #bbf7d0;
}

.premium-contact-info {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.premium-view-profile-btn {
  width: 100%;
  padding: 10px;
  background: var(--premium-theme-color);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 15px;
  text-decoration: none;
  display: block;
  text-align: center;
}

.premium-view-profile-btn:hover {
  background: var(--premium-theme-hover);
}

.premium-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.premium-carousel-btn:hover {
  background: var(--premium-theme-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.premium-carousel-btn:hover svg {
  stroke: white;
}

.premium-carousel-btn svg {
  width: 24px;
  height: 24px;
  stroke: #333;
}

.premium-carousel-btn.premium-prev {
  left: 0;
}

.premium-carousel-btn.premium-next {
  right: 0;
}

.premium-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.premium-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.premium-indicator.premium-active {
  background: var(--premium-theme-color);
  width: 30px;
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .premium-owner-card {
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .premium-carousel-wrapper {
    padding: 0 50px;
  }

  .premium-owner-card {
    min-width: 100%;
  }

  .premium-owners-header h2 {
    font-size: 2rem;
  }

  .premium-carousel-btn {
    width: 40px;
    height: 40px;
  }
}

/* badges  */
/* Premium Badge - Gold with Crown */
.base_badge {
  padding: 1px 9px 1px 9px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.badge-premium {
  background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
  border: 2px solid #d97706;
  color: #78350f;
  box-shadow: 0 0px 6px rgba(245, 158, 11, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(217, 119, 6, 0.3);
}
.badge-premium::before {
  content: "♔";
  font-size: 1rem;
  color: #78350f;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.5));
}

.badge-premium::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 55%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 5px 5px 0 0;
  pointer-events: none;
}

/* Platinum Badge - Sleek Metallic */
.badge-platinum {

  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #e5e7eb 40%,
    #d1d5db 60%,
    #e5e7eb 80%,
    #ffffff 100%
  );
  border: 2px solid #6b7280;
  color: #1f2937;
  box-shadow: 0 0px 6px rgba(107, 114, 128, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(107, 114, 128, 0.2);
}

.badge-platinum::before {
  content: "◆";
  font-size: 0.9rem;
  color: #374151;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.8));
}

.badge-platinum::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  border-radius: 6px;
  animation: shimmer 3s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Classic Badge - Simple Elegant */
.badge-classic {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 2px solid #9ca3af;
  color: #4b5563;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.badge-classic::before {
  content: "★";
  font-size: 0.9rem;
  color: #6b7280;
}
