/*
Theme Name: Burger QR Menu
Theme URI: #
Author: Polat
Description: QR menü sitesi için özel tasarım.
Version: 1.0
*/

/* Genel Sayfa Düzeni */
.menu-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Ürün Liste Yapısı */
.product-list {
    display: flex;
    flex-direction: column;
}

.product-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    cursor: pointer; /* Tıklanabilir olduğunu belirtir */
}

/* Görsel Stili */
.product-image {
    flex: 0 0 100px;
    margin-right: 20px;
}

.product-image img {
    width: 100px; 
    height: 100px; 
    object-fit: cover; 
    border-radius: 8px;
    display: block;
}

/* Bilgi Alanı */
.product-info {
    flex-grow: 1;
    min-width: 0; /* İçeriğin taşmasını engeller */
}

.product-info h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Açıklamayı 2 satırla sınırlar */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Fiyat Alanı */
.product-price {
    font-weight: bold;
    font-size: 16px;
    color: #000;
    margin-left: 15px;
    white-space: nowrap; /* Fiyatın aşağı kaymasını engeller */
}

/* Modal Stilleri */
.modal { 
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.6); 
}

.modal-content { 
    background-color: #fff; 
    margin: 5% auto; 
    padding: 0; 
    width: 90%; 
    max-width: 500px; 
    border-radius: 15px; 
    position: relative; 
    overflow: hidden;
}

.close { 
    position: absolute; 
    right: 15px; 
    top: 10px; 
    font-size: 30px; 
    cursor: pointer; 
    color: #fff; 
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 30px;
    text-align: center;
    z-index: 1001;
}

/* Mobil Uyumluluk (Responsive) */
@media (max-width: 600px) {
    .menu-container {
        padding: 10px;
    }

    .product-item {
        padding: 10px 0;
    }
    
    .product-image {
        flex: 0 0 70px;
        margin-right: 10px;
    }
    
    .product-image img {
        width: 70px;
        height: 70px;
    }

    .product-info h3 {
        font-size: 15px;
    }

    .product-info p {
        font-size: 11px;
    }

    .product-price {
        font-size: 13px;
        margin-left: 10px;
    }

    .modal-content {
        margin: 15% auto;
        width: 95%;
    }
}