﻿body {
    background-color: #fdfdfd; /* Tam beyaz değil, göz yormayan çok açık gri */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Kart Tasarımı */
.product-card {
    background: #fff;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Hafif gölge */
    text-align: center;
    margin-bottom: 30px;
}

    .product-card:hover {
        transform: translateY(-5px); /* Üzerine gelince yukarı kalksın */
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.product-img {
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.btn-premium {
    background-color: #000; /* Siyah buton premium durur */
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    border: 2px solid #000;
    transition: 0.3s;
}

    .btn-premium:hover {
        background-color: #fff;
        color: #000;
        text-decoration: none;
    }

/* Navbar */
.navbar-custom {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px 0;
}
