body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f2e8e5; 
}
::-webkit-scrollbar-thumb {
    background: #a67c52; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6f4e37; 
}

/* Feather Icons adjustments if needed */
.feather {
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Checkout steps styling */
#step1.active,
#step2.active,
#step3.active {
    background-color: #d97706; /* amber-600 */
}

#step1.completed,
#step2.completed,
#step3.completed {
    background-color: #10b981; /* green-500 */
}