body {
  background:#0c0c0c;
  color:#f5f5f5;
  font-family: 'Helvetica Neue', sans-serif;
  margin: 0; padding: 20px;
}

#site-logo {
  display: block;
  margin: 20px auto;
  max-width: 260px;
}

h1 {
  text-align: center;
  color: #c61a1a;
  letter-spacing: 3px;
  margin-bottom: 40px;
}

/* Kategori başlıkları */
.category-title {
  color: #e74c3c;
  font-size: 32px;
  margin: 40px 0 20px;
  border-bottom: 2px solid #e74c3c;
  padding-bottom: 8px;
  text-transform: uppercase;
}

/* Ürün kartlarını grid ile sırala */
.category-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Kart stili */
.card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.7);
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card .info {
  padding: 15px;
  text-align: center;
  width: 100%;
}

.card .info h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #c61a1a;
}

.card .info .price {
  font-weight: 700;
  color: #e74c3c;
}

/* Fiyat gizleme */
.hide-price {
  display: none !important;
}

/* Responsive mobil */
@media(max-width:640px) {
  .category-container {
    grid-template-columns: 1fr;
  }
}
footer {
  background: #1a1a1a;
  color: #ccc;
  text-align: center;
  padding: 24px 12px;
  font-size: 14px;
  margin-top: 40px;
}

footer a {
  color: #e1306c;
  text-decoration: none;
}

footer a:hover {
  color: #a91919;
}
#bg-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
#disclaimer {
  position: fixed;
  top: 8px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 999;
}

