/* Premium Light Number Card */
.premium-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  padding: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none !important;
}

.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}

.premium-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.premium-card-operator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.premium-card-operator img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.premium-card-operator span {
  font-weight: 600;
  font-size: 0.95rem;
  color: #374151;
}

.premium-card-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}

.premium-card-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}
.badge-gold {
  border: 1px solid #d97706;
  color: #d97706;
  background: rgba(217, 119, 6, 0.05);
}
.badge-red {
  border: 1px solid #dc2626;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.05);
}
.badge-green {
  border: 1px solid #16a34a;
  color: #16a34a;
  background: rgba(22, 163, 74, 0.05);
}

.premium-card-heart {
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s;
  color: #9ca3af;
}

.premium-card-heart:hover {
  color: #dc2626;
}

.premium-card-number {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 4px 0;
  color: #1f2937;
  letter-spacing: 0.5px;
}
.premium-card-number .gold {
  color: #d97706;
}

.premium-card-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #d97706;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.premium-card-price small {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

.premium-card-info {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #6b7280;
  font-size: 0.85rem;
  margin-top: 4px;
  margin-bottom: 8px;
}
.premium-card-info div {
  display: flex;
  align-items: center;
  gap: 6px;
}
.premium-card-info i {
  font-size: 0.95rem;
}

.premium-card-actions {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 8px;
}

.premium-btn {
  background: transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  height: 40px;
  text-decoration: none;
  cursor: pointer;
}

.btn-wp {
  border: 1px solid #22c55e;
  color: #22c55e;
  width: 48px;
}
.btn-wp:hover {
  background: #22c55e;
  color: white;
}

.btn-call {
  border: 1px solid #d97706;
  color: #d97706;
  width: 48px;
}
.btn-call:hover {
  background: #d97706;
  color: white;
}

.btn-details {
  border: 1px solid #d97706;
  color: #d97706;
  font-weight: 600;
  font-size: 0.9rem;
  width: 100%;
}
.btn-details:hover {
  background: #d97706;
  color: white;
}
