/* Loyalty Club Plugin Styles */

.lc-wrapper {
    max-width: 700px;
}

.lc-member-since {
    color: #666;
    font-size: 13px;
    margin-bottom: 20px;
}

.lc-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.lc-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 18px;
    color: #2c3e50;
}

.lc-points-display {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
}

.lc-points-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.lc-points-label {
    font-size: 16px;
    color: #666;
}

.lc-progress-bar {
    background: #eee;
    border-radius: 50px;
    height: 14px;
    overflow: hidden;
    margin-bottom: 10px;
}

.lc-progress-fill {
    background: linear-gradient(90deg, #3498db, #2c3e50);
    height: 100%;
    border-radius: 50px;
    transition: width 0.6s ease;
}

.lc-progress-text {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Coupon card */
.lc-coupon-card {
    border-color: #e74c3c;
    background: #fff9f9;
}

.lc-coupon-card h3 {
    color: #e74c3c;
}

.lc-coupon-code {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #e74c3c;
    background: #fff;
    border: 2px dashed #e74c3c;
    border-radius: 8px;
    padding: 16px 20px;
    text-align: center;
    margin: 12px 0;
}

.lc-copy-btn {
    display: inline-block;
    background: #2c3e50;
    color: #fff !important;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 16px;
    transition: background 0.2s;
}

.lc-copy-btn:hover {
    background: #34495e;
}

.lc-coupon-info,
.lc-rules-card ul {
    padding-left: 20px;
    margin: 0;
}

.lc-coupon-info li,
.lc-rules-card ul li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #444;
}

/* Rules card */
.lc-rules-card {
    background: #f8f9fa;
}
