/* =========================================================
   SİYAH VE ALTIN TEMA - Temel Ayarlar ve Renk Değişkenleri
   ========================================================= */
:root {
  --primary-color: #D4AF37;
  --text-color: #E0E0E0;
  --bg-color: #121212;
  --card-bg: #1A1A1A;
  --choco-dark: #D4AF37;
  --border-color: #333333;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Manrope', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Baloo 2', cursive; color: var(--choco-dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===================== HEADER ===================== */
.site-header {
  background-color: #000000;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; text-decoration: none; font-size: 1.5rem; font-weight: 700; color: var(--primary-color); }
.logo-icon { margin-right: 8px; font-size: 2rem; }

.cart-btn {
  background: var(--primary-color);
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 800;
  transition: var(--transition);
}
.cart-btn:hover { background: #b5952f; box-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
.cart-icon { width: 20px; height: 20px; margin-right: 8px; }
.cart-badge {
  background: #000; color: var(--primary-color); font-size: 0.8rem;
  padding: 2px 6px; border-radius: 50%; margin-left: 8px; font-weight: bold;
}

/* ===================== HERO (BANNER) YENİ LOGOLU ALAN ===================== */
.hero { 
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(18, 18, 18, 1)), url('images/mutlu-citir-logo.jpeg') center/cover no-repeat; 
  padding: 120px 0; 
  text-align: center; 
  position: relative; 
  overflow: hidden; 
  border-bottom: 1px solid var(--border-color); 
}
.hero-inner { position: relative; z-index: 2; }
.hero h1 { font-size: 4rem; line-height: 1.2; margin-bottom: 15px; letter-spacing: 2px; }
.hero .highlight { color: var(--primary-color); text-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }
.hero p { color: #fff; font-size: 1.2rem; max-width: 600px; margin: 0 auto 20px auto; }
.hero-badge { display: inline-block; background: var(--primary-color); color: #000; padding: 5px 15px; border-radius: 20px; font-weight: bold; margin-bottom: 15px; }
.btn-primary {
  display: inline-block; background: var(--primary-color); color: #000;
  padding: 12px 25px; border-radius: var(--border-radius); text-decoration: none;
  font-weight: 700; margin-top: 20px; transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary:hover { background: #b5952f; transform: translateY(-2px); }

/* ===================== ÜRÜN GRID ===================== */
.products-section { padding: 50px 0; }
.section-heading { text-align: center; margin-bottom: 40px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 25px; }
/* Mevcut product-card sınıfını güncelleyin */
.product-card {
  background: var(--card-bg); 
  border-radius: var(--border-radius);
  overflow: hidden; 
  border: 1px solid var(--border-color);
  transition: var(--transition); 
  display: flex; 
  flex-direction: column;
  position: relative; /* Yeni ürün etiketi için bu satır EKLENDİ */
}

/* Ürün Grid bölümünün hemen altına bu yeni sınıfı ekleyin */
.new-badge {
  position: absolute;
  top: 15px;
  right: -10px;
  background: var(--primary-color);
  color: #000;
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: 800;
  font-family: 'Baloo 2', cursive;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-card:hover { transform: translateY(-5px); border-color: var(--primary-color); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15); }
.product-image { width: 100%; height: 200px; object-fit: cover; opacity: 0.9; }
.product-card:hover .product-image { opacity: 1; }
.product-info { padding: 15px; display: flex; flex-direction: column; flex-grow: 1; }
.product-title { font-size: 1.2rem; margin-bottom: 5px; color: #fff; }
.product-desc { font-size: 0.9rem; color: #aaa; margin-bottom: 15px; flex-grow: 1; }
.product-price { font-size: 1.3rem; font-weight: 700; color: var(--primary-color); margin-bottom: 15px; }
.add-to-cart {
  width: 100%; background: transparent; color: var(--primary-color); border: 1px solid var(--primary-color);
  padding: 10px; border-radius: var(--border-radius); cursor: pointer; font-weight: 600; transition: var(--transition);
}
.add-to-cart:hover { background: var(--primary-color); color: #000; }

/* ===================== SEPET ÇEKMECESİ ===================== */
.overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8); opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999;
}
.overlay.active { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: -400px; width: 400px; max-width: 100%; height: 100%;
  background: var(--bg-color); border-left: 1px solid var(--border-color);
  display: flex; flex-direction: column; transition: var(--transition); z-index: 1000;
}
.cart-drawer.active { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid var(--border-color); }
.close-btn { background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--text-color); }
.cart-content { padding: 20px; overflow-y: auto; flex-grow: 1; }
.cart-item { display: flex; align-items: center; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid var(--border-color); }
.cart-item-info { flex-grow: 1; }
.cart-item-title { font-weight: 600; font-size: 0.9rem; color: #fff;}
.cart-item-price { color: var(--primary-color); font-weight: bold; }
.cart-item-controls { display: flex; align-items: center; gap: 10px; }
.qty-btn { background: var(--card-bg); color: #fff; border: 1px solid var(--border-color); width: 25px; height: 25px; border-radius: 50%; cursor: pointer; }
.remove-btn { color: #ff4d4d; background: none; border: none; cursor: pointer; font-size: 0.8rem; margin-top: 5px; text-decoration: underline; }
.cart-empty { text-align: center; color: #888; margin-top: 50px; }
.checkout-form { margin-top: 20px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 5px; font-size: 0.9rem; color: var(--primary-color); }
.form-group input[type="text"], .form-group textarea {
  width: 100%; padding: 10px; background-color: var(--card-bg); color: #fff;
  border: 1px solid var(--border-color); border-radius: 4px; font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); }
.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-label { font-size: 0.9rem; display: flex; align-items: center; gap: 8px; cursor: pointer; color: #ccc;}
.cart-footer { padding: 20px; border-top: 1px solid var(--border-color); background: #000; }
.cart-total { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: bold; margin-bottom: 15px; color: #fff; }
.cart-total span:last-child { color: var(--primary-color); }
.btn-checkout {
  width: 100%; background: #25D366; color: white; border: none; padding: 15px;
  border-radius: var(--border-radius); font-size: 1.1rem; font-weight: bold;
  cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 10px; transition: var(--transition);
}
.btn-checkout:hover { background: #1ebe57; }
.btn-checkout svg { width: 24px; height: 24px; }

/* ===================== YORUMLAR BÖLÜMÜ ===================== */
.reviews-section, .support-section { padding: 50px 0; background: #0a0a0a; border-top: 1px solid var(--border-color); }
.support-section { background: var(--bg-color); }
.review-form-container { background: var(--card-bg); padding: 20px; border-radius: var(--border-radius); margin-bottom: 30px; border: 1px solid var(--border-color); }
.star-rating { font-size: 2rem; color: #444; cursor: pointer; user-select: none; }
.star-rating span.active { color: var(--primary-color); }
.reviews-list { display: flex; flex-direction: column; gap: 15px; }
.review-card { padding: 15px; border: 1px solid var(--border-color); border-radius: var(--border-radius); background: var(--card-bg); }
.review-header { display: flex; justify-content: space-between; margin-bottom: 10px; font-weight: bold; color: #fff; }
.review-stars { color: var(--primary-color); }

/* ===================== SSS VE İLETİŞİM ===================== */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 768px) { .support-grid { grid-template-columns: 1fr; } }
.faq-item { border-bottom: 1px solid var(--border-color); margin-bottom: 10px; }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 15px 0; font-size: 1.1rem; font-weight: bold; cursor: pointer; display: flex; justify-content: space-between; color: var(--primary-color); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: #aaa; }
.faq-answer p { padding-bottom: 15px; }
.contact-container { background: var(--card-bg); padding: 25px; border-radius: var(--border-radius); border: 1px solid var(--border-color); }

/* ===================== BİLDİRİM (TOAST) ===================== */
.toast {
  position: fixed; bottom: -50px; left: 50%; transform: translateX(-50%);
  background: var(--primary-color); color: #000; padding: 10px 20px; border-radius: 30px;
  transition: var(--transition); opacity: 0; z-index: 1001; font-size: 0.9rem; font-weight: bold;
}
.toast.show { bottom: 20px; opacity: 1; }

/* ===================== FOOTER ===================== */
.site-footer { text-align: center; padding: 20px; background: #000; color: #666; border-top: 1px solid var(--border-color); }
.footer-note { font-size: 0.8rem; margin-top: 5px; color: var(--primary-color); }