/* Membership Button Styles */
.ltm-btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px 0;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
}

.ltm-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ltm-btn-monthly {
    background: #007cba;
    color: #fff;
    border: 1px solid #007cba;
}

.ltm-btn-yearly {
    background: #28a745;
    color: #fff;
    border: 1px solid #28a745;
}

/* Pricing Grid */
.ltm-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 20px;
}

.ltm-pricing-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ltm-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ltm-pricing-card.ltm-featured {
    border: 2px solid #007cba;
    transform: scale(1.05);
}

.ltm-pricing-card.ltm-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.ltm-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #007cba;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.ltm-price {
    font-size: 48px;
    font-weight: bold;
    color: #1e293b;
    margin: 20px 0;
}

.ltm-price span {
    font-size: 16px;
    color: #64748b;
}

.ltm-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.ltm-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #475569;
}

.ltm-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Membership Status Card */
.ltm-membership-status {
    margin: 20px 0;
}

.ltm-status-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    max-width: 400px;
}

.ltm-status-active {
    border-left: 4px solid #28a745;
}

.ltm-status-expired {
    border-left: 4px solid #dc3545;
}

.ltm-status-active .ltm-status-active {
    color: #28a745;
    font-weight: bold;
}

.ltm-status-expired .ltm-status-expired {
    color: #dc3545;
    font-weight: bold;
}

.ltm-renewal-warning {
    background: #fff3e0;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    color: #ff9800;
}

/* Blocked Content */
.ltm-blocked {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    margin: 20px 0;
}

.ltm-blocked-content h3 {
    color: #1e293b;
    margin-bottom: 15px;
}

.ltm-blocked-content p {
    color: #64748b;
    margin-bottom: 20px;
}

.ltm-blocked-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #007cba;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.ltm-blocked-btn:hover {
    background: #005a87;
    text-decoration: none;
}

.ltm-blocked-info .ltm-blocked-btn {
    background: #007cba;
}

.ltm-blocked-warning .ltm-blocked-btn {
    background: #ff9800;
}

.ltm-blocked-danger .ltm-blocked-btn {
    background: #dc3545;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ltm-pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ltm-pricing-card.ltm-featured {
        transform: scale(1);
    }

    .ltm-pricing-card.ltm-featured:hover {
        transform: translateY(-5px);
    }

    .ltm-price {
        font-size: 36px;
    }
}
