/* Main container */
.quantity-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100px; /* Compact width */
    border-radius: 20px;
    border: 1px solid #ddd;
    background: #fff;
    padding: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Quantity buttons */
.qty-btn {
    background: #007bff;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.qty-btn:hover {
    background: #0056b3;
}

/* Quantity input field */
.qty-input {
    width: 30px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border: none;
    background: transparent;
    outline: none;
}

/* Add button */
.add-btn {
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 20px;
}

.restro-item-name {
    font-size: 1rem;
    font-weight: bold;
}

/* shop */
.restro-item {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.restro-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.restro-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.restro-item .item-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.restro-item .description {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 6px;
}

.adder {
    display: flex;
    justify-content: flex-end;
}

/* list */

.menu-list {
    max-width: 600px;
    margin: 0 auto;
}

.category {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.category-header {
    background: #f8f9fa;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.category-header:hover {
    background: #e9ecef;
}

.category-header i {
    transition: transform 0.3s ease-in-out;
}

.category-header.collapsed i {
    transform: rotate(-90deg);
}

.category-body {
    padding: 10px;
}

/* menu title */
.menu-title {
    font-size: 28px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.menu-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #dc3545;
    margin: 5px auto 0;
    border-radius: 2px;
}

.menu-title i {
    margin-right: 8px;
    font-size: 24px;
}