.ths-page-banner { background-color: #5A351A; }
.ths-page-banner-eyebrow { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--cream); font-family: var(--font-sans); }

.ths-filter-pill {
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-family: var(--font-sans);
    background: white;
    color: var(--brown);
    border: 1.5px solid rgba(196,114,74,0.4);
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 400;
}
.ths-filter-pill.active, .ths-filter-pill:hover {
    background: var(--brown);
    color: var(--cream);
    border-color: var(--brown);
    font-weight: 600;
}

.ths-menu-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(107,63,31,0.08);
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.ths-menu-card:hover { box-shadow: 0 8px 24px rgba(107,63,31,0.14); }

/* Image wrap: position relative so heart button sits on top */
.ths-menu-img-wrap {
    position: relative;
    height: 192px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}
.ths-menu-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.ths-menu-card:hover .ths-menu-img { transform: scale(1.05); }
.ths-menu-item-title { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--brown); }
.ths-menu-item-desc { font-size: 0.75rem; color: #5A3518; line-height: 1.6; margin: 6px 0 0; }
.ths-cat-badge {
    font-size: 0.65rem; padding: 3px 10px; border-radius: 999px;
    background: #ede8e0; color: #6B4226;
    white-space: nowrap; flex-shrink: 0; font-weight: 500;
}
.ths-btn-add {
    display: flex; align-items: center; gap: 5px;
    padding: 7px 16px; border-radius: 999px; border: none;
    background: var(--terracotta); color: var(--cream);
    font-size: 0.75rem; font-weight: 600; cursor: pointer;
    transition: all 0.2s; font-family: var(--font-sans);
}
.ths-btn-add:hover { opacity: 1; }
.ths-btn-add.added { background: var(--sage); }
.menu-item { transition: opacity 0.2s, transform 0.2s; }
.menu-item.hidden { display: none !important; }

/* ── FAVOURITE BUTTON ──────────────────────────────────────────────── */
.ths-fav-btn {
    position: absolute;
    top: 10px; right: 10px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    color: #C4724A;
    transition: transform 0.15s, box-shadow 0.15s;
    z-index: 2;
}
.ths-fav-btn:hover { transform: scale(1.12); box-shadow: 0 4px 14px rgba(0,0,0,0.16); }
.ths-fav-btn.active { color: #C4724A; }

/* ── STAR PICKER ───────────────────────────────────────────────────── */
.ths-star-picker { display: flex; gap: 4px; }
.ths-star-btn {
    background: none; border: none; cursor: pointer; padding: 2px;
    transition: transform 0.1s;
}
.ths-star-btn:hover { transform: scale(1.15); }

/* ── INLINE FAVOURITE BUTTON (next to title) ──────────────────────── */
.ths-fav-btn-inline {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s;
    flex-shrink: 0;
}
.ths-fav-btn-inline:focus { outline: none; box-shadow: none; }
.ths-fav-btn-inline:hover { transform: scale(1.2); }
.ths-fav-btn-inline.active svg { fill: #C4724A; }
