/**
 * ==================================================================
 * Project      : Shops
 * File         : css/shop.css
 * Author       : Erica Mae Yeban
 * Created Date : 2026-05-30
 *
 * Copyright (c) 2026 Chomp.
 * All Rights Reserved.
 *
 * NOTICE:
 * This source code contains proprietary information owned by
 * Chomp Organization. The contents of this file may not be copied,
 * modified, distributed, disclosed, or used without express
 * written authorization from the copyright holder.
 * ==================================================================
 */

.shop-cover {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.shop-info-card {
    margin-bottom: 0px;
}

.shop-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.menu-nav .nav-link {
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 0.25rem;
}
.menu-nav .nav-link:hover,
.menu-nav .nav-link.active {
    background-color: var(--primary-subtle);
    color: var(--primary);
}

.menu-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 150px;
}

.menu-section {
    scroll-margin-top: 100px;
}

.bg-success-subtle {
    background-color: var(--success-light) !important;
}
.bg-warning-subtle {
    background-color: var(--warning-light) !important;
}
.bg-danger-subtle {
    background-color: var(--danger-light) !important;
}
