/* Müşteri Menü Sayfası Stilleri */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
.menu-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 20px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.header-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.restaurant-logo {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    margin-bottom: 24px;
    background: white;
    transition: transform 0.3s ease;
}

.restaurant-logo:hover {
    transform: scale(1.05);
}

.menu-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.restaurant-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.7;
    font-weight: 300;
}

.restaurant-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 10px;
}

/* Menu Content */
.menu-content {
    max-width: 1200px;
    margin: -40px auto 0;
    padding: 0 20px 60px;
    position: relative;
    z-index: 2;
}

/* Category */
.menu-category {
    margin-bottom: 80px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 28px 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #667eea;
}

.category-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.category-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.category-description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

/* Menu Items Grid */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.menu-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: #e0e0e0;
}

.menu-item.featured {
    border: 2px solid #ffd700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.menu-item.featured:hover {
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

.item-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover .item-image img {
    transform: scale(1.08);
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    z-index: 2;
}

.item-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.item-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
    font-weight: 400;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 2px solid #f5f5f5;
    margin-top: auto;
}

.item-price {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* Empty States */
.empty-state,
.empty-category {
    text-align: center;
    padding: 80px 20px;
    color: #999;
    font-size: 18px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

/* Footer */
.menu-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 40px 20px;
    margin-top: 80px;
}

.menu-footer p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-header {
        padding: 40px 20px 30px;
    }
    
    .menu-header h1 {
        font-size: 32px;
    }
    
    .restaurant-logo {
        width: 110px;
        height: 110px;
        border-radius: 16px;
    }
    
    .restaurant-description {
        font-size: 15px;
    }
    
    .menu-content {
        margin-top: -30px;
        padding: 0 15px 40px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }
    
    .category-image {
        width: 70px;
        height: 70px;
    }
    
    .category-header h2 {
        font-size: 26px;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-category {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .menu-header h1 {
        font-size: 28px;
    }
    
    .restaurant-logo {
        width: 100px;
        height: 100px;
    }
    
    .restaurant-description {
        font-size: 14px;
    }
    
    .category-header {
        padding: 20px 16px;
    }
    
    .category-header h2 {
        font-size: 22px;
    }
    
    .item-content {
        padding: 20px;
    }
    
    .item-content h3 {
        font-size: 20px;
    }
    
    .item-price {
        font-size: 24px;
    }
}
