.page-header {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%),
        linear-gradient(135deg, #111827 0%, #1f2937 58%, #3b2f2f 100%);
    padding: 4.8rem 0 3.2rem;
    color: #fff;
}

.page-header.page-header-has-image {
    background:
        linear-gradient(135deg, rgba(17, 24, 39, 0.84) 0%, rgba(31, 41, 55, 0.8) 55%, rgba(59, 47, 47, 0.72) 100%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%),
        var(--cc-banner-image) center/cover no-repeat;
}

.page-header h1 {
    font-size: clamp(2.15rem, 4vw, 3.35rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 0.6rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 34rem;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item.active { color: rgba(255, 255, 255, 0.76); }

.page-header .cuisine-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1rem;
}

.cc-tabs {
    display: inline-flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.45rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--cc-border);
    border-radius: 999px;
    box-shadow: var(--cc-shadow-soft);
}

.cc-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    color: #64748b;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cc-tabs a:hover { color: var(--cc-red); transform: translateY(-1px); }

.cc-tabs a.active {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.14), rgba(255, 125, 86, 0.14));
    color: var(--cc-red);
}

.dish-count { font-size: 0.94rem; }

.dish-card {
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.35rem;
    box-shadow: var(--cc-shadow-soft);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    height: 100%;
}

.dish-card:hover {
    transform: translateY(-0.45rem);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.dish-emoji-wrap {
    position: relative;
    height: 12.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.dish-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dish-photo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #94a3b8;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.dish-body {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.25rem 1.35rem;
}

.dish-name {
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.35rem;
}

.dish-desc {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.6;
    min-height: 4.2rem;
    margin-bottom: 1rem;
}

.dish-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: auto;
}

.dish-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--cc-red);
    letter-spacing: -0.03em;
}

.btn-add {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.72rem 0.95rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cc-red) 0%, #ff7d56 100%);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 600;
    box-shadow: 0 12px 22px rgba(230, 57, 70, 0.18);
}

.btn-add:hover { background: linear-gradient(135deg, var(--cc-red-dark) 0%, #f46b45 100%); }

.empty-state {
    text-align: center;
    padding: 5rem 1rem;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--cc-border);
    border-radius: 1.5rem;
}

.empty-state .empty-icon {
    font-size: 4rem;
    color: var(--cc-red);
}

@media (max-width: 767.98px) {
    .page-header { padding: 3.5rem 0 2.6rem; }
    .cc-tabs { display: flex; border-radius: 1.25rem; }
    .cc-tabs a { flex: 1 1 calc(50% - 0.5rem); justify-content: center; }
    .dish-footer { flex-direction: column; align-items: stretch; }
    .btn-add { justify-content: center; }
}

.cc-cuisine-switcher {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.55rem;
    margin: 0 0 2rem;
    scrollbar-width: thin;
}

.cc-cuisine-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--cc-border);
    background: rgba(255, 255, 255, 0.92);
    color: #64748b;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cc-cuisine-pill:hover {
    color: var(--cc-red);
    border-color: rgba(230, 57, 70, 0.35);
    transform: translateY(-1px);
}

.cc-cuisine-pill.active {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.14), rgba(255, 125, 86, 0.14));
    color: var(--cc-red);
    border-color: rgba(230, 57, 70, 0.24);
}

.cc-cuisine-pill-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.45rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}
