/* Dressed N Drew -- warm gold/champagne on black, per brand_profile.json's
   visual_style. First-pass approximation; refine with real brand assets
   (logo font, exact foil color) later. */

:root {
    --bg: #0a0a0a;
    --bg-elevated: #161412;
    --gold: #c9a876;
    --gold-bright: #e0c896;
    --cream: #f0e6d2;
    --muted: #9c8f78;
}

* { box-sizing: border-box; }

body {
    background: var(--bg);
    color: var(--cream);
    font-family: "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.site-header {
    text-align: center;
    padding: 48px 20px 24px;
    border-bottom: 1px solid #2a2622;
}

.wordmark {
    display: inline-block;
    text-decoration: none;
}

.wordmark img {
    height: 38px;
    width: auto;
}

.tagline {
    color: #9f948c; /* sampled directly from the wordmark artwork's letter color */
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-top: 8px;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-banner {
    width: 100%;
    margin: 0 0 32px;
}

.hero-banner img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.hero {
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    color: var(--gold-bright);
    letter-spacing: 0.05em;
}

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.sort-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.sort-label {
    color: var(--muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
}

.sort-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: var(--bg-elevated);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239c8f78' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    color: var(--cream);
    border: 1px solid #2a2622;
    border-radius: 20px;
    padding: 8px 36px 8px 16px;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    cursor: pointer;
    min-width: 170px;
    transition: border-color 0.2s;
}

.sort-select:focus,
.sort-select:hover {
    outline: none;
    border-color: var(--gold);
    color: var(--gold);
}

.sort-select option {
    background: #1a1a1a;
    color: var(--cream);
}

.filter-btn {
    background: transparent;
    color: var(--muted);
    border: 1px solid #2a2622;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #0a0a0a;
}

.hero p {
    color: var(--muted);
    max-width: 600px;
    margin: 12px auto 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.card {
    background: var(--bg-elevated);
    border: 1px solid #2a2622;
    border-radius: 8px;
    padding: 16px;
    text-decoration: none;
    color: var(--cream);
    transition: border-color 0.2s ease;
}

.card:hover {
    border-color: var(--gold);
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(90deg, #3a2e10, #2a2008);
    color: var(--gold);
    border: 1px solid #4a3e18;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 12px;
    background: #000;
}

.card h3 {
    font-size: 1rem;
    margin: 0 0 6px;
}

.price {
    color: var(--gold);
    font-weight: 600;
}

.empty-state {
    color: var(--muted);
    text-align: center;
    grid-column: 1 / -1;
}

.back-link {
    color: var(--muted);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 24px;
}

.back-link:hover {
    color: var(--gold);
}

.product-detail {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.product-images img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
}

.image-placeholder {
    background: var(--bg-elevated);
    border: 1px dashed #2a2622;
    border-radius: 8px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}

.product-info h1 {
    color: var(--gold-bright);
    margin-top: 0;
}

.product-info .price {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.description {
    color: var(--cream);
    line-height: 1.6;
    white-space: pre-line;
}

label {
    display: block;
    margin-top: 20px;
    margin-bottom: 6px;
    color: var(--muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

select {
    width: 100%;
    padding: 10px;
    background: var(--bg-elevated);
    color: var(--cream);
    border: 1px solid #2a2622;
    border-radius: 4px;
}

.picker-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.picker-field label {
    margin-top: 20px;
}

.selection-feedback {
    margin-top: 12px;
    color: var(--gold);
    font-size: 0.9rem;
}

.selection-feedback.feedback-error {
    color: #d98c6b;
}

.add-to-cart {
    margin-top: 24px;
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: #0a0a0a;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.add-to-cart:hover {
    background: var(--gold-bright);
}

.add-to-cart:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.site-footer {
    text-align: center;
    padding: 24px;
    color: var(--muted);
    font-size: 0.85rem;
    border-top: 1px solid #2a2622;
}

.giving-back-line {
    margin-bottom: 10px;
}

.giving-back-line a {
    color: var(--gold);
    text-decoration: none;
}

.giving-back-line a:hover {
    text-decoration: underline;
}

.giving-back-page {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.giving-back-page h1 {
    color: var(--gold-bright);
}

.giving-back-page .lead {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.giving-back-page p {
    color: var(--cream);
    line-height: 1.7;
}

@media (max-width: 700px) {
    .product-detail {
        grid-template-columns: 1fr;
    }
}

/* ── Mobile (≤ 639px) ──────────────────────────────────────────────── */
@media (max-width: 639px) {

    /* Header — logo first, tagline, then nav links below */
    .site-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 16px 14px;
        gap: 0;
    }
    .wordmark { order: 1; }
    .tagline  { order: 2; margin-top: 6px; }
    .site-nav {
        order: 3;
        position: static;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 14px;
        margin-top: 14px;
    }
    .site-nav a { font-size: 0.78rem; }
    .cart-link {
        position: absolute;
        top: 20px;
        right: 16px;
        font-size: 0.78rem;
    }

    /* Main content */
    main { padding: 24px 14px; }

    /* Filter bar — categories scroll horizontally, sort full-width below */
    .filter-bar { flex-direction: column; align-items: stretch; gap: 10px; }
    .filter-row {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
        gap: 8px;
    }
    .filter-row::-webkit-scrollbar { display: none; }
    .filter-btn { white-space: nowrap; }
    .sort-wrap { justify-content: flex-start; }
    .sort-select { min-width: 0; flex: 1; }

    /* Product grid — 2 cards per row */
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .card { padding: 10px; }
    .card h3 { font-size: 0.82rem; }
    .price { font-size: 0.88rem; }

    /* Cart items — stack image+info, then controls */
    .cart-item {
        grid-template-columns: 68px 1fr;
        grid-template-rows: auto auto;
        gap: 10px 12px;
    }
    .cart-item img { width: 68px; height: 68px; }
    .cart-item-info { grid-column: 2; align-self: start; }
    .quantity-form  { grid-column: 1 / -1; }
    .remove-btn     { grid-column: 1 / -1; width: fit-content; }
    .cart-total {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .checkout-btn { width: 100%; text-align: center; }

    /* Donate — custom row wraps on narrow screens */
    .donate-custom-row { flex-wrap: wrap; }
    .donate-submit-btn { width: 100%; margin-top: 8px; }
}

/* ── Help Center ── */

.help-page { max-width: 1060px; margin: 0 auto; }

.help-hero {
    text-align: center;
    margin-bottom: 40px;
}
.help-hero h1 { color: var(--gold-bright); margin-bottom: 8px; }
.help-hero p  { color: var(--muted); margin: 0 0 16px; }
.location-badge {
    display: inline-block;
    background: #1a1612;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}
@media (max-width: 760px) { .help-grid { grid-template-columns: 1fr; } }

.help-col { display: flex; flex-direction: column; gap: 24px; }

.help-card {
    background: var(--bg-elevated);
    border: 1px solid #2a2622;
    border-radius: 10px;
    padding: 28px;
}
.help-card-title { color: var(--gold-bright); margin: 0 0 6px; font-size: 1.1rem; }
.help-card-sub   { color: var(--muted); font-size: 0.9rem; margin: 0 0 18px; }

.help-input, .help-textarea {
    width: 100%;
    background: #0f0e0c;
    color: var(--cream);
    border: 1px solid #2a2622;
    border-radius: 5px;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-family: inherit;
    margin-bottom: 12px;
}
.help-input:focus, .help-textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.help-textarea { resize: vertical; }
.help-optional  { color: var(--muted); font-size: 0.8rem; font-weight: 400; }

.help-btn {
    background: var(--gold);
    color: #0a0a0a;
    border: none;
    border-radius: 5px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    cursor: pointer;
}
.help-btn:hover { background: var(--gold-bright); }
.help-btn--full { width: 100%; padding: 13px; margin-top: 4px; }

.order-lookup-form { display: flex; gap: 10px; margin-bottom: 0; }
.order-lookup-form .help-input { margin-bottom: 0; flex: 1; }

.order-result {
    margin-top: 18px;
    border: 1px solid #2a2622;
    border-radius: 6px;
    overflow: hidden;
}
.order-result-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 14px;
    font-size: 0.9rem;
    border-bottom: 1px solid #1e1c19;
}
.order-result-row:last-child { border-bottom: none; }
.order-label { color: var(--muted); }
.order-status { font-weight: 600; text-transform: capitalize; }
.order-status--paid, .order-status--submitted_to_printify, .order-status--fulfilled { color: #7ac47a; }
.order-status--pending { color: var(--gold); }
.order-status--cart    { color: var(--muted); }
.order-status--failed  { color: #d97a7a; }

.help-error   { color: #d97a7a; font-size: 0.9rem; margin-top: 10px; }
.help-success { background: #1a2e1a; border: 1px solid #4a7a4a; border-radius: 6px; padding: 14px; color: #7ac47a; margin-top: 4px; }

.contact-form label { margin-top: 14px; }
.contact-form label:first-of-type { margin-top: 0; }

/* Chat widget */
.chat-window {
    height: 280px;
    overflow-y: auto;
    background: #0f0e0c;
    border: 1px solid #2a2622;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.chat-message { display: flex; }
.chat-message.user { justify-content: flex-end; }
.chat-bubble {
    max-width: 80%;
    padding: 9px 14px;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.5;
}
.chat-message.bot  .chat-bubble { background: #1e1c19; color: var(--cream); border-bottom-left-radius: 4px; }
.chat-message.user .chat-bubble { background: var(--gold); color: #0a0a0a; font-weight: 500; border-bottom-right-radius: 4px; }

.chat-input-row { display: flex; gap: 8px; }
.chat-input {
    flex: 1;
    background: #0f0e0c;
    color: var(--cream);
    border: 1px solid #2a2622;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-family: inherit;
}
.chat-input:focus { outline: none; border-color: var(--gold); }
.chat-send-btn {
    background: var(--gold);
    color: #0a0a0a;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
}
.chat-send-btn:hover { background: var(--gold-bright); }

/* Typing indicator */
.chat-message.typing .chat-bubble { display: flex; gap: 4px; align-items: center; padding: 12px 16px; }
.dot {
    width: 7px; height: 7px;
    background: var(--muted);
    border-radius: 50%;
    animation: bounce 1.2s infinite;
}
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce { 0%,80%,100%{transform:translateY(0)} 40%{transform:translateY(-6px)} }

/* FAQ */
.help-faq { margin-top: 8px; }
.help-faq-title { color: var(--gold-bright); margin-bottom: 20px; }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 600px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-item {
    background: var(--bg-elevated);
    border: 1px solid #2a2622;
    border-radius: 8px;
    padding: 16px 20px;
}
.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--gold);
    list-style: none;
    padding-right: 20px;
    position: relative;
}
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    color: var(--muted);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { color: var(--cream); margin: 12px 0 0; font-size: 0.9rem; line-height: 1.6; }

.site-nav {
    position: absolute;
    top: 48px;
    left: 24px;
    display: flex;
    gap: 20px;
}
.site-nav a {
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}
.site-nav a:hover { color: var(--gold); }
.site-nav a.active { color: var(--gold); font-weight: 600; }

.cart-link {
    position: absolute;
    top: 48px;
    right: 24px;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.cart-link:hover {
    color: var(--gold);
}

.cart-count {
    display: inline-block;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    padding: 0 5px;
    background: var(--gold);
    color: #0a0a0a;
    border-radius: 9px;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    letter-spacing: normal;
    vertical-align: middle;
}

.site-header {
    position: relative;
}

.not-orderable-note {
    color: var(--muted);
    font-style: italic;
    margin-top: 16px;
}

.cart-page {
    max-width: 800px;
    margin: 0 auto;
}

.cart-page h1 {
    color: var(--gold-bright);
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #2a2622;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    background: #000;
}

.cart-item-info h3 {
    margin: 0 0 4px;
    font-size: 0.95rem;
}

.variant-title {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0 0 4px;
}

.quantity-form {
    display: flex;
    gap: 6px;
}

.quantity-form input {
    width: 50px;
    background: var(--bg-elevated);
    color: var(--cream);
    border: 1px solid #2a2622;
    border-radius: 4px;
    padding: 6px;
}

.quantity-form button,
.remove-btn {
    background: transparent;
    color: var(--muted);
    border: 1px solid #2a2622;
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 0.8rem;
}

.quantity-form button:hover,
.remove-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.cart-total strong {
    color: var(--gold-bright);
    font-size: 1.3rem;
}

.checkout-btn {
    background: var(--gold);
    color: #0a0a0a;
    border: none;
    border-radius: 4px;
    padding: 14px 32px;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.checkout-btn:hover {
    background: var(--gold-bright);
}

.checkout-result {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.checkout-result h1 {
    color: var(--gold-bright);
}

.checkout-result .lead {
    color: var(--gold);
    font-size: 1.1rem;
}

/* ── Giving Back page actions ── */
.giving-back-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}
.giving-back-donate-btn {
    background: var(--gold);
    color: #0a0a0a;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
    transition: background 0.2s;
}
.giving-back-donate-btn:hover { background: var(--gold-bright); }
.giving-back-orgs-btn {
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
    border: 1px solid var(--gold);
    transition: background 0.2s, color 0.2s;
}
.giving-back-orgs-btn:hover { background: var(--gold); color: #0a0a0a; }

/* ── Donate page ── */
.donate-page {
    max-width: 860px;
    margin: 0 auto;
}
.donate-hero {
    text-align: center;
    margin-bottom: 40px;
}
.donate-hero h1 { color: var(--gold-bright); margin-bottom: 10px; }
.donate-lead {
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
.donate-pledge {
    color: var(--muted);
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.7;
    font-size: 0.95em;
}
.donate-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 56px;
}
@media (max-width: 720px) { .donate-two-col { grid-template-columns: 1fr; } }
.donate-error {
    color: #d97a7a;
    text-align: center;
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.donate-card {
    background: var(--bg-elevated);
    border: 1px solid #2a2622;
    border-radius: 12px;
    padding: 32px;
}
.donate-card--brand {
    border-color: #3a2e1a;
    background: #141008;
}
.donate-card--error { border-color: #7a3a3a; }
.donate-card-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.donate-card-badge--cause {
    background: #1a1e2e;
    color: #7ab4e0;
    border: 1px solid #2a3a5a;
}
.donate-card-badge--brand {
    background: #201a08;
    color: var(--gold);
    border: 1px solid #3a2e10;
}
.donate-card-title {
    color: var(--gold-bright);
    margin: 0 0 8px;
    font-size: 1.3rem;
}
.donate-card-sub {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0 0 22px;
}
.donate-preset-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}
@media (max-width: 600px) { .donate-preset-grid { grid-template-columns: repeat(3, 1fr); } }
.donate-preset-btn {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.donate-preset-btn:hover {
    background: var(--gold);
    color: #0a0a0a;
}
.donate-preset-btn--brand {
    color: var(--gold-bright);
    border-color: var(--gold-bright);
}
.donate-preset-btn--brand:hover {
    background: var(--gold-bright);
    color: #0a0a0a;
}
.donate-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
}
.donate-divider::before,
.donate-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #2a2622;
}
.donate-custom-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.donate-dollar {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
}
.donate-custom-input {
    flex: 1;
    background: #0f0e0c;
    color: var(--cream);
    border: 1px solid #2a2622;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 1.1rem;
    font-family: inherit;
}
.donate-custom-input:focus { outline: none; border-color: var(--gold); }
.donate-submit-btn {
    background: var(--gold);
    color: #0a0a0a;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
}
.donate-submit-btn:hover { background: var(--gold-bright); }
.donate-submit-btn--brand {
    background: var(--gold-bright);
}
.donate-submit-btn--brand:hover { background: #f0d8a0; }
.donate-secure-note {
    color: var(--muted);
    font-size: 0.82rem;
    margin-top: 12px;
    text-align: center;
}

/* External orgs */
.donate-external { margin-bottom: 56px; }
.donate-external-title {
    color: var(--gold-bright);
    margin-bottom: 8px;
    font-size: 1.3rem;
}
.donate-external-sub {
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.6;
}
.donate-org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}
.donate-org-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-elevated);
    border: 1px solid #2a2622;
    border-radius: 10px;
    padding: 22px 24px;
    text-decoration: none;
    color: var(--cream);
    transition: border-color 0.2s;
}
.donate-org-card:hover { border-color: var(--gold); }
.donate-org-name {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
}
.donate-org-desc {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 14px;
}
.donate-org-link {
    color: var(--gold-bright);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Donate success page */
.donate-success-page {
    max-width: 520px;
    margin: 60px auto;
    text-align: center;
}
.donate-success-icon { font-size: 3rem; margin-bottom: 16px; }
.donate-success-page h1 { color: var(--gold-bright); margin-bottom: 16px; }
.donate-success-lead {
    color: var(--cream);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 12px;
}
.donate-success-sub {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 36px;
}
.donate-success-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.donate-success-btn {
    background: var(--gold);
    color: #0a0a0a;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.95rem;
}
.donate-success-btn:hover { background: var(--gold-bright); }
.donate-success-btn--outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.donate-success-btn--outline:hover { background: var(--gold); color: #0a0a0a; }

/* ── Reviews page ── */
.reviews-page { max-width: 960px; margin: 0 auto; }

.reviews-hero {
    text-align: center;
    margin-bottom: 48px;
}
.reviews-hero h1 { color: var(--gold-bright); margin-bottom: 6px; }
.reviews-hero-sub { color: var(--muted); margin: 0 0 32px; }

.reviews-summary {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}
.reviews-avg-score {
    font-size: 5rem;
    font-weight: 800;
    color: var(--gold-bright);
    line-height: 1;
}
.reviews-avg-right { text-align: left; }
.reviews-count { color: var(--muted); font-size: 0.85rem; margin: 6px 0 16px; }

/* Star display */
.star { font-size: 1.2rem; }
.star--filled { color: var(--gold); }
.star--empty  { color: #3a3530; }
.star-display--lg .star { font-size: 1.6rem; }

/* Rating distribution */
.rating-dist { display: flex; flex-direction: column; gap: 5px; min-width: 200px; }
.rating-dist-row { display: flex; align-items: center; gap: 8px; }
.rating-dist-label { color: var(--gold); font-size: 0.8rem; width: 30px; flex-shrink: 0; }
.rating-dist-bar-wrap {
    flex: 1;
    height: 8px;
    background: #2a2622;
    border-radius: 4px;
    overflow: hidden;
}
.rating-dist-bar {
    height: 100%;
    background: var(--gold);
    border-radius: 4px;
    min-width: 0;
    transition: width 0.4s ease;
}
.rating-dist-count { color: var(--muted); font-size: 0.78rem; width: 18px; text-align: right; flex-shrink: 0; }

/* Submitted banner */
.reviews-submitted-banner {
    background: #1a2e1a;
    border: 1px solid #4a7a4a;
    border-radius: 8px;
    color: #7ac47a;
    padding: 14px 20px;
    margin-bottom: 32px;
    text-align: center;
    font-weight: 600;
}

/* Review grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 64px;
}
.reviews-empty { color: var(--muted); text-align: center; margin-bottom: 64px; }

.review-card {
    background: var(--bg-elevated);
    border: 1px solid #2a2622;
    border-radius: 10px;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.review-stars { display: flex; gap: 2px; }
.review-date { color: var(--muted); font-size: 0.78rem; }
.review-title {
    font-weight: 700;
    color: var(--gold-bright);
    font-size: 0.95rem;
}
.review-body {
    color: var(--cream);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}
.review-author { display: flex; gap: 6px; align-items: center; margin-top: 4px; }
.review-name   { font-weight: 600; font-size: 0.85rem; color: var(--gold); }
.review-location { color: var(--muted); font-size: 0.82rem; }

/* Review submission form */
.review-form-section {
    border-top: 1px solid #2a2622;
    padding-top: 48px;
    max-width: 680px;
    margin: 0 auto 32px;
}
.review-form-title { color: var(--gold-bright); margin-bottom: 6px; }
.review-form-sub   { color: var(--muted); margin-bottom: 28px; font-size: 0.9rem; }

.review-form { display: flex; flex-direction: column; gap: 20px; }
.review-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 560px) { .review-form-row { grid-template-columns: 1fr; } }
.review-form-field { display: flex; flex-direction: column; gap: 6px; }
.review-form-field label {
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}
.rf-required { color: #d97a7a; }
.rf-optional { color: var(--muted); font-weight: 400; text-transform: none; font-size: 0.8rem; letter-spacing: 0; }
.rf-input, .rf-textarea {
    background: #0f0e0c;
    color: var(--cream);
    border: 1px solid #2a2622;
    border-radius: 6px;
    padding: 11px 14px;
    font-size: 0.95rem;
    font-family: inherit;
}
.rf-input:focus, .rf-textarea:focus { outline: none; border-color: var(--gold); }
.rf-textarea { resize: vertical; }
.rf-submit {
    background: var(--gold);
    color: #0a0a0a;
    border: none;
    border-radius: 6px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    align-self: flex-start;
}
.rf-submit:hover { background: var(--gold-bright); }

/* Star picker (CSS-only radio stars, renders right-to-left via flex-direction:row-reverse) */
.star-picker {
    display: flex;
    flex-direction: row-reverse;
    gap: 4px;
    width: fit-content;
}
.star-picker input[type="radio"] { display: none; }
.star-picker label {
    font-size: 2rem;
    color: #3a3530;
    cursor: pointer;
    margin: 0;
    padding: 0;
    text-transform: none;
    letter-spacing: 0;
    transition: color 0.1s;
}
/* Fill all stars up to and including the selected one */
.star-picker input:checked ~ label,
.star-picker label:hover,
.star-picker label:hover ~ label {
    color: var(--gold);
}
