/* 🧁 Müşteri QR Menü Özel Tasarımı */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fcf8f5; /* Yumuşak krem/pastane rengi background */
    color: #4a3b32;
}

/* Kategori Butonları */
.category-btn {
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #8d6e63;
    border: 1px solid #d7ccc8;
}

.category-btn.active, .category-btn:hover {
    background-color: #8d6e63 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(141, 110, 99, 0.2);
}

/* Ürün Kartları */
.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-color: #ffffff;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Sepetim Butonu */
.floating-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}