* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    color: #2980b9;
}

header p {
    font-size: 1.2em;
    color: #7f8c8d;
}

.menu {
    margin-bottom: 20px;
}

.menu-category {
    margin-bottom: 15px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.menu-category:hover {
    background-color: #e8f6f3;
}

.menu-category h2 {
    background-color: #27ae60;
    color: white;
    padding: 15px;
    margin: 0;
}

.products {
    display: none; /* Başlangıçta ürünleri gizle */
    padding: 10px;
    background: #ecf0f1;
}

.product {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.product img {
    width: 100px; /* Ürün resminin boyutu */
    height: 100px;
    margin-right: 15px;
    border-radius: 8px;
}

.product-info {
    flex: 1;
}

.product h3 {
    font-size: 1.5em;
    color: #27ae60;
}

.product p {
    margin: 5px 0;
}

.product span {
    font-weight: bold;
}

.qr-code {
    text-align: center;
}

.qr-code h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #2980b9;
}

.qr-code img {
    margin: 10px 0;
}

/* Mevcut stiller */
.popular-products {
    margin-bottom: 20px;
}

.popular-products h2 {
    font-size: 2em;
    color: #2980b9;
    margin-bottom: 10px;
}

.scrollable-products {
    display: flex;
    overflow: hidden; /* Kaydırma çubuğunu kaldır */
    padding: 10px;
    background-color: #ecf0f1;
    border-radius: 8px;
    transition: transform 0.5s ease; /* Geçiş efekti */
}

.scrollable-products .product {
    display: flex;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0; /* Ürünlerin sıkışmasını önler */
}

.scrollable-products img {
    width: 100px; /* Ürün resminin boyutu */
    height: 100px;
    border-radius: 8px;
}

.buttons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

button {
    background-color: #27ae60; /* Yeşil buton rengi */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2ecc71; /* Buton hover rengi */
}
