.filter-sidebar {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    position: sticky;
    top: 20px;
}

.sidebar-title {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.hero-title span {
    color: #ffd700;
}






.product-image-container {
    position: sticky;
    top: 20px;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
}

.option-group {
    border: 1px solid #eee;
}

.option-value label {
    cursor: pointer;
    transition: all 0.2s;
}

.option-value label:hover {
    background-color: #f8f9fa;
}

.option-value input[type="checkbox"],
.option-value input[type="radio"] {
    cursor: pointer;
}
.hero-title span {
    color: #ffd700;
}

.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.menu-item-card:hover .card {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.img-wrapper {
    position: relative;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-item-card:hover .img-wrapper img {
    transform: scale(1.05);
}

.badges {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
}

.card-body {
    padding: 15px;
}

.item-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
    transition: color 0.3s;
}

.menu-item-card:hover .item-title {
    color: var(--primary-color);
}

.item-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .img-wrapper {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }
}

.menu-item-wrapper {
    position: relative;
}
.menu-item-wrapper {
    position: relative;
}


.quantity-input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
}
.quantity-btn {
    width: 30px;
    padding: 5px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
