/* ---------- Avatar picker ---------- */
.avatar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
    gap: 16px;
}
.avatar-tone-group { margin-bottom: 30px; }
.avatar-tone-group h3 { font-size: 0.95rem; color: var(--color-gold-soft); opacity: 0.9; }
.avatar-option {
    position: relative;
    border-radius: var(--radius-md);
    border: 2px solid rgba(184,147,63,0.18);
    overflow: hidden;
    cursor: pointer;
    background: rgba(0,0,0,0.25);
    box-shadow: var(--shadow-inset-hairline);
    transition: transform 0.2s var(--ease-emphasized), border-color 0.15s ease, box-shadow 0.2s ease;
    aspect-ratio: 3/4;
}
.avatar-option img { width: 100%; height: 100%; display: block; object-fit: cover; }
.avatar-option:hover { transform: translateY(-4px); border-color: rgba(232,200,116,0.55); }
.avatar-option.selected { border-color: var(--color-gold-bright); box-shadow: var(--shadow-glow-gold); }
.avatar-option input { position: absolute; opacity: 0; pointer-events: none; }

.avatar-picker { display: flex; flex-direction: column; gap: 22px; }
.avatar-filter-row { display: flex; flex-direction: column; gap: 10px; }
.avatar-filter-label { font-size: 0.85rem; color: var(--color-gold-soft); opacity: 0.9; text-transform: uppercase; letter-spacing: 0.04em; }
.avatar-filter-options { display: flex; flex-wrap: wrap; gap: 10px; }
.avatar-filter-btn {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: var(--radius-pill, 999px);
    border: 2px solid rgba(184,147,63,0.18);
    background: rgba(0,0,0,0.25);
    color: inherit;
    font: inherit;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.2s ease;
}
.avatar-filter-btn:hover { border-color: rgba(232,200,116,0.4); }
.avatar-filter-btn.active { border-color: var(--color-gold-bright); box-shadow: var(--shadow-glow-gold); }

.pronoun-options { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.pronoun-chip {
    padding: 9px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(184,147,63,0.4);
    background: rgba(0,0,0,0.22);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.pronoun-chip:hover { border-color: rgba(232,200,116,0.6); }
.pronoun-chip input { display: none; }
.pronoun-chip.selected { background: var(--color-gold); color: #1a1206; border-color: var(--color-gold-dim); }

/* ---------- Shop / Diagon Alley ---------- */
.shop-page-layout {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}
.shop-letter-copy {
    flex: 0 0 280px;
    position: sticky;
    top: 92px;
    padding: 22px 20px;
}
.shop-letter-copy .letter-crest { display: block; margin: 0 auto 10px; }
.shop-letter-copy h3 { font-size: 0.95rem; }
.shop-main-column { flex: 1; min-width: 0; }
.letter-checklist { list-style: none; margin: 0; padding: 0; font-size: 0.82rem; }
.letter-checklist-shop {
    margin-top: 12px;
    font-family: var(--font-display);
    opacity: 0.75;
    font-size: 0.8rem;
}
.letter-checklist li:not(.letter-checklist-shop) { padding: 3px 0 3px 4px; }
.letter-checklist-done {
    text-decoration: line-through;
    opacity: 0.45;
}
@media (max-width: 880px) {
    .shop-page-layout { flex-direction: column; }
    .shop-letter-copy { position: static; width: 100%; flex-basis: auto; }
}

.shop-map-and-panels { display: flex; align-items: flex-start; gap: 28px; }
.shop-map-wrap {
    position: relative;
    width: 900px;
    max-width: 900px;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-ambient);
    border: 1px solid rgba(184,147,63,0.28);
}
.shop-map-wrap svg, .shop-map-img { width: 100%; height: auto; display: block; }
/* The map keeps its full original size and the panel gets enough room for
   4 item-grid columns (540px) — deliberately NOT shrinking either to fit
   narrower desktop/laptop viewports; the row just extends to the right past
   the page's normal centered width there (that's fine, per explicit request).
   Below 900px viewport (genuine phone/small-tablet territory, where even the
   map alone can't fit) it stacks and both shrink to fit instead. */
.shop-panels-column { flex: 1; min-width: 540px; display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 900px) {
    .shop-map-and-panels { flex-direction: column; align-items: stretch; }
    .shop-map-wrap { width: 100%; }
    .shop-panels-column { min-width: 0; }
}
.shop-hotspot {
    position: absolute;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 12px;
    background: rgba(232,200,116,0);
    box-shadow: 0 0 0 rgba(232,200,116,0) inset;
    cursor: pointer;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}
.shop-hotspot:hover, .shop-hotspot:focus-visible {
    background: rgba(232,200,116,0.18);
    box-shadow: 0 0 18px rgba(232,200,116,0.55) inset;
}
.shop-hotspot.active-shop {
    background: rgba(232,200,116,0.28);
    box-shadow: 0 0 22px rgba(232,200,116,0.8) inset;
}
.shop-hotspot-soon {
    cursor: not-allowed;
    background: rgba(0,0,0,0.12) !important;
}

.shop-panel { display: none; }
.shop-panel.active { display: block; }

#checkout-form { display: none; }
#checkout-form.active { display: block; }

.item-list { display: grid; gap: 14px; }
.item-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: rgba(0,0,0,0.24);
    border: 1px solid rgba(184,147,63,0.22);
    box-shadow: var(--shadow-inset-hairline);
}
.item-row .item-icon { width: 38px; height: 38px; flex-shrink: 0; color: var(--color-gold-bright); }
.item-row .item-info { flex: 1; min-width: 0; }
.item-row .item-name { font-family: var(--font-display); font-weight: 600; color: var(--color-white); letter-spacing: 0.02em; }
.item-row .item-price { font-size: 0.85rem; color: var(--color-gold-soft); margin-top: 2px; }
.item-row .item-required { font-size: 0.78rem; color: var(--color-text-faint); margin-top: 2px; }

/* Compact contact rows (contacts/requests/blocked lists) — shows up to ~20
   rows before scrolling internally, so a long list doesn't stretch the page. */
.contact-list {
    display: grid;
    gap: 6px;
    max-height: 800px;
    overflow-y: auto;
    padding-right: 4px;
}
.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    background: rgba(0,0,0,0.24);
    border: 1px solid rgba(184,147,63,0.22);
}
.contact-row .contact-info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
    overflow: hidden;
}
.contact-row .contact-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.contact-row .contact-meta {
    font-size: 0.7rem;
    color: var(--color-text-dim);
    white-space: nowrap;
    flex-shrink: 0;
}
.contact-row .wallet-pill { font-size: 0.68rem; padding: 3px 10px; flex-shrink: 0; }
.contact-row .btn-sm { padding: 4px 10px; font-size: 0.72rem; flex-shrink: 0; }
.message-icon-btn-sm { width: 24px; height: 24px; padding: 4px; }

/* Forum topic posts — one bordered list, rows touching (no gap between them,
   only a hairline divider) and padded as tightly as the content allows. */
.forum-post-list {
    margin-top: 12px;
    border: 1px solid rgba(184,147,63,0.22);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(0,0,0,0.18);
}
.forum-post-row {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(184,147,63,0.15);
}
.forum-post-row:last-child { border-bottom: none; }
.forum-post-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.forum-post-author { display: flex; align-items: center; gap: 12px; background: none; border: none; padding: 0; cursor: pointer; }
.forum-post-avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; background: rgba(255,255,255,0.08); flex-shrink: 0; }
.forum-post-time { font-size: 0.66rem; color: var(--color-text-faint); flex-shrink: 0; }
.forum-post-body { margin-top: 3px; white-space: pre-wrap; color: var(--color-text-dim); font-size: 0.86rem; line-height: 1.35; }
.forum-post-actions { margin-top: 12px; display: flex; gap: 6px; align-items: center; }

/* Forum section/subsection list — same touching-rows treatment as the post
   list. Each top-level category is one block (row + its subsection rows +
   the "new subsection" control) so dragging it moves the whole group. */
.forum-section-list {
    margin-top: 12px;
    border: 1px solid rgba(184,147,63,0.22);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(0,0,0,0.18);
}
.forum-section-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border-bottom: 1px solid rgba(184,147,63,0.15);
}
.forum-section-row:last-child { border-bottom: none; }
.forum-section-row[draggable="true"] { cursor: grab; }
.forum-drag-handle { flex-shrink: 0; opacity: 0.45; font-size: 0.8rem; color: var(--color-gold-soft); }
.forum-section-info { flex: 1; min-width: 0; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.forum-section-name { font-family: var(--font-display); font-weight: 600; color: var(--color-white); text-decoration: none; font-size: 0.92rem; }
.forum-section-name:hover { text-decoration: underline; }
.forum-section-desc { font-size: 0.72rem; color: var(--color-text-dim); }

/* "NEW" badge on a topic with activity the viewer hasn't seen yet, and the
   pager for a category's topic list (max 50 topics/page, up to 20 page
   numbers shown at once). */
.forum-new-badge {
    font-size: 0.6rem;
    font-weight: 700;
    color: #1a1400;
    background: var(--color-gold-bright);
    padding: 1px 6px;
    border-radius: 999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.forum-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}
.forum-page-arrow, .forum-page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    padding: 0 6px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(184,147,63,0.25);
    background: rgba(0,0,0,0.2);
    color: var(--color-text-dim);
    font-size: 0.75rem;
    text-decoration: none;
}
.forum-page-arrow:hover, .forum-page-num:hover { border-color: var(--color-gold-bright); color: var(--color-gold-bright); }
.forum-page-arrow-disabled { opacity: 0.3; cursor: default; pointer-events: none; }
.forum-page-num-active { background: var(--color-gold-bright); color: #1a1400; border-color: var(--color-gold-bright); font-weight: 700; }

.shop-item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
    gap: 10px;
    min-width: 0;
}
.shop-item-cell {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 6px;
    border-radius: var(--radius-md);
    background: rgba(0,0,0,0.24);
    border: 1px solid rgba(184,147,63,0.22);
    box-shadow: var(--shadow-inset-hairline);
    min-width: 0;
}
.shop-item-cell:hover .icon-cell-tooltip,
.shop-item-cell:focus-within .icon-cell-tooltip {
    opacity: 1;
    visibility: visible;
}
.shop-item-cell .item-icon { width: 46px; height: 46px; margin-bottom: 6px; color: var(--color-gold-bright); }
.shop-item-cell .item-name { font-family: var(--font-display); font-weight: 600; color: var(--color-white); font-size: 0.72rem; line-height: 1.25; min-height: 2.5em; }
.shop-item-cell .item-price { font-size: 0.66rem; color: var(--color-gold-soft); margin-top: 4px; }
.shop-item-cell .item-required { font-size: 0.62rem; color: var(--color-text-faint); margin-top: 2px; }
.shop-item-cell .stepper { margin-top: 8px; gap: 6px; }
.shop-item-cell .stepper button { width: 24px; height: 24px; font-size: 0.85rem; }
.shop-item-cell .stepper .qty { min-width: 16px; font-size: 0.8rem; }

.stepper { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.stepper button {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(184,147,63,0.6);
    background: rgba(184,147,63,0.14);
    color: var(--color-gold-bright);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
}
.stepper button:hover:not(:disabled) { background: rgba(184,147,63,0.28); transform: translateY(-1px); }
.stepper button:disabled { opacity: 0.3; cursor: not-allowed; }
.stepper .qty { min-width: 22px; text-align: center; font-family: var(--font-display); font-weight: 600; }

.cart-summary {
    position: sticky;
    bottom: 16px;
    margin-top: 24px;
    padding: 18px 26px;
    border-radius: var(--radius-lg);
    background: linear-gradient(165deg, rgba(20,25,38,0.97), rgba(5,6,9,0.97));
    border: 1px solid rgba(184,147,63,0.55);
    box-shadow: var(--shadow-ambient), var(--shadow-glow-gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

/* ---------- Wand mini-game ---------- */
.wand-candidates { max-width: 420px; margin: 0 auto; }
.wand-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--gradient-night-panel), var(--color-night-panel);
    border: 1px solid rgba(184,147,63,0.3);
    box-shadow: var(--shadow-ambient);
    text-align: center;
    transition: border-color 0.2s ease;
}
.wand-card.success { border-color: var(--color-gold-bright); box-shadow: var(--shadow-ambient), 0 0 22px rgba(232,200,116,0.5); }
.wand-card.failed { opacity: 0.55; }

.page-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 500;
    opacity: 0;
}
.page-glow.glow-red {
    box-shadow: inset 0 0 180px 60px rgba(220,50,50,0.5);
    animation: page-glow-pulse 1s ease-out;
}
.page-glow.glow-gold {
    box-shadow: inset 0 0 220px 80px rgba(232,200,116,0.6);
    animation: page-glow-pulse 2s ease-out;
}
@keyframes page-glow-pulse {
    0% { opacity: 0; }
    15% { opacity: 1; }
    100% { opacity: 0; }
}
.wand-icon-wrap { position: relative; width: 240px; height: 240px; margin: 0 auto 14px; }
.wand-icon { width: 100%; height: 100%; color: var(--color-gold-bright); }
/* Same composite as the Ollivander's candidate cards, scaled down to fit the
   profile page's compact wand card (140px vs. 240px there). */
.profile-wand-icon-wrap { width: 140px; height: 140px; flex-shrink: 0; margin: 0; }
.profile-wand-icon-wrap .wand-core-icon { width: 35px; height: 35px; }
.wand-core-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    left: 40%;
    top: 72%;
    object-fit: contain;
    pointer-events: none;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}
.wand-card .wand-spec { font-size: 0.85rem; color: var(--color-text-dim); margin: 4px 0; }
.wand-reaction { min-height: 1.4em; font-style: italic; color: var(--color-teal); margin-top: 12px; font-size: 0.9rem; }

.owl-candidates { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.owl-card {
    padding: 20px;
    border-radius: var(--radius-lg);
    background: var(--gradient-night-panel), var(--color-night-panel);
    border: 1px solid rgba(184,147,63,0.3);
    box-shadow: var(--shadow-ambient);
    text-align: center;
    transition: border-color 0.2s ease;
}
.owl-card:hover { border-color: rgba(232,200,116,0.6); }
.owl-card-img { width: 90px; height: auto; margin: 0 auto 14px; display: block; }

/* ---------- Sorting quiz ---------- */
.quiz-question { margin-bottom: 30px; padding-bottom: 24px; border-bottom: 1px solid rgba(184,147,63,0.18); }
.quiz-question:last-child { border-bottom: none; }
.quiz-answers { display: grid; gap: 10px; margin-top: 14px; }
.quiz-answer {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(184,147,63,0.22);
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.quiz-answer:hover { border-color: rgba(184,147,63,0.45); }
.quiz-answer.selected { border-color: var(--color-gold-bright); background: rgba(184,147,63,0.16); }
.quiz-answer input { accent-color: var(--color-gold); }

.house-pick-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 18px; }
.house-pick-card {
    text-align: center;
    padding: 22px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: var(--shadow-inset-hairline);
    transition: transform 0.2s var(--ease-emphasized), box-shadow 0.2s ease;
}
.house-pick-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-ambient); }
.house-pick-card img { width: 76px; height: 76px; margin-bottom: 12px; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4)); }

/* ---------- Misc ---------- */
.divider-or {
    display: flex; align-items: center; gap: 14px; margin: 26px 0;
    color: var(--color-text-faint);
    font-family: var(--font-display);
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}
.divider-or::before, .divider-or::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(184,147,63,0.4), transparent); }

/* ---------- Great Hall chat ---------- */
.great-hall-chat { margin-top: 20px; }
.chat-messages {
    height: 320px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(184,147,63,0.22);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
}
.chat-message {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 0.85rem;
    line-height: 1.5;
}
.chat-message-body { color: var(--color-white); word-break: break-word; }
.chat-delete-btn {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    padding: 0;
    border: none;
    background: none;
    color: #c0392b;
    cursor: pointer;
    align-self: center;
}
.chat-delete-btn svg { width: 100%; height: 100%; }
.chat-message-name {
    flex-shrink: 0;
    font-weight: 700;
    font-family: var(--font-display);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.15s ease;
}
.chat-message-name:hover { text-decoration-color: currentColor; }
.chat-message-time {
    flex-shrink: 0;
    color: var(--color-text-faint);
    font-size: 0.72rem;
    margin-right: 4px;
}
.chat-form {
    display: flex;
    gap: 10px;
}
.chat-form input[type="text"] {
    flex: 1;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(184,147,63,0.3);
    background: rgba(0,0,0,0.24);
    color: var(--color-white);
    font: inherit;
}
.chat-form input[type="text"]:focus { outline: none; border-color: var(--color-gold-bright); }
.chat-hint {
    font-size: 0.72rem;
    color: var(--color-text-faint);
    margin: 8px 0 0;
}

/* Room of Requirement: 6 clickable boxes overlaid on the scene image (3 potion
   slots, not implemented yet; 3 plant-growing slots) + a right-hand detail
   panel that swaps content per selected slot. */
.garden-scene-wrap {
    position: relative;
    flex: 2 1 480px;
}
.garden-slots {
    position: absolute;
    left: 6%;
    right: 6%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3%;
}
.garden-slots-potions { top: 14%; }
.garden-slots-plants { top: 66%; }
.garden-slot {
    flex: 1;
    aspect-ratio: 1;
    max-width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: rgba(10,12,20,0.72);
    border: 2px solid color-mix(in srgb, var(--color-gold) 55%, transparent);
    border-radius: var(--radius-md);
    color: var(--color-gold-bright);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.45);
}
.garden-slot-soon { opacity: 0.45; cursor: not-allowed; }
.garden-slot-plant:hover { border-color: var(--color-gold-bright); }
.garden-slot-active { border-color: var(--color-gold-bright); box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-gold-bright) 60%, transparent), 0 4px 16px rgba(0,0,0,0.45); }
.garden-slot-occupied { background: rgba(30,50,20,0.72); }
.garden-slot-plant-icon { width: 100%; height: 100%; }
.garden-slot-wrap {
    flex: 1;
    max-width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.garden-slot-wrap .garden-slot { flex: 0 0 auto; width: 100%; }
.garden-slot-timer {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
    color: var(--color-gold-bright);
    background: rgba(10,12,20,0.8);
    padding: 2px 9px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--color-gold) 50%, transparent);
    white-space: nowrap;
}

.garden-detail-host { min-height: 260px; }
.garden-countdown { font-family: var(--font-display); font-size: 1.3rem; color: var(--color-gold-bright); }

.garden-seed-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.garden-seed-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border: 1px solid rgba(184,147,63,0.25);
    border-radius: var(--radius-sm);
    background: rgba(0,0,0,0.2);
    cursor: pointer;
}
.garden-seed-option:has(input:checked) { border-color: var(--color-gold-bright); background: rgba(184,147,63,0.12); }
.garden-seed-locked { opacity: 0.6; cursor: default; }
.garden-seed-icon { width: 36px; height: 36px; flex-shrink: 0; color: var(--color-gold-bright); }
.garden-material-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.garden-material-icon { width: 28px; height: 28px; flex-shrink: 0; color: var(--color-gold-bright); }
.garden-material-insufficient { color: #e07a5f; }
