
body {
    font-family: "K2D", serif;
    /* overflow-x: hidden; */
}

 /* Floating cart button styles */
 .floating-cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: #FAB413;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.floating-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #1E1E1E;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .floating-cart-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}
