/* assets/css/style.css */
.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.menu-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.menu-item-content {
    padding: 15px;
}

.menu-item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.menu-item-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.menu-item-price {
    font-weight: 600;
    color: #e74c3c;
    font-size: 18px;
}

.btn-add-cart {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #e74c3c;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-cart:hover {
    transform: scale(1.1);
    background: #c0392b;
}

/* Sepet butonu */
.cart-floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.cart-floating-button:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #2c3e50;
    color: white;
    font-size: 12px;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}