/* Order Page Specific Styles */
body {
    background-color: #0a0a0a;
    /* Slightly darker for the order page */
    padding-top: 80px;
    /* Space for fixed navbar */
}

.order-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
    min-height: calc(100vh - 80px);
}

/* Sidebar Categories */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    background-color: #151515;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.category-list li {
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: var(--transition);
    color: var(--text-muted);
    font-weight: 500;
}

.category-list li:hover,
.category-list li.active {
    background-color: rgba(198, 156, 109, 0.1);
    color: var(--primary-color);
    padding-left: 20px;
}

/* Main Menu Content */
.menu-content {
    padding-bottom: 50px;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 20px;
    margin-top: 10px;
    color: white;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.order-item-card {
    background-color: #151515;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.order-item-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.order-item-img {
    height: 180px;
    overflow: hidden;
}

.order-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.order-item-details h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.order-item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    flex-grow: 1;
}

.order-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.order-item-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .order-container {
        grid-template-columns: 200px 1fr;
    }
}

@media (max-width: 768px) {
    .order-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
        /* Hide sidebar on mobile, use horizontal scroll or dropdown */
    }

    /* Simple horizontal category scroll for mobile */
    .sidebar {
        display: block;
        position: static;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        background: transparent;
        border: none;
        padding: 0;
        margin-bottom: 20px;
    }

    .category-list {
        display: flex;
        gap: 10px;
    }

    .category-list li {
        background: #151515;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}