.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 60s linear infinite;
}

.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* CARD */
.product-card {
    width: 250px;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    flex-shrink: 0;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    border-radius: 8px;
}

.category {
    font-size: 12px;
    color: #888;
}

/* BOTÕES */
.product-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-add {
    background: #004689;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
}

.btn-view {
    background: #eee;
    color: #333;
    padding: 8px 12px;
    border-radius: 6px;
}


.toast-msg {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #004689;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.toast-msg.show {
    opacity: 1;
    transform: translateY(0);
}