#oh-container {
    padding: 40px 20px;
    text-align: center;
}

/* 💗 HEART */
#oh-heart {
    font-size: 160px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 20px;
}

/* 💓 pulse */
.pulse {
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

/* 💥 click */
.beat {
    animation: beat 0.4s ease;
}

@keyframes beat {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1.1); }
}

/* 🧸 SIMPLE PRODUCT LIST (NOT GRID) */
#oh-products {
    display: none;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* each product simple row */
.oh-product {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* image small */
.oh-product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}