.services-tools-grid{
    display: none !important;
}


/* ========================================
   Modern Scrollbar Stilleri
   ======================================== */
/* Tüm sayfa için ince, modern scrollbar */

/* Firefox için */
* {
  scrollbar-width: thin;
  scrollbar-color: #8b5cf6 #f1f1f1;
}

/* Chrome, Edge, Safari için */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #8b5cf6 0%, #6d28d9 100%);
  border-radius: 10px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #7c3aed 0%, #5b21b6 100%);
}

/* Body ve HTML için özel ayar */
html, body {
  scrollbar-width: thin;
  scrollbar-color: #8b5cf6 #f1f1f1;
}

/* ========================================
   Paket Seçim Kartları - Fiyat Bilgileri
   ======================================== */
.paket-option {
  position: relative;
  /* Orijinal stilleri koruyoruz, sadece hover ve seçili durum için ekleme yapıyoruz */
}

.paket-option:hover {
  border-color: #8b5cf6;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
  transform: translateY(-2px);
}

.paket-option.selected {
  border-color: #7844e4;
  background: linear-gradient(135deg, #f3f0ff 0%, #faf8ff 100%);
  box-shadow: 0 4px 16px rgba(120, 68, 228, 0.25);
}

/* Miktar ve tip stilleri orijinal halinde */

/* ✅ YENİ: Fiyat Bilgileri - Sağ Üst Köşe */

/* Birim Fiyat - Küçük Badge */
.paket-option-unit-price {
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 9px;
  font-weight: 600;
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.08);
  padding: 2px 5px;
  border-radius: 3px;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* Toplam Fiyat - Küçük Yeşil Yazı */
.paket-option-total-price {
  position: absolute;
  top: 24px;
  right: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* Seçili Durum - Fiyatlar */
.paket-option.selected .paket-option-unit-price {
  color: #7844e4;
  font-weight: 600;
}

.paket-option.selected .paket-option-total-price {
  color: #15803d;
}

/* Hover Durumu - Fiyatlar */
.paket-option:hover .paket-option-unit-price {
  color: #7c3aed;
}

.paket-option:hover .paket-option-total-price {
  color: #15803d;
}

/* Responsive */
@media (max-width: 768px) {
  .paket-option-unit-price {
    font-size: 8px;
    padding: 2px 4px;
    top: 5px;
    right: 5px;
  }
  
  .paket-option-total-price {
    font-size: 10px;
    top: 21px;
    right: 5px;
  }
}
