/* ==========================================================================
   1. TEMEL AYARLAR VE RESPONSIVE DESIGNS
   ========================================================================== */
body {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   2. TAKI DÜKKANI RENK UYUMLARI VE LİNKLER
   ========================================================================== */
a {
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e62e2e; /* Logodaki kalp kırmızısı */
}

/* ==========================================================================
   3. BUTONLAR VE SEPETE EKLE EFEKTLERİ
   ========================================================================== */
.btn-primary {
    background-color: #222222;
    color: #ffffff;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e62e2e;
}

.add-to-cart-btn {
    background-color: #e62e2e;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   4. ÜRÜN KARTLARI VE GÖLGE EFEKTLERİ
   ========================================================================== */
.product-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #222222;
}

.discount-badge {
    background-color: #e62e2e;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 3px;
}

/* ==========================================================================
   5. MOBİL OPTİMİZASYONU
   ========================================================================== */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    .product-card {
        padding: 10px;
    }
}
