/* ==========================================================================
   Reusable UI Components
   ========================================================================== */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-family: var(--font-arabic);
    transition: var(--transition-normal);
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--sach-blue);
    color: var(--sach-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--sach-blue-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--sach-blue);
    border-color: var(--sach-blue);
}

.btn-secondary:hover {
    background-color: var(--sach-blue);
    color: var(--sach-white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--sach-gold), #e0c688);
    color: var(--sach-blue);
    box-shadow: var(--shadow-glow);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--sach-gold-hover), var(--sach-gold));
}

.btn-outline {
    background-color: transparent;
    color: var(--sach-dark);
    border-color: var(--sach-gray-light);
}

.btn-outline:hover {
    border-color: var(--sach-gold);
    color: var(--sach-gold);
}

.btn-full {
    width: 100%;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Trust Badges Section */
.trust-badges-section {
    padding: var(--space-md) 0;
    background-color: var(--sach-white);
    border-bottom: 1px solid var(--sach-gray-light);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

@media (min-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-sm);
}

.trust-badge-icon {
    font-size: 2rem;
    color: var(--sach-accent);
    margin-bottom: var(--space-sm);
}

.trust-badge-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--sach-blue);
}

.trust-badge-desc {
    font-size: 0.8rem;
    color: var(--sach-gray-dark);
    margin: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--sach-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--sach-gray-light);
    border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sach-gold);
}
