/* Menuu theme - salmon header, big category cards */
:root {
    --menuu-header-bg: #e8a598;
    --menuu-header-text: #fff;
    --menuu-page-bg: #faf8f6;
    --menuu-card-radius: 16px;
    --menuu-card-shadow: 0 4px 16px rgba(0,0,0,.08);
}
body { font-family: 'Segoe UI', system-ui, sans-serif; background: var(--menuu-page-bg); min-height: 100vh; padding-bottom: env(safe-area-inset-bottom, 0); margin: 0; }

.menuu-header {
    background: var(--menuu-header-bg);
    color: var(--menuu-header-text);
    padding: 1rem 1.25rem;
    position: sticky;
    top: 0;
    z-index: 1020;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.menuu-header-logo { height: 44px; width: auto; max-width: 160px; object-fit: contain; display: block; }
.menuu-lang-wrap { display: flex; align-items: center; margin-left: auto; }

#content.menuu-content { padding: 1.25rem 1rem; max-width: 900px; margin: 0 auto; }
.menuu-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}
.menuu-category-list { display: flex; flex-direction: column; gap: 1rem; }
.menuu-category-card {
    display: block;
    border-radius: var(--menuu-card-radius);
    overflow: hidden;
    box-shadow: var(--menuu-card-shadow);
    text-decoration: none;
    color: inherit;
    position: relative;
    background: #e9ecef;
    aspect-ratio: 16/9;
    min-height: 160px;
    transition: transform .2s, box-shadow .2s;
}
.menuu-category-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.12); color: inherit; }
.menuu-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.menuu-category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(transparent, rgba(0,0,0,.5));
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menuu-category-card-title { font-weight: 700; font-size: 1.1rem; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.3); margin: 0; }
.menuu-category-card-arrow { color: #fff; font-size: 1.25rem; opacity: .9; }

.menuu-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; }
.menuu-product-card {
    border: none;
    border-radius: var(--menuu-card-radius);
    box-shadow: var(--menuu-card-shadow);
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    background: #fff;
}
.menuu-product-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.menuu-product-card .card-img-wrap { aspect-ratio: 1; background: #e9ecef; display: flex; align-items: center; justify-content: center; color: #6c757d; }
.menuu-product-card .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.menuu-product-card .card-body { padding: 0.75rem; }
.menuu-product-card .product-price { font-weight: 700; color: #c75a4f; font-size: 1rem; }

.menuu-back-bar { margin-bottom: 1rem; }
.menuu-back-bar .btn { font-size: .9rem; }
.menuu-footer { margin-top: 2rem; padding: 1.25rem 0; border-top: 1px solid rgba(0,0,0,.06); text-align: center; }
.menuu-footer .google-review-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: #fff; font-weight: 600; font-size: .95rem;
    padding: .6rem 1.25rem; border-radius: 12px; border: none;
    text-decoration: none;
}
.menuu-footer .social-links { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-top: 0.75rem; }
.menuu-footer .social-link {
    width: 42px; height: 42px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; text-decoration: none;
}
.menuu-footer .social-link.facebook { background: #1877f2; }
.menuu-footer .social-link.instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.menuu-footer .social-link.youtube { background: #ff0000; }
.menuu-footer .social-link.x { background: #0f1419; }
.menuu-footer .social-link.linkedin { background: #0a66c2; }
.menuu-footer .social-link.foursquare { background: #f94877; }

/* Modal & loading - shared */
#productModal .modal-dialog { max-width: 420px; border-radius: var(--menuu-card-radius); overflow: hidden; }
#productModal .modal-content { border: none; box-shadow: 0 12px 40px rgba(0,0,0,.18); border-radius: var(--menuu-card-radius); }
#productModal .product-modal-img-wrap { aspect-ratio: 1; background: #e9ecef; overflow: hidden; }
#productModal .product-modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
#productModal #productModalPrice { display: flex; align-items: baseline; flex-wrap: wrap; gap: 20px; }
#productModal .product-modal-market-price { text-decoration: line-through; color: #6c757d; font-weight: 600; font-size: 0.8rem; }
#productModal .product-modal-price { font-weight: 700; color: #c75a4f; font-size: 1.25rem; }
#productModal .product-modal-desc p { margin-bottom: 0.35em; }
#productModal .product-modal-desc p:last-child { margin-bottom: 0; }
.loading-spinner { text-align: center; padding: 2rem; color: #6c757d; }
.no-image-placeholder { font-size: .85rem; color: #6c757d; }
