/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(37, 99, 235, 0.22);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(37, 99, 235, 0.3);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: rgba(37, 99, 235, 0.08);
}

.btn-cart {
    background: var(--primary-color);
    color: white;
}

.btn-cart:hover {
    background: var(--secondary-color);
}

.btn-quote {
    background: var(--light-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-quote:hover {
    background: var(--primary-color);
    color: white;
}

/* Add to Cart Button in Search Results */
.btn-add-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-add-cart:hover:not(:disabled) {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-add-cart:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-add-cart .cart-icon {
    font-size: 1.1rem;
}

.btn-add-cart .cart-text {
    white-space: nowrap;
}

.btn-danger {
    background: #ef4444;
    color: #ffffff;
}

.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
