/* Vendor Registration Popup Styles */

/* Backdrop */
.vendor-popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 300ms ease;
}

.vendor-popup-backdrop.active {
    opacity: 1;
}

/* Modal */
.vendor-popup-modal {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    transition: transform 300ms ease;
}

.vendor-popup-backdrop.active .vendor-popup-modal {
    transform: scale(1);
}

/* Close Button */
.vendor-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: color 200ms;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.vendor-popup-close:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.05);
}

/* Icon */
.vendor-popup-icon {
    text-align: center;
    margin-bottom: 20px;
}

.vendor-popup-icon i {
    font-size: 60px;
    color: #10b981;
}

/* Content */
.vendor-popup-content {
    text-align: center;
}

.vendor-popup-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.vendor-popup-title i {
    color: #10b981;
    font-size: 28px;
}

.vendor-popup-text {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    color: #4a5568;
    margin-bottom: 15px;
}

.vendor-popup-highlight {
    font-weight: 600;
    color: #10b981;
    margin-bottom: 30px;
}

/* Buttons */
.vendor-popup-buttons {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

@media (min-width: 480px) {
    .vendor-popup-buttons {
        flex-direction: row;
    }
}

.vendor-popup-btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 200ms;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.vendor-popup-btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.vendor-popup-btn-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.vendor-popup-btn-secondary {
    background: white;
    color: #10b981;
    border: 2px solid #10b981;
}

.vendor-popup-btn-secondary:hover {
    background: #f0fdf4;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .vendor-popup-modal {
        padding: 30px 20px;
    }
    
    .vendor-popup-title {
        font-size: 24px;
    }
    
    .vendor-popup-text {
        font-size: 14px;
    }
    
    .vendor-popup-icon i {
        font-size: 48px;
    }
    
    .vendor-popup-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}
