/* Genel stil ayarları */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

nav a:hover {
    text-decoration: underline;
}

/* Ana içerik bölümü */
main {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

h1, h2 {
    text-align: center;
    color: #333;
}

.products, .cart {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Ürün kutusu stil */
.product, .cart-item {
    background-color: white;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    width: 220px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product img, .cart-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.product h3, .cart-item h3 {
    font-size: 18px;
    margin: 10px 0;
}

.product p, .cart-item p {
    font-size: 16px;
    color: #555;
}

button, a {
    background-color: #ff8c00;
    color: white;
    padding: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

button:hover, a:hover {
    background-color: #ff8c00;
}

/* Sepet sayfası düzeni */
.cart-item {
    width: 300px;
    padding: 20px;
}

.cart-item a {
    display: inline-block;
    margin: 5px 10px;
}

.cart-item .increase, .cart-item .remove {
    background-color: #FF5733;
}

.cart-item .increase:hover, .cart-item .remove:hover {
    background-color: #ff4500;
}

/* Sepet boş olduğunda mesaj */
.cart {
    text-align: center;
    font-size: 18px;
    color: #333;
    padding: 20px;
}

.cart .empty-message {
    color: #888;
    font-size: 20px;
}

/* Sepet toplamı ve ödeme butonu */
.cart-total {
    text-align: right;
    margin-top: 30px;
    font-size: 18px;
    font-weight: bold;
}

.cart-total a {
    background-color: #2196F3;
    padding: 15px;
    color: white;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
}

.cart-total a:hover {
    background-color: #1e88e5;
}

.product img, .card-img-top {
    width: 100%;
    height: 180px;      /* Yüksekliği sabit tutar, ihtiyaca göre değiştirilebilir */
    object-fit: cover;  /* Görseli kırpıp kartı doldurur, taşmayı engeller */
    border-radius: 8px 8px 0 0; /* Üst kenarları yuvarlatır, isteğe bağlı */
    background: #f8f8f8; /* Görsel yoksa arka plan */
}


/* Sepet boş mesajı */
#cart-items .text-center {
    font-size: 1.2rem;
    color: #555;
    margin-top: 20px;
}

#cart-items .text-center h4 {
    font-weight: bold;
    color: #343a40;
}

#cart-items .text-center a {
    text-decoration: underline;
    color: #007bff;
}

#cart-items .text-center a:hover {
    color: #0056b3;
}

