/* Frontend Styles for Nerey Membership */

.nm-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.nm-membership-display {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.nm-membership-display:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.nm-membership-display .nm-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    color: #1e293b;
}

.nm-membership-display .nm-amount {
    font-size: 32px;
    font-weight: 800;
    color: #2563eb;
}

.nm-membership-display .nm-period {
    color: #64748b;
    font-size: 16px;
}

.nm-membership-display .nm-description {
    margin: 20px 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

.nm-membership-display .nm-cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}

.nm-membership-display .nm-cta-button:hover {
    background: #1d4ed8;
}

.nm-coupon-box {
    padding: 15px;
    border: 2px dashed #2563eb;
    border-radius: 8px;
    display: inline-block;
    background: #eff6ff;
}

.nm-reminder-box {
    padding: 10px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    font-size: 12px;
}

/* Denied Access Message Styles */
.nm-denied-access {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    animation: nmSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nm-denied-access h3 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.nm-denied-access p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.nm-denied-access .button {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.nm-denied-access .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

@keyframes nmSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}