/**
 * Nesashemp Reward Program - Shortcode Styles
 */

/* Points Balance Shortcode */
.nesashemp-points-balance-shortcode {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    margin: 20px 0;
}

.nesashemp-points-balance-shortcode .points-number {
    display: block;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1;
}

.nesashemp-points-balance-shortcode .points-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.nesashemp-points-balance-shortcode .points-value {
    display: block;
    font-size: 18px;
    margin-top: 10px;
    opacity: 0.95;
}

/* Current Streak Shortcode */
.nesashemp-streak-shortcode {
    background: white;
    border: 2px solid #667eea;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin: 20px 0;
}

.nesashemp-streak-shortcode .streak-number {
    font-size: 48px;
    font-weight: bold;
    color: #667eea;
    line-height: 1;
    margin-bottom: 8px;
}

.nesashemp-streak-shortcode .streak-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.nesashemp-streak-shortcode .streak-progress-bar {
    width: 100%;
    height: 20px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 15px 0;
}

.nesashemp-streak-shortcode .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.5s ease;
}

.nesashemp-streak-shortcode .streak-status {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.nesashemp-streak-shortcode .streak-status.qualified {
    color: #28a745;
    font-weight: bold;
    font-size: 16px;
}

.nesashemp-no-streak {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    color: #6c757d;
    margin: 20px 0;
}

/* Reward Info Shortcode */
.nesashemp-reward-info-shortcode {
    margin: 20px 0;
}

/* Box Style */
.nesashemp-reward-info-shortcode.style-box .reward-info-box {
    background: #f7f7f7;
    border-left: 4px solid #667eea;
    padding: 25px;
    border-radius: 8px;
}

.nesashemp-reward-info-shortcode.style-box h3 {
    margin-top: 0;
    color: #667eea;
    font-size: 22px;
    margin-bottom: 15px;
}

.nesashemp-reward-info-shortcode.style-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nesashemp-reward-info-shortcode.style-box li {
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid #e0e0e0;
}

.nesashemp-reward-info-shortcode.style-box li:last-child {
    border-bottom: none;
}

/* Inline Style */
.nesashemp-reward-info-shortcode.style-inline .reward-info-inline {
    background: #e8eaf6;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

/* Minimal Style */
.nesashemp-reward-info-shortcode.style-minimal .reward-info-minimal {
    background: #667eea;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
}

/* How It Works Shortcode */
.nesashemp-how-it-works-shortcode {
    margin: 30px 0;
}

.nesashemp-how-it-works-shortcode h2 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-size: 32px;
}

.nesashemp-how-it-works-shortcode .steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.nesashemp-how-it-works-shortcode .step {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nesashemp-how-it-works-shortcode .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.nesashemp-how-it-works-shortcode .step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.nesashemp-how-it-works-shortcode .step h3 {
    color: #333;
    font-size: 20px;
    margin: 15px 0;
}

.nesashemp-how-it-works-shortcode .step p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Login Required Message */
.nesashemp-login-required {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nesashemp-points-balance-shortcode .points-number,
    .nesashemp-streak-shortcode .streak-number {
        font-size: 36px;
    }
    
    .nesashemp-how-it-works-shortcode .steps-container {
        grid-template-columns: 1fr;
    }
    
    .nesashemp-how-it-works-shortcode h2 {
        font-size: 24px;
    }
}

/* Print Styles */
@media print {
    .nesashemp-points-balance-shortcode,
    .nesashemp-streak-shortcode,
    .nesashemp-reward-info-shortcode,
    .nesashemp-how-it-works-shortcode {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

