/**
 * Quarkcode NeuralCommerce - Upgrade Page Styles
 *
 * @package QuarkcodeNeuralCommerce
 * @since 1.0.5
 */

.qcnc-upgrade-page {
    max-width: 1200px;
    margin: 20px auto;
}

.qcnc-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
}

.qcnc-stats-box {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.qcnc-stats-number {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    display: block;
    line-height: 1.2;
    margin-bottom: 8px;
}

.qcnc-stats-box span:last-child {
    display: block;
    font-size: 14px;
    color: #666;
}

.qcnc-testimonial {
    background: white;
    border-left: 4px solid #667eea;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.qcnc-price-tag {
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
}

.qcnc-badge {
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-left: 10px;
}

/* Screenshot Gallery */
.qcnc-screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.qcnc-screenshot-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qcnc-screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.qcnc-screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

.qcnc-screenshot-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 15px 10px 10px;
    font-size: 14px;
    text-align: center;
}

/* Lightbox Modal */
.qcnc-lightbox {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
}

.qcnc-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qcnc-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.qcnc-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.qcnc-lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000000;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.qcnc-lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.qcnc-lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    text-align: center;
    background: rgba(0,0,0,0.7);
    padding: 10px 20px;
    border-radius: 20px;
    max-width: 80%;
}
