/* Type Toggle */
.type-toggle {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.type-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--gray);
    color: var(--white-muted);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.type-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.type-btn:hover {
    border-color: var(--gold);
    color: var(--white);
    background: rgba(194, 161, 104, 0.05);
}

.type-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(194, 161, 104, 0.1);
}

@media (max-width: 768px) {
    .type-toggle {
        flex-direction: column;
    }
    
    .type-btn {
        width: 100%;
        justify-content: center;
    }
}