/* ============================================ */
/* PRODUCT-MODAL.CSS - ÜRÜN DETAY MODAL ÖZEL STİLLERİ
/* ============================================ */

/* ============================================ */
/* BADGE'LER - HEPSİ AYNI FORMATA
/* ============================================ */

#productModal .modal-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  padding: 0.35rem 0.75rem !important;
  border-radius: 20px !important;
  line-height: 1.2 !important;
  white-space: nowrap;
}

#productModal .modal-badge i {
  font-size: 0.7rem;
}

#productModal .modal-badge-company {
  background: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color) !important;
}

#productModal .modal-badge-premium {
  background: linear-gradient(135deg, #f59e0b, #f97316) !important;
  color: white !important;
}

#productModal .modal-badge-discount {
  background: #dc3545 !important;
  color: white !important;
}

#productModal .modal-badge-views {
  background: #6b7280 !important;
  color: white !important;
}

/* ============================================ */
/* ÜRÜN ADI OVERLAY - CAM EFEKTİ + KESME
/* ============================================ */

#productModal .modal-product-overlay {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

#productModal .modal-product-overlay-text {
  color: white;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* ============================================ */
/* RESİM WRAPPER
/* ============================================ */

#productModal .product-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
}

/* ============================================ */
/* BADGE CONTAINER
/* ============================================ */

#productModal #modalBadgeContainer {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap;
  gap: 0.5rem !important;
}

/* ============================================ */
/* MODAL RESİM
/* ============================================ */

#productModal .product-modal-image {
  max-height: 350px;
  object-fit: cover;
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
}

#productModal .product-modal-image:hover {
  transform: scale(1.02);
}

/* ============================================ */
/* RESPONSIVE
/* ============================================ */

@media (max-width: 576px) {
  #productModal .modal-product-overlay {
    padding: 0.5rem 1rem;
  }

  #productModal .modal-product-overlay-text {
    font-size: 1rem;
  }

  #productModal .modal-badge {
    font-size: 0.6rem !important;
    padding: 0.25rem 0.5rem !important;
  }

  #productModal .modal-badge i {
    font-size: 0.6rem;
  }
}