
.social-commerce-container {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
}

.hype-meter-widget {
    margin-bottom: 15px;
}

.hype-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.hype-icon {
    font-size: 16px;
}

.hype-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.hype-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #ff8e53);
    transition: width 0.3s ease;
}

.hype-stats {
    font-size: 12px;
    color: #666;
}

.social-proof-widget {
    padding: 8px 0;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.proof-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
