@import "interactive.css";

.creator-panel {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.card-holder {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.product-card {
    border: 1px solid var(--border);
    padding: 1rem;
    width: 170px;
    border-radius: 8px;
    background: var(--surface-soft);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    animation: popIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.product-title {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.product-price {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.product-action-btn {
    font-size: 0.8rem;
    padding: 0.3rem 0.5rem;
    width: 100%;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(5px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
