/**
 * Bulut Medikal — Ortak tema
 * index, products, product ve admin sayfalarında kullanılır.
 */
:root {
  /* Renkler */
  --bg: #f0f4ff;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: rgba(15, 23, 42, .08);
  --accent: #1d4ed8;
  --accent2: #0ea5e9;
  --accent-strong: #6366f1;
  --green: #059669;
  --orange: #ea580c;
  --violet: #7c3aed;
  --pink: #db2777;
  --sale: #dc2626;
  /* Ölçü */
  --radius: 18px;
  --radius2: 22px;
  --shadow: 0 14px 34px rgba(2, 6, 23, .10);
  --shadow-hover: 0 20px 40px rgba(2, 6, 23, .15);
  --container: 1200px;
  /* Tipografi */
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* product.php (wd-*) uyumluluk — aynı değerler */
  --wd-bg: var(--bg);
  --wd-white: var(--card);
  --wd-text: var(--text);
  --wd-text-light: var(--muted);
  --wd-border: var(--line);
  --wd-accent: var(--accent-strong);
  --wd-accent-hover: #4f46e5;
  --wd-sale: var(--sale);
  --wd-radius: var(--radius);
  --wd-shadow: var(--shadow);
  --icon-kargo: #0d9488;
  --icon-kargo-bg: #ccfbf1;
  --icon-iade: #2563eb;
  --icon-iade-bg: #dbeafe;
  --icon-guven: #d97706;
  --icon-guven-bg: #fef3c7;
}

/* Ortak base (isteğe bağlı kullanılır) */
body.theme-loaded {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.5;
}
.theme-container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Sepet ikonu: küçük, siyah, buton değil */
.cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 4px;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  font-size: 18px;
  line-height: 1;
  color: #000 !important;
  text-decoration: none !important;
  cursor: pointer;
}
.cart-icon:hover {
  color: #000 !important;
  opacity: 0.75;
}
.cart-icon:active {
  opacity: 0.6;
}
