.cc-wrap { margin: 20px 0; }
.cc-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:12px; }
.cc-title { margin:0; font-weight:700; }

.cc-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: transform .15s ease, box-shadow .15s ease;
}
.cc-card:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.08); }

.cc-image img { width:100%; height:auto; display:block; }

.cc-body { padding: 12px; }
.cc-name {
  display:block;
  min-height: 38px;
  color:#111;
  font-weight:600;
  text-decoration:none;
}
.cc-name:hover { color:#c40000; } /* kırmızı */

.cc-price { margin: 8px 0 10px; }
.cc-price-old { text-decoration: line-through; opacity:.55; margin-right:8px; }
.cc-price-new { color:#c40000; font-weight:800; } /* kırmızı */

.cc-actions { display:flex; gap:8px; }
.cc-btn { flex:1; border-radius: 8px; }

.btn-outline-danger.cc-buy{
  background: #fff;
  border: 1px solid #c40000;
  color: #c40000;
}
.btn-outline-danger.cc-buy:hover{
  background:#c40000;
  color:#fff;
}
