/* ---------------- Candy Shop Styles ---------------- */
.Product-module__wrapper {
    background: #f884fa30;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    padding: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.Product-module__wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.Product-module__img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.Product-module__wrapper:hover .Product-module__img {
    transform: scale(1.08) rotate(-3deg);
}

.Product-module__name {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #e91e63;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.Product-module__price {
    font-weight: bold;
    font-size: 1.1rem;
    color: #ff4081;
    margin-bottom: 12px;
}

/* ---------------- Confetti Styles ---------------- */
.candy {
    position: absolute;
    width: 16px;
    height: 16px;
    pointer-events: none;
    background-image: url('https://cdn-icons-png.flaticon.com/512/616/616408.png'); /* маленькая иконка конфеты */
    background-size: cover;
    z-index: 9999;
    opacity: 0.9;
    animation: candy-fly 1s forwards;
}

@keyframes candy-fly {
    0% { transform: translate(0,0) scale(1) rotate(0deg); opacity: 1; }
    100% { transform: translate(var(--x), var(--y)) scale(0.5) rotate(360deg); opacity: 0; }
}