/**
 * Mementor Text to Speech - License Page Styles
 * 
 * Modern styling for the license page to showcase PRO features
 */

/* PRO Features Container */
.mementor-tts-pro-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}

.mementor-tts-pro-heading {
    text-align: center;
    font-size: 24px;
    margin: 0 0 30px 0;
    color: #23282d;
    font-weight: 600;
}

/* Features Grid */
.mementor-tts-pro-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Feature Cards */
.mementor-tts-feature-card {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 140px;
    box-sizing: border-box;
}

.mementor-tts-feature-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: #ddd;
}

.mementor-tts-feature-card .dashicons {
    font-size: 30px;
    width: 30px;
    height: 30px;
    color: var(--mementor-tts-accent-color, #2271b1);
    margin-bottom: 10px;
}

.mementor-tts-feature-card h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #23282d;
}

.mementor-tts-feature-card p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Coming Soon Badge */
.mementor-tts-feature-card.coming-soon {
    position: relative;
    background: #f0f7ff;
    border: 1px dashed #90caf9;
}

.mementor-tts-feature-card.coming-soon .dashicons {
    color: #1e88e5;
}

.mementor-tts-feature-card.coming-soon p {
    color: #1976d2;
    font-weight: 500;
}

/* Pricing Section */
.mementor-tts-pricing-container {
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    color: white;
    margin-top: 20px;
}

.mementor-tts-price-tag {
    font-size: 20px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 5px;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: top;
    margin-right: 5px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    margin-left: 5px;
    opacity: 0.8;
}

.mementor-tts-price-details {
    margin-bottom: 25px;
    font-size: 14px;
    opacity: 0.9;
}

.mementor-tts-upgrade-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #fff;
    color: #2271b1;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.mementor-tts-upgrade-btn:hover, 
.mementor-tts-upgrade-btn:focus {
    background-color: #f8f8f8;
    color: #135e96;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media screen and (max-width: 782px) {
    .mementor-tts-pro-features-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .mementor-tts-feature-card {
        padding: 15px;
        height: 130px;
    }
    
    .mementor-tts-feature-card .dashicons {
        font-size: 24px;
        width: 24px;
        height: 24px;
    }
    
    .mementor-tts-pricing-container {
        padding: 20px;
    }
    
    .price-amount {
        font-size: 36px;
    }
}

/* Mobile View */
@media screen and (max-width: 600px) {
    .mementor-tts-pro-features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .mementor-tts-pro-container {
        padding: 20px 15px;
    }
    
    .mementor-tts-feature-card {
        height: auto;
        min-height: 120px;
    }
}
