:root {
    --bg-color: #EBE6D9;      
    --text-color: #1A1A1A;
    --accent-green: #1C2C26; 
    --border-color: #A39B8D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #d1ccc0;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

a {
    text-decoration: none;
}
.menu-card {
    width: 375px;
    height: 750px;
    background-color: var(--bg-color);
    border-radius: 40px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Header */
header {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.close-btn {
    position: absolute;
    right: 0;
    top: 5px;
    font-size: 20px;
    color: var(--text-color);
    cursor: pointer;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    letter-spacing: 6px;
    font-weight: 500;
}

.sub-logo {
    font-size: 10px;
    letter-spacing: 3px;
    margin-top: 5px;
    color: #555;
}

.menu-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 26px;
    margin-bottom: 35px;
    font-weight: 400;
}

/* List Items */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-item {
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background-color: rgba(0,0,0,0.02);
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: #1C2C26;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Görseldeki o özel organik şekil efekti için */
    clip-path: polygon(10% 0, 90% 0, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0 90%, 0 10%);
}

.icon-box img {
    width: 24px;
    height: 24px;
}

.menu-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}

/* Footer */
footer {
    margin-top: auto;
    text-align: center;
    padding-bottom: 20px;
}

.quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto 15px;
}

.leaf-icon {
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
    opacity: 0.6;
}

.mobile-container {
    width: 375px;
    background-color: var(--bg-color);
    min-height: 812px;
    border-radius: 40px;
    padding: 40px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Header */
.menu-header {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.back-btn {
    position: absolute;
    left: 0;
    top: 5px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 20px;
}

.menu-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    letter-spacing: 2px;
    font-weight: 500;
}

.header-line {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin-top: 20px;
}

/* Product Card */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.product-img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100px; /* Görselle hizalamak için */
    justify-content: center;
}

.product-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.product-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 10px;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    align-self: flex-end; /* Fiyatı sağ alta iter */
    margin-top: auto;
}

/* Footer */
footer {
    margin-top: 50px;
    text-align: center;
}

footer p {
    font-size: 11px;
    color: #888;
}

/* Modal Arka Planı */
.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9); /* Arka planı karartır */
    align-items: center;
    justify-content: center;
}

/* Modal İçindeki Görsel */
.modal-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    animation: zoomIn 0.3s ease; /* Açılış efekti */
}

/* Kapatma Butonu */
.close-modal {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Açılış Animasyonu */
@keyframes zoomIn {
    from {transform: scale(0.7); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

/* Tıklanabilir olduğunu belli etmek için */
.product-img img {
    cursor: pointer;
    transition: 0.3s;
}

.product-img img:hover {
    opacity: 0.8;
}