.product-card {
    width: 80%;
    margin: auto;
    padding: 15px;
}
.product-image {
    max-width: 100px;
    margin: auto;
}
.price {
    color: blue;
    font-weight: bold;
    cursor: pointer;
}
.price:hover {
    color: red;
}
.buy-button {
    background-color: white;
    color: green;
    border: 1px solid green;
    transition: 0.3s;
}
.buy-button:hover {
    background-color: green;
    color: white;
    border: 1px solid white;
}
.arrow-container {
    text-align: center;
    margin-top: 2rem;
}

.arrow-animate {
    position: absolute;
    top: 20px;
    left: -60px;
    width: 100px;
    height: 20px;
    background-image: url("/img/arrow.svg");
    background-repeat: no-repeat;
    animation: arrow-move 1.5s infinite;
}

.animated-arrow {
    width: 100px;
    height: 20px;
    transform: scaleX(-1); /* ?? Balik arah panah ke kiri */
    animation: arrow-move 1.5s infinite;
}

@keyframes arrow-move {
    0% {
        transform: scaleX(-1) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: scaleX(-1) translateX(-20px); /* ?? Geser ke kiri */
        opacity: 1;
    }
    100% {
        transform: scaleX(-1) translateX(0);
        opacity: 0.3;
    }
}
