.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    line-height: 1;
}

.hero-gradient {
    background: linear-gradient(135deg, #944528 0%, #b35c3d 100%);
}

details > summary::-webkit-details-marker {
    display: none;
}

details[open] summary .expand-icon {
    transform: rotate(180deg);
}

.faq-item-hidden {
    display: none;
}

/**
 * Login / register submit — solid brand fill so buttons never appear white
 * when Tailwind CDN does not emit arbitrary bg-[#…] utilities for PHP templates.
 */
.cc-auth-btn-primary {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 9999px;
    font-family: 'Noto Serif', 'Times New Roman', serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.25;
    cursor: pointer;
    text-align: center;
    color: #ffffff;
    background-color: #944528;
    border: 1px solid #793015;
    box-shadow: 0 4px 14px rgba(148, 69, 40, 0.35);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.cc-auth-btn-primary:hover {
    background-color: #793015;
    border-color: #5c2718;
    box-shadow: 0 6px 18px rgba(121, 48, 21, 0.4);
}

.cc-auth-btn-primary:active {
    transform: scale(0.98);
}

.cc-auth-btn-primary:focus-visible {
    outline: 2px solid #944528;
    outline-offset: 3px;
}

/**
 * Secondary auth action (e.g. Sign up on login) — full pill, visible fill (not plain text on white).
 */
a.cc-auth-btn-secondary {
    box-sizing: border-box;
}

.cc-auth-btn-secondary {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    font-family: 'Noto Serif', 'Times New Roman', serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    color: #944528;
    background-color: #e8ded1;
    border: 2px solid #944528;
    box-shadow: 0 2px 10px rgba(148, 69, 40, 0.12);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.cc-auth-btn-secondary:hover {
    background-color: #dbc1b9;
    color: #5c2718;
    border-color: #793015;
    box-shadow: 0 4px 14px rgba(148, 69, 40, 0.18);
}

.cc-auth-btn-secondary:active {
    transform: scale(0.98);
}

.cc-auth-btn-secondary:focus-visible {
    outline: 2px solid #944528;
    outline-offset: 3px;
}
