/* Custom Styles for Suki's Bubble Tea */

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

/* Base Typography Adjustments */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #FFF9F8;
}
::-webkit-scrollbar-thumb {
    background: #FCE8E6;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #7D2E45;
}

/* Animation Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Asymmetric Grid Fixes */
@media (min-width: 1024px) {
    .lg\:order-1 { order: 1; }
    .lg\:order-2 { order: 2; }
}

/* Image Object Fit Fallback */
img {
    max-width: 100%;
    height: auto;
}
