body {
    font-family: 'Poppins', 'Noto Sans SC', sans-serif;
}

/* Custom scrollbar for a more polished look - Webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.menu-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15), 0 6px 6px rgba(0,0,0,0.1);
}

.category-image-container {
    height: 200px; /* Fixed height for category images */
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .category-image {
    transform: scale(1.05);
}

.drink-item {
    border-bottom: 1px dashed #e5e7eb; /* Tailwind gray-200 */
}
.drink-item:last-child {
    border-bottom: none;
}

/* Gradient text for category titles - example */
.category-title-gradient {
    background-image: linear-gradient(to right, #ec4899, #8b5cf6); /* pink-500 to violet-500 */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Additional styling for a more "华丽" feel if needed */
.header-title {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.price-tag {
    background-color: #fff1f2; /* Tailwind pink-50 */
    color: #ec4899; /* Tailwind pink-500 */
    padding: 0.25rem 0.75rem;
    border-radius: 9999px; /* pill shape */
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(236, 72, 153, 0.2);
}
