* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --trendyol-orange: #FF6000;
    --dark-orange: #E55400;
    --light-orange: #FFF5EE;
    --text-dark: #333;
    --text-light: #666;
    
    /* Tema değişkenleri - themes.css tarafından override edilecek */
    --primary-color: #FF6000;
    --primary-dark: #E55400;
    --primary-light: #FFF5EE;
    --accent-color: #FF8C42;
    --bg-color: #FFF;
    --card-bg: #FFFFFF;
    --shadow-color: rgba(255, 96, 0, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-color) 100%);
    min-height: 100vh;
}

.language-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.language-container {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(255, 96, 0, 0.2);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.logo {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.language-container h2 {
    color: var(--trendyol-orange);
    margin-bottom: 30px;
    font-size: 24px;
}

.language-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lang-btn {
    background: var(--trendyol-orange);
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 18px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.lang-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 96, 0, 0.3);
}

.menu-container {
    max-width: 100%;
    min-height: 100vh;
    background: white;
}

header {
    background: var(--trendyol-orange);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.change-lang-btn {
    background: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.change-lang-btn:hover {
    transform: scale(1.1);
}

.menu-content {
    padding: 20px;
}

.category {
    margin-bottom: 40px;
}

.category-title {
    background: var(--trendyol-orange);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: white;
    border-radius: 10px;
    padding: 8px;
    flex-shrink: 0;
}

.menu-item {
    background: white;
    border: 2px solid var(--light-orange);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-item:hover {
    border-color: var(--trendyol-orange);
    box-shadow: 0 5px 20px rgba(255, 96, 0, 0.15);
    transform: translateY(-2px);
}

.menu-item:active {
    transform: translateY(0);
}

.item-header {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    position: relative;
}

.item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-name {
    color: var(--trendyol-orange);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.item-number {
    background: var(--trendyol-orange);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    min-width: 35px;
    text-align: center;
}

.item-price {
    color: var(--dark-orange);
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-light);
    padding: 8px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.item-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
}

.item-ingredients {
    background: var(--light-orange);
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-dark);
}

.ingredients-title {
    font-weight: bold;
    color: var(--trendyol-orange);
    margin-bottom: 5px;
}

footer {
    background: #000000;
    color: white;
    padding: 30px 20px;
    margin-top: 40px;
    text-align: center;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: transparent;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 28px;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    filter: brightness(1.3);
}

.social-icon {
    width: 32px;
    height: 32px;
    fill: white;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    fill: var(--trendyol-orange);
}

.security-badge {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 20px;
}

.security-badge a {
    color: #9b59b6;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.security-badge a:hover {
    color: #8e44ad;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .language-container h1 {
        font-size: 28px !important;
    }
    
    .logo {
        max-width: 60px;
        max-height: 60px;
    }
    
    .header-logo {
        max-width: 40px !important;
        max-height: 40px !important;
    }
    
    header span {
        font-size: 18px !important;
    }
    
    .item-header {
        flex-direction: column;
    }

    .item-image {
        width: 100%;
        height: 200px;
    }

    .category-title {
        font-size: 20px;
    }

    .item-name {
        font-size: 18px;
    }

    .item-price {
        position: static;
        margin-top: 10px;
        display: inline-block;
        width: fit-content;
    }
}