/* ====================================
   7. BUTTONS
   ==================================== */
.btn {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #b45309 100%);
    color: white;
    border-color: rgba(var(--accent-rgb), 0.45);
    box-shadow: 0 18px 42px rgba(var(--accent-rgb), 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 24px 60px rgba(var(--accent-rgb), 0.34), 0 0 0 3px rgba(var(--accent-rgb), 0.18);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: white;
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: 0 14px 36px rgba(8, 24, 38, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.52);
    box-shadow: 0 18px 48px rgba(8, 24, 38, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.btn-solid {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary);
}

.btn-solid:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(var(--primary-rgb), 0.28);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}
