/* --- Buttons --- */
.btn {
    font-family: var(--font-heading);
    padding: 12px 24px;
    font-size: 1.1rem;
    cursor: pointer;
    border: 1px solid var(--accent-gold);
    background: linear-gradient(180deg, rgba(30, 27, 24, 0.9) 0%, rgba(15, 13, 12, 0.9) 100%);
    color: var(--accent-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    box-shadow: inset 0 0 5px rgba(var(--accent-gold-rgb), 0.1), 0 4px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.btn:hover:not(:disabled) {
    background: linear-gradient(180deg, rgba(50, 45, 40, 0.9) 0%, rgba(20, 18, 16, 0.9) 100%);
    color: var(--accent-gold-hover);
    box-shadow: inset 0 0 10px rgba(var(--accent-gold-rgb), 0.3), 0 6px 12px rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
    border-color: var(--accent-gold-hover);
}

.btn:active:not(:disabled) {
    transform: translateY(1px);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.8);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(100%);
}

.btn.primary {
    background: linear-gradient(180deg, rgba(84, 61, 38, 0.8) 0%, rgba(45, 33, 20, 0.8) 100%);
    color: var(--accent-gold-active);
    border-color: var(--color-warning);
}

.btn.primary:hover:not(:disabled) {
    background: linear-gradient(180deg, rgba(105, 76, 48, 0.9) 0%, rgba(60, 44, 27, 0.9) 100%);
    color: #fff;
    border-color: var(--accent-gold-hover);
}

/* Search component styles moved to layout.css for better theme integration */

/* Mobile Component Overrides */
@media screen and (max-width: 600px) {
    .btn {
        padding: 8px 15px;
        font-size: 1rem;
        white-space: normal;
        line-height: 1.2;
    }
}