/* Smooth scroll and transitions */
html { scroll-behavior: smooth; }

body {
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F5F1E8; }
::-webkit-scrollbar-thumb { background: #A8B5A0; }

/* Micro-interactions */
.payment-option input[type="radio"]:checked + span { color: #A8B5A0; }

.font-display { font-family: 'Canela', serif; }
.font-body { font-family: 'Suisse Int\'l', sans-serif; }

/* Button hover effects */
button, a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}