/* WhatsApp Button Styles */
.bwo-whatsapp-btn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: 100%;
    max-width: 300px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.bwo-whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: white;
}

.bwo-whatsapp-icon {
    margin-right: 10px;
    font-size: 18px;
}

/* Modal Styles */
.bwo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    backdrop-filter: blur(3px);
}

.bwo-modal-container {
    width: 90%;
    max-width: 500px;
    margin: 20px;
    animation: slideIn 0.3s ease-out;
}

.bwo-modal-content {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.bwo-modal-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bwo-modal-header h3 {
    margin: 0;
    font-size: 20px;
}

.bwo-modal-header h3 i {
    margin-right: 10px;
}

.bwo-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s;
}

.bwo-modal-close:hover {
    transform: scale(1.1);
}

.bwo-modal-body {
    padding: 30px;
}

.bwo-modal-body p {
    margin-bottom: 20px;
    color: #333;
    font-size: 14px;
}

.bwo-region-select-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.bwo-region-select {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.bwo-region-select:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.bwo-region-select.bwo-error {
    border-color: #dc3545;
}

.bwo-select-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.bwo-error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bwo-error-message i {
    font-size: 12px;
}

.bwo-note {
    margin-top: 15px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
    color: #666;
}

.bwo-note i {
    margin-right: 5px;
    color: #25D366;
}

.bwo-modal-footer {
    padding: 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    border-top: 1px solid #e0e0e0;
}

.bwo-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.bwo-btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

.bwo-btn-secondary:hover {
    background-color: #e0e0e0;
}

.bwo-btn-primary {
    background-color: #25D366;
    color: white;
}

.bwo-btn-primary:hover {
    background-color: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .bwo-whatsapp-btn {
        max-width: 100%;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .bwo-modal-body {
        padding: 20px;
    }
    
    .bwo-modal-header h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .bwo-modal-footer {
        flex-direction: column;
    }
    
    .bwo-btn {
        width: 100%;
    }
}