/* MON Shop Switcher */
#mon-shopswitcher-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mon-shopswitcher-popup {
    background: #fff;
    border-radius: 12px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    animation: mon-popup-in 0.3s ease-out;
}

@keyframes mon-popup-in {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.mon-shopswitcher-header {
    padding: 30px 30px 20px;
    text-align: center;
}

.mon-shopswitcher-logo {
    height: 50px;
    margin-bottom: 15px;
}

.mon-shopswitcher-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px;
}

.mon-shopswitcher-header p {
    font-size: 14px;
    color: #777;
    margin: 0;
    line-height: 1.4;
}

.mon-shopswitcher-shops {
    padding: 0 20px;
}

.mon-shopswitcher-card {
    display: flex;
    align-items: center;
    padding: 16px 18px;
    margin-bottom: 10px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none !important;
    color: #333 !important;
    background: #fff;
}

.mon-shopswitcher-card:hover {
    border-color: #FF5722;
    background: #fff8f6;
    transform: translateX(3px);
}

.mon-shopswitcher-card.mon-current {
    border-color: #FF5722;
    background: #fff3ef;
}

.mon-shopswitcher-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    color: #FF5722;
}

.mon-shopswitcher-card:hover .mon-shopswitcher-icon,
.mon-shopswitcher-card.mon-current .mon-shopswitcher-icon {
    background: #FF5722;
    color: #fff;
}

.mon-shopswitcher-info {
    flex: 1;
}

.mon-shopswitcher-info strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.mon-shopswitcher-info span {
    font-size: 13px;
    color: #888;
}

.mon-shopswitcher-badge {
    background: #FF5722;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    margin-left: 10px;
    white-space: nowrap;
}

.mon-shopswitcher-arrow {
    font-size: 24px;
    color: #ccc;
    margin-left: 10px;
    transition: color 0.2s;
}

.mon-shopswitcher-card:hover .mon-shopswitcher-arrow {
    color: #FF5722;
}

.mon-shopswitcher-footer {
    padding: 15px 30px 25px;
    text-align: center;
}

.mon-shopswitcher-remember {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mon-shopswitcher-remember input {
    accent-color: #FF5722;
}

/* Trigger button (floating) */
#mon-shopswitcher-trigger {
    position: fixed;
    bottom: 80px;
    left: 15px;
    z-index: 8000;
}

#mon-shopswitcher-trigger a {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 14px 6px 10px;
    font-size: 12px;
    color: #555 !important;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s;
    cursor: pointer;
}

#mon-shopswitcher-trigger a:hover {
    border-color: #FF5722;
    color: #FF5722 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#mon-shopswitcher-trigger svg {
    color: #FF5722;
}

/* Mobile responsive */
@media (max-width: 520px) {
    .mon-shopswitcher-popup {
        margin: 10px;
        border-radius: 10px;
    }
    .mon-shopswitcher-header {
        padding: 20px 20px 15px;
    }
    .mon-shopswitcher-header h2 {
        font-size: 18px;
    }
    .mon-shopswitcher-card {
        padding: 12px 14px;
    }
}
