/* Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ea580c; /* orange-600 */
    color: white;
    font-size: 10px;
    border-radius: 9999px;
    height: 16px;
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}