/* Genel Stil Ayarları */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
    color: #333;
}

/* Header Stilleri */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}

header .logo h1 {
    margin: 0;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    font-weight: bold;
}

/* Menü Bölgesi */
.menu {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
}

.menu h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.menu-item {
    display: inline-block;
    width: 30%;
    padding: 20px;
    margin: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.menu-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.menu-item h3 {
    font-size: 1.8em;
    margin-top: 10px;
}

.menu-item p {
    font-size: 1.1em;
    margin-top: 10px;
}

.menu-item .price {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 15px;
    color: #e77f67;
}

/* Footer Stilleri */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
/* Menü Kategorileri */
.categories {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.category-btn {
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 1.2em;
    background-color: #e77f67;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.category-btn:hover {
    background-color: #d06a54;
}

.menu-category {
    display: none;
    margin-top: 30px;
    text-align: center;
}

.menu-item {
    display: inline-block;
    width: 250px;
    margin: 20px;
    text-align: center;
}

.menu-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.price {
    font-size: 1.2em;
    color: #e77f67;
}
.cart-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.cart {
    background-color: #f9f9f9;
    border: 1px solid #eeeded;
    padding: 15px;
    width: 250px;
    position: absolute;
    top: 50px;
    left: 0;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.967);
}

.cart ul {
    list-style-type: none;
    padding: 0;
}

.cart li {
    margin-bottom: 10px;
}

#cart-btn {
    padding: 10px 20px;
    background-color: #333;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

#cart-btn:hover {
    background-color: #555;
}
#cart {
    position: fixed;
    top: 50px;
    right: 10px;
    background-color: #030202;
    padding: 20px;
    width: 300px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

#cart-items {
    list-style-type: none;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
}

#cart-items li {
    margin-bottom: 10px;
}

button {
    padding: 10px 20px;
    background-color: #333;
    color: #f6f6f6;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #555;
}
