body {
    background: #121212;
    color: #fff;
}

.cat-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.2s;
}

.cat-card:hover {
    transform: scale(1.02);
}

.cat-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 0.5rem;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    padding: 0 10px;
    font-weight: bold;
}

.d-none {
    display: none !important;
}

.menu-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 0.5rem 0.5rem 0 0;
}

.splash-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
}

#splash>.position-absolute {
    z-index: 2;
}

.social-icons {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.btn-lang {
    background-color: #b89e14;
    color: white;
    border: none;
    padding: 10px 13px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 999px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.6);
    min-width: 180px;
    text-align: center;
    text-transform: uppercase;
}

.btn-lang:hover {
    background-color: #d2b82e;
    transform: scale(1.05);
}

/*.lang-btn { display: none; position: fixed; top: 15px; right: 15px; z-index: 999; }
        .lang-visible .lang-btn { display: block; }*/
.lang-btn {
    display: block;
    /* Başlangıçta gizli kalsın */
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 999;
}

/* ANİMASYONLAR 
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-buttons {
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.8s;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

.fade-out {
    animation: fadeOut 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeInUpItem {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.item-animate {
    animation: fadeInUpItem 0.5s ease forwards;
}
*/
/* STATUS MODAL STİLLERİ */
#status-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

#status-modal-content {
    position: relative;
    width: 100%;
    max-width: 750px;
    min-width: 340px;
    height: auto;
    max-height: 92vh;
    background-color: #fff;
    color: #333;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    padding: 0;
    overflow: hidden;
    display: flex;
}

#status-modal-close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    /* <-- DEĞİŞECEK SATIR */
    width: 30px;
    height: 30px;
    background-color: #e9ecef;
    color: #555;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

#status-modal-close-btn:hover {
    background-color: #dee2e6;
    color: #000;
}

#status-iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* YEMEK DETAY MODAL STİLLERİ */
.meal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.meal-modal .modal-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    left: 30px;
    /* <-- DEĞİŞTİRDİK */
    right: auto;
    /* <-- 'right' özelliğini sıfırlamak için eklendi */
    color: white;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.modal-image-container {
    width: 100%;
    height: 50%;
    flex-shrink: 0;
    background-color: #111;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info-container {
    height: 50%;
    background-color: #000;
    color: #fff;
    padding: 30px;
    overflow-y: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#modal-meal-name {
    font-size: 2rem;
    font-weight: bold;
}

#modal-meal-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-top: 15px;
    max-width: 700px;
}

#modal-meal-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    margin-top: 20px;
}