/* NFT QR Manager - Frontend Styles v2.2 */
.vc-nft-display {
    margin: 2rem 0;
    padding: 0;
}

.vc-nft-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    color: #2d3748;
}

.vc-nft-header {
    background: #f1f3f5;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.vc-nft-header h3 {
    margin: 0;
    color: #2d3748;
    font-size: 1.4em;
    font-weight: 600;
}

.vc-nft-badge {
    background: #4a8f5b;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vc-nft-content {
    padding: 25px;
}

.vc-nft-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
}

.vc-nft-qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vc-nft-qr-container {
    text-align: center;
    position: relative;
}

.vc-nft-qr-link {
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.vc-nft-qr-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    border: 3px solid #e0e0e0;
    transition: all 0.3s ease;
    object-fit: cover;
}

.vc-nft-qr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
    color: white;
}

.vc-nft-qr-overlay span {
    font-weight: 600;
    font-size: 0.9em;
}

.vc-nft-qr-link:hover .vc-nft-qr-overlay {
    opacity: 1;
}

.vc-nft-qr-link:hover .vc-nft-qr-image {
    transform: scale(1.05);
    border-color: #2271b1;
}

.vc-nft-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vc-nft-actions {
    text-align: left;
}

.vc-nft-button {
    display: inline-block;
    background: #4a8f5b;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #4a8f5b;
}

.vc-nft-button:hover {
    background: #3c7a4b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 143, 91, 0.3);
}

.vc-nft-text-content h4 {
    margin: 0 0 10px 0;
    color: #2d3748;
    font-size: 1.1em;
    font-weight: 600;
}

.vc-nft-text-content p {
    margin: 0 0 15px 0;
    font-size: 0.95em;
    line-height: 1.5;
    color: #4a5568;
}

.vc-nft-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vc-nft-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #4a5568;
}

.vc-benefit-icon {
    font-size: 1.2em;
    flex-shrink: 0;
}

.vc-benefit-text {
    font-size: 0.9em;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vc-nft-card {
        margin: 1rem 0;
    }
    
    .vc-nft-header {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .vc-nft-content {
        padding: 20px;
    }
    
    .vc-nft-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .vc-nft-actions {
        text-align: center;
    }
    
    .vc-nft-qr-image {
        width: 100px;
        height: 100px;
    }
    
    .vc-nft-benefits {
        align-items: center;
    }
}

/* Shortcode Styles */
.vc-nft-shortcode {
    text-align: center;
    margin: 1rem 0;
}

.vc-nft-qr-shortcode img {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.vc-nft-link-shortcode {
    margin-top: 10px;
}

.vc-nft-size-small .vc-nft-qr-shortcode img {
    max-width: 100px;
}

.vc-nft-size-large .vc-nft-qr-shortcode img {
    max-width: 200px;
}